| 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_WS_DISPLAY_H_ | 5 #ifndef SERVICES_UI_WS_DISPLAY_H_ |
| 6 #define SERVICES_UI_WS_DISPLAY_H_ | 6 #define SERVICES_UI_WS_DISPLAY_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 void InitWindowManagerDisplayRootsIfNecessary(); | 161 void InitWindowManagerDisplayRootsIfNecessary(); |
| 162 | 162 |
| 163 // Creates the set of WindowManagerDisplayRoots from the | 163 // Creates the set of WindowManagerDisplayRoots from the |
| 164 // WindowManagerWindowTreeFactorySet. | 164 // WindowManagerWindowTreeFactorySet. |
| 165 void CreateWindowManagerDisplayRootsFromFactories(); | 165 void CreateWindowManagerDisplayRootsFromFactories(); |
| 166 | 166 |
| 167 void CreateWindowManagerDisplayRootFromFactory( | 167 void CreateWindowManagerDisplayRootFromFactory( |
| 168 WindowManagerWindowTreeFactory* factory); | 168 WindowManagerWindowTreeFactory* factory); |
| 169 | 169 |
| 170 // PlatformDisplayDelegate: | 170 // PlatformDisplayDelegate: |
| 171 display::Display GetDisplay() override; |
| 171 ServerWindow* GetRootWindow() override; | 172 ServerWindow* GetRootWindow() override; |
| 172 bool IsInHighContrastMode() override; | 173 bool IsInHighContrastMode() override; |
| 173 void OnEvent(const ui::Event& event) override; | 174 void OnEvent(const ui::Event& event) override; |
| 174 void OnNativeCaptureLost() override; | 175 void OnNativeCaptureLost() override; |
| 175 void OnDisplayClosed() override; | 176 void OnDisplayClosed() override; |
| 176 void OnViewportMetricsChanged(const ViewportMetrics& old_metrics, | 177 void OnViewportMetricsChanged(const ViewportMetrics& old_metrics, |
| 177 const ViewportMetrics& new_metrics) override; | 178 const ViewportMetrics& new_metrics) override; |
| 178 void OnCompositorFrameDrawn() override; | 179 void OnCompositorFrameDrawn() override; |
| 179 | 180 |
| 180 // FocusControllerDelegate: | 181 // FocusControllerDelegate: |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 | 217 |
| 217 WindowManagerDisplayRootMap window_manager_display_root_map_; | 218 WindowManagerDisplayRootMap window_manager_display_root_map_; |
| 218 | 219 |
| 219 DISALLOW_COPY_AND_ASSIGN(Display); | 220 DISALLOW_COPY_AND_ASSIGN(Display); |
| 220 }; | 221 }; |
| 221 | 222 |
| 222 } // namespace ws | 223 } // namespace ws |
| 223 } // namespace ui | 224 } // namespace ui |
| 224 | 225 |
| 225 #endif // SERVICES_UI_WS_DISPLAY_H_ | 226 #endif // SERVICES_UI_WS_DISPLAY_H_ |
| OLD | NEW |