diff options
Diffstat (limited to 'chrome/browser/ui/extensions/shell_window.h')
-rw-r--r-- | chrome/browser/ui/extensions/shell_window.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/chrome/browser/ui/extensions/shell_window.h b/chrome/browser/ui/extensions/shell_window.h index 932f673..1654d54 100644 --- a/chrome/browser/ui/extensions/shell_window.h +++ b/chrome/browser/ui/extensions/shell_window.h @@ -67,9 +67,10 @@ class ShellWindow : public content::NotificationObserver, public extensions::ExtensionKeybindingRegistry::Delegate { public: enum WindowType { - WINDOW_TYPE_DEFAULT, // Default shell window - WINDOW_TYPE_PANEL, // OS controlled panel window (Ash only) - WINDOW_TYPE_V1_PANEL, // For apps v1 support in Ash; deprecate with v1 apps + WINDOW_TYPE_DEFAULT = 1 << 0, // Default shell window. + WINDOW_TYPE_PANEL = 1 << 1, // OS controlled panel window (Ash only). + WINDOW_TYPE_V1_PANEL = 1 << 2, // For apps v1 support in Ash; deprecate + // with v1 apps. }; enum Frame { |