Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 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 | 4 |
| 5 #ifndef SERVICES_UI_PUBLIC_CPP_WINDOW_MANAGER_DELEGATE_H_ | 5 #ifndef SERVICES_UI_PUBLIC_CPP_WINDOW_MANAGER_DELEGATE_H_ |
| 6 #define SERVICES_UI_PUBLIC_CPP_WINDOW_MANAGER_DELEGATE_H_ | 6 #define SERVICES_UI_PUBLIC_CPP_WINDOW_MANAGER_DELEGATE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| 11 #include <memory> | 11 #include <memory> |
| 12 #include <string> | 12 #include <string> |
| 13 #include <vector> | 13 #include <vector> |
| 14 | 14 |
| 15 #include "base/callback_forward.h" | 15 #include "base/callback_forward.h" |
| 16 #include "services/ui/public/interfaces/cursor.mojom.h" | 16 #include "services/ui/public/interfaces/cursor.mojom.h" |
| 17 #include "services/ui/public/interfaces/event_matcher.mojom.h" | 17 #include "services/ui/public/interfaces/event_matcher.mojom.h" |
| 18 #include "services/ui/public/interfaces/window_manager.mojom.h" | |
| 18 #include "services/ui/public/interfaces/window_manager_constants.mojom.h" | 19 #include "services/ui/public/interfaces/window_manager_constants.mojom.h" |
| 19 #include "services/ui/public/interfaces/window_tree_constants.mojom.h" | 20 #include "services/ui/public/interfaces/window_tree_constants.mojom.h" |
| 20 #include "ui/events/mojo/event.mojom.h" | 21 #include "ui/events/mojo/event.mojom.h" |
| 21 | 22 |
| 22 namespace display { | 23 namespace display { |
| 23 class Display; | 24 class Display; |
| 24 } | 25 } |
| 25 | 26 |
| 26 namespace gfx { | 27 namespace gfx { |
| 27 class Insets; | 28 class Insets; |
| (...skipping 11 matching lines...) Expand all Loading... | |
| 39 | 40 |
| 40 // See the mojom with the same name for details on the functions in this | 41 // See the mojom with the same name for details on the functions in this |
| 41 // interface. | 42 // interface. |
| 42 class WindowManagerClient { | 43 class WindowManagerClient { |
| 43 public: | 44 public: |
| 44 virtual void SetFrameDecorationValues( | 45 virtual void SetFrameDecorationValues( |
| 45 mojom::FrameDecorationValuesPtr values) = 0; | 46 mojom::FrameDecorationValuesPtr values) = 0; |
| 46 virtual void SetNonClientCursor(Window* window, | 47 virtual void SetNonClientCursor(Window* window, |
| 47 mojom::Cursor non_client_cursor) = 0; | 48 mojom::Cursor non_client_cursor) = 0; |
| 48 | 49 |
| 49 virtual void AddAccelerator(uint32_t id, | 50 virtual void AddAccelerator( |
| 50 mojom::EventMatcherPtr event_matcher, | 51 mojo::Array<mojom::AcceleratorEventPtr> accelerator_event, |
|
mfomitchev
2016/11/22 22:44:16
nit: Use plural form to make it a bit more clear w
thanhph
2016/11/24 16:10:12
Done. I forgot to rename this to multi_accelerato
| |
| 51 const base::Callback<void(bool)>& callback) = 0; | 52 const base::Callback<void(bool)>& callback) = 0; |
| 52 virtual void RemoveAccelerator(uint32_t id) = 0; | 53 virtual void RemoveAccelerator(uint32_t id) = 0; |
| 53 virtual void AddActivationParent(Window* window) = 0; | 54 virtual void AddActivationParent(Window* window) = 0; |
| 54 virtual void RemoveActivationParent(Window* window) = 0; | 55 virtual void RemoveActivationParent(Window* window) = 0; |
| 55 virtual void ActivateNextWindow() = 0; | 56 virtual void ActivateNextWindow() = 0; |
| 56 virtual void SetUnderlaySurfaceOffsetAndExtendedHitArea( | 57 virtual void SetUnderlaySurfaceOffsetAndExtendedHitArea( |
| 57 Window* window, | 58 Window* window, |
| 58 const gfx::Vector2d& offset, | 59 const gfx::Vector2d& offset, |
| 59 const gfx::Insets& hit_area) = 0; | 60 const gfx::Insets& hit_area) = 0; |
| 60 | 61 |
| 61 protected: | 62 protected: |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 122 | 123 |
| 123 virtual void OnWmCancelMoveLoop(Window* window) = 0; | 124 virtual void OnWmCancelMoveLoop(Window* window) = 0; |
| 124 | 125 |
| 125 protected: | 126 protected: |
| 126 virtual ~WindowManagerDelegate() {} | 127 virtual ~WindowManagerDelegate() {} |
| 127 }; | 128 }; |
| 128 | 129 |
| 129 } // namespace ui | 130 } // namespace ui |
| 130 | 131 |
| 131 #endif // SERVICES_UI_PUBLIC_CPP_WINDOW_MANAGER_DELEGATE_H_ | 132 #endif // SERVICES_UI_PUBLIC_CPP_WINDOW_MANAGER_DELEGATE_H_ |
| OLD | NEW |