| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_UI_VIEWS_EXTENSIONS_SHELL_WINDOW_VIEWS_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_EXTENSIONS_SHELL_WINDOW_VIEWS_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_EXTENSIONS_SHELL_WINDOW_VIEWS_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_EXTENSIONS_SHELL_WINDOW_VIEWS_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/ui/base_window.h" | 8 #include "chrome/browser/ui/base_window.h" |
| 9 #include "chrome/browser/ui/extensions/native_shell_window.h" | 9 #include "chrome/browser/ui/extensions/native_shell_window.h" |
| 10 #include "chrome/browser/ui/extensions/shell_window.h" | 10 #include "chrome/browser/ui/extensions/shell_window.h" |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 // NativeShellWindow implementation. | 107 // NativeShellWindow implementation. |
| 108 virtual void SetFullscreen(bool fullscreen) OVERRIDE; | 108 virtual void SetFullscreen(bool fullscreen) OVERRIDE; |
| 109 virtual bool IsFullscreenOrPending() const OVERRIDE; | 109 virtual bool IsFullscreenOrPending() const OVERRIDE; |
| 110 virtual void UpdateWindowIcon() OVERRIDE; | 110 virtual void UpdateWindowIcon() OVERRIDE; |
| 111 virtual void UpdateWindowTitle() OVERRIDE; | 111 virtual void UpdateWindowTitle() OVERRIDE; |
| 112 virtual void UpdateDraggableRegions( | 112 virtual void UpdateDraggableRegions( |
| 113 const std::vector<extensions::DraggableRegion>& regions) OVERRIDE; | 113 const std::vector<extensions::DraggableRegion>& regions) OVERRIDE; |
| 114 virtual void HandleKeyboardEvent( | 114 virtual void HandleKeyboardEvent( |
| 115 const content::NativeWebKeyboardEvent& event) OVERRIDE; | 115 const content::NativeWebKeyboardEvent& event) OVERRIDE; |
| 116 virtual void RenderViewHostChanged() OVERRIDE; | 116 virtual void RenderViewHostChanged() OVERRIDE; |
| 117 virtual gfx::Insets GetFrameInsets() const OVERRIDE; |
| 117 | 118 |
| 118 void OnViewWasResized(); | 119 void OnViewWasResized(); |
| 119 | 120 |
| 120 ShellWindow* shell_window_; // weak - ShellWindow owns NativeShellWindow. | 121 ShellWindow* shell_window_; // weak - ShellWindow owns NativeShellWindow. |
| 121 | 122 |
| 122 views::WebView* web_view_; | 123 views::WebView* web_view_; |
| 123 views::Widget* window_; | 124 views::Widget* window_; |
| 124 bool is_fullscreen_; | 125 bool is_fullscreen_; |
| 125 | 126 |
| 126 scoped_ptr<SkRegion> draggable_region_; | 127 scoped_ptr<SkRegion> draggable_region_; |
| 127 | 128 |
| 128 bool frameless_; | 129 bool frameless_; |
| 129 gfx::Size minimum_size_; | 130 gfx::Size minimum_size_; |
| 130 gfx::Size maximum_size_; | 131 gfx::Size maximum_size_; |
| 131 | 132 |
| 132 // The class that registers for keyboard shortcuts for extension commands. | 133 // The class that registers for keyboard shortcuts for extension commands. |
| 133 scoped_ptr<ExtensionKeybindingRegistryViews> extension_keybinding_registry_; | 134 scoped_ptr<ExtensionKeybindingRegistryViews> extension_keybinding_registry_; |
| 134 | 135 |
| 135 UnhandledKeyboardEventHandler unhandled_keyboard_event_handler_; | 136 UnhandledKeyboardEventHandler unhandled_keyboard_event_handler_; |
| 136 | 137 |
| 137 DISALLOW_COPY_AND_ASSIGN(ShellWindowViews); | 138 DISALLOW_COPY_AND_ASSIGN(ShellWindowViews); |
| 138 }; | 139 }; |
| 139 | 140 |
| 140 #endif // CHROME_BROWSER_UI_VIEWS_EXTENSIONS_SHELL_WINDOW_VIEWS_H_ | 141 #endif // CHROME_BROWSER_UI_VIEWS_EXTENSIONS_SHELL_WINDOW_VIEWS_H_ |
| OLD | NEW |