diff options
author | Josh Matthews <josh@joshmatthews.net> | 2014-03-14 14:46:30 -0400 |
---|---|---|
committer | Lars Bergstrom <lars@lars.com> | 2014-03-18 09:31:22 -0500 |
commit | 64c0de9fe7dc5555821ca5cb4c13aa2418e91b94 (patch) | |
tree | f8bee1d1d3b38572a3e2519542d5548e251e802d /src/components/script/dom/bindings/callback.rs | |
parent | f279abbf9f894641f592fee7f70fa0e29d955dad (diff) | |
download | servo-64c0de9fe7dc5555821ca5cb4c13aa2418e91b94.tar.gz servo-64c0de9fe7dc5555821ca5cb4c13aa2418e91b94.zip |
Warning police.
Diffstat (limited to 'src/components/script/dom/bindings/callback.rs')
-rw-r--r-- | src/components/script/dom/bindings/callback.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/script/dom/bindings/callback.rs b/src/components/script/dom/bindings/callback.rs index 12b0b6e03c6..dff5aeb6a2b 100644 --- a/src/components/script/dom/bindings/callback.rs +++ b/src/components/script/dom/bindings/callback.rs @@ -16,13 +16,13 @@ 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)] |