diff options
Diffstat (limited to 'components/devtools_traits/lib.rs')
-rw-r--r-- | components/devtools_traits/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/devtools_traits/lib.rs b/components/devtools_traits/lib.rs index fe0f91c7e52..1195ef8a987 100644 --- a/components/devtools_traits/lib.rs +++ b/components/devtools_traits/lib.rs @@ -243,9 +243,9 @@ pub struct ConsoleMessage { bitflags! { #[derive(Deserialize, Serialize)] - pub struct CachedConsoleMessageTypes: u8 { - const PAGE_ERROR = 1 << 0; - const CONSOLE_API = 1 << 1; + pub flags CachedConsoleMessageTypes: u8 { + const PAGE_ERROR = 1 << 0, + const CONSOLE_API = 1 << 1, } } |