| OLD | NEW |
| 1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2015 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 #ifndef CHROME_BROWSER_UI_VIEWS_EXCLUSIVE_ACCESS_BUBBLE_VIEWS_CONTEXT_H_ | 4 #ifndef CHROME_BROWSER_UI_VIEWS_EXCLUSIVE_ACCESS_BUBBLE_VIEWS_CONTEXT_H_ |
| 5 #define CHROME_BROWSER_UI_VIEWS_EXCLUSIVE_ACCESS_BUBBLE_VIEWS_CONTEXT_H_ | 5 #define CHROME_BROWSER_UI_VIEWS_EXCLUSIVE_ACCESS_BUBBLE_VIEWS_CONTEXT_H_ |
| 6 | 6 |
| 7 #include "ui/gfx/geometry/rect.h" | 7 #include "ui/gfx/geometry/rect.h" |
| 8 #include "ui/gfx/native_widget_types.h" |
| 8 | 9 |
| 9 class ExclusiveAccessManager; | 10 class ExclusiveAccessManager; |
| 10 | 11 |
| 12 namespace ui { |
| 13 class AcceleratorProvider; |
| 14 } |
| 15 |
| 11 namespace views { | 16 namespace views { |
| 12 class Widget; | 17 class Widget; |
| 13 } | 18 } |
| 14 | 19 |
| 15 // Context in which the exclusive access bubble view is initiated. | 20 // Context in which the exclusive access bubble view is initiated. |
| 16 class ExclusiveAccessBubbleViewsContext { | 21 class ExclusiveAccessBubbleViewsContext { |
| 17 public: | 22 public: |
| 18 virtual ~ExclusiveAccessBubbleViewsContext() {} | |
| 19 | |
| 20 // Returns ExclusiveAccessManager controlling exclusive access for the given | 23 // Returns ExclusiveAccessManager controlling exclusive access for the given |
| 21 // webview. | 24 // webview. |
| 22 virtual ExclusiveAccessManager* GetExclusiveAccessManager() = 0; | 25 virtual ExclusiveAccessManager* GetExclusiveAccessManager() = 0; |
| 23 | 26 |
| 24 // Returns the Widget that hosts the view containing the exclusive access | 27 // Returns the Widget that hosts the view containing the exclusive access |
| 25 // bubble. | 28 // bubble. Not used for the simplified fullscreen UI. |
| 26 virtual views::Widget* GetBubbleAssociatedWidget() = 0; | 29 virtual views::Widget* GetBubbleAssociatedWidget() = 0; |
| 27 | 30 |
| 31 // Returns the AcceleratorProvider, providing the shortcut key to exit the |
| 32 // exclusive access. |
| 33 virtual ui::AcceleratorProvider* GetAcceleratorProvider() = 0; |
| 34 |
| 35 // Returns the view used to parent the bubble Widget. |
| 36 virtual gfx::NativeView GetBubbleParentView() const = 0; |
| 37 |
| 38 // Return the current mouse cursor location, offset from the top-left of the |
| 39 // parent window. |
| 40 virtual gfx::Point GetCursorPointInParent() const = 0; |
| 41 |
| 42 // Return the current bounds (not restored bounds) of the parent window. |
| 43 virtual gfx::Rect GetClientAreaBoundsInScreen() const = 0; |
| 44 |
| 28 // Returns true if immersive mode is enabled. | 45 // Returns true if immersive mode is enabled. |
| 29 virtual bool IsImmersiveModeEnabled() = 0; | 46 virtual bool IsImmersiveModeEnabled() = 0; |
| 30 | 47 |
| 31 // Returns the bounds of the top level View in screen coordinate system. | 48 // Returns the bounds of the top level View in screen coordinate system. |
| 32 virtual gfx::Rect GetTopContainerBoundsInScreen() = 0; | 49 virtual gfx::Rect GetTopContainerBoundsInScreen() = 0; |
| 33 }; | 50 }; |
| 34 | 51 |
| 35 #endif // CHROME_BROWSER_UI_VIEWS_EXCLUSIVE_ACCESS_BUBBLE_VIEWS_CONTEXT_H_ | 52 #endif // CHROME_BROWSER_UI_VIEWS_EXCLUSIVE_ACCESS_BUBBLE_VIEWS_CONTEXT_H_ |
| OLD | NEW |