aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/bindings/callback.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/script/dom/bindings/callback.rs')
-rw-r--r--src/components/script/dom/bindings/callback.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/script/dom/bindings/callback.rs b/src/components/script/dom/bindings/callback.rs
index b965fcbfb72..dff5aeb6a2b 100644
--- a/src/components/script/dom/bindings/callback.rs
+++ b/src/components/script/dom/bindings/callback.rs
@@ -12,17 +12,17 @@ use std::cast;
use std::libc;
use std::ptr;
-use extra::serialize::{Encodable, Encoder};
+use serialize::{Encodable, Encoder};
pub enum ExceptionHandling {
// Report any exception and don't throw it to the caller code.
- eReportExceptions,
+ ReportExceptions,
// Throw an exception to the caller code if the thrown exception is a
// binding object for a DOMError from the caller's scope, otherwise report
// it.
- eRethrowContentExceptions,
+ RethrowContentExceptions,
// Throw any exception to the caller code.
- eRethrowExceptions
+ RethrowExceptions
}
#[deriving(Clone,Eq)]