| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 EXTENSIONS_COMPONENTS_NATIVE_APP_WINDOW_NATIVE_APP_WINDOW_VIEWS_H_ | 5 #ifndef EXTENSIONS_COMPONENTS_NATIVE_APP_WINDOW_NATIVE_APP_WINDOW_VIEWS_H_ |
| 6 #define EXTENSIONS_COMPONENTS_NATIVE_APP_WINDOW_NATIVE_APP_WINDOW_VIEWS_H_ | 6 #define EXTENSIONS_COMPONENTS_NATIVE_APP_WINDOW_NATIVE_APP_WINDOW_VIEWS_H_ |
| 7 | 7 |
| 8 #include "base/observer_list.h" | 8 #include "base/observer_list.h" |
| 9 #include "content/public/browser/web_contents_observer.h" | 9 #include "content/public/browser/web_contents_observer.h" |
| 10 #include "extensions/browser/app_window/app_window.h" | 10 #include "extensions/browser/app_window/app_window.h" |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 | 133 |
| 134 // NativeAppWindow implementation. | 134 // NativeAppWindow implementation. |
| 135 void SetFullscreen(int fullscreen_types) override; | 135 void SetFullscreen(int fullscreen_types) override; |
| 136 bool IsFullscreenOrPending() const override; | 136 bool IsFullscreenOrPending() const override; |
| 137 void UpdateWindowIcon() override; | 137 void UpdateWindowIcon() override; |
| 138 void UpdateWindowTitle() override; | 138 void UpdateWindowTitle() override; |
| 139 void UpdateDraggableRegions( | 139 void UpdateDraggableRegions( |
| 140 const std::vector<extensions::DraggableRegion>& regions) override; | 140 const std::vector<extensions::DraggableRegion>& regions) override; |
| 141 SkRegion* GetDraggableRegion() override; | 141 SkRegion* GetDraggableRegion() override; |
| 142 void UpdateShape(scoped_ptr<SkRegion> region) override; | 142 void UpdateShape(scoped_ptr<SkRegion> region) override; |
| 143 void SetInterceptAllKeys(bool want_all_keys) override; | |
| 144 void HandleKeyboardEvent( | 143 void HandleKeyboardEvent( |
| 145 const content::NativeWebKeyboardEvent& event) override; | 144 const content::NativeWebKeyboardEvent& event) override; |
| 146 bool IsFrameless() const override; | 145 bool IsFrameless() const override; |
| 147 bool HasFrameColor() const override; | 146 bool HasFrameColor() const override; |
| 148 SkColor ActiveFrameColor() const override; | 147 SkColor ActiveFrameColor() const override; |
| 149 SkColor InactiveFrameColor() const override; | 148 SkColor InactiveFrameColor() const override; |
| 150 gfx::Insets GetFrameInsets() const override; | 149 gfx::Insets GetFrameInsets() const override; |
| 151 void HideWithApp() override; | 150 void HideWithApp() override; |
| 152 void ShowWithApp() override; | 151 void ShowWithApp() override; |
| 153 gfx::Size GetContentMinimumSize() const override; | 152 gfx::Size GetContentMinimumSize() const override; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 181 views::UnhandledKeyboardEventHandler unhandled_keyboard_event_handler_; | 180 views::UnhandledKeyboardEventHandler unhandled_keyboard_event_handler_; |
| 182 | 181 |
| 183 base::ObserverList<web_modal::ModalDialogHostObserver> observer_list_; | 182 base::ObserverList<web_modal::ModalDialogHostObserver> observer_list_; |
| 184 | 183 |
| 185 DISALLOW_COPY_AND_ASSIGN(NativeAppWindowViews); | 184 DISALLOW_COPY_AND_ASSIGN(NativeAppWindowViews); |
| 186 }; | 185 }; |
| 187 | 186 |
| 188 } // namespace native_app_window | 187 } // namespace native_app_window |
| 189 | 188 |
| 190 #endif // EXTENSIONS_COMPONENTS_NATIVE_APP_WINDOW_NATIVE_APP_WINDOW_VIEWS_H_ | 189 #endif // EXTENSIONS_COMPONENTS_NATIVE_APP_WINDOW_NATIVE_APP_WINDOW_VIEWS_H_ |
| OLD | NEW |