| 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 UI_VIEWS_MUS_NATIVE_WIDGET_MUS_H_ | 5 #ifndef UI_VIEWS_MUS_NATIVE_WIDGET_MUS_H_ |
| 6 #define UI_VIEWS_MUS_NATIVE_WIDGET_MUS_H_ | 6 #define UI_VIEWS_MUS_NATIVE_WIDGET_MUS_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 namespace aura { | 26 namespace aura { |
| 27 namespace client { | 27 namespace client { |
| 28 class DefaultCaptureClient; | 28 class DefaultCaptureClient; |
| 29 class ScreenPositionClient; | 29 class ScreenPositionClient; |
| 30 class WindowTreeClient; | 30 class WindowTreeClient; |
| 31 } | 31 } |
| 32 class Window; | 32 class Window; |
| 33 } | 33 } |
| 34 | 34 |
| 35 namespace bitmap_uploader { | 35 namespace ui { |
| 36 class BitmapUploader; | 36 class BitmapUploader; |
| 37 } | |
| 38 | |
| 39 namespace ui { | |
| 40 class Window; | 37 class Window; |
| 41 class WindowTreeClient; | 38 class WindowTreeClient; |
| 42 namespace mojom { | 39 namespace mojom { |
| 43 enum class Cursor; | 40 enum class Cursor; |
| 44 enum class EventResult; | 41 enum class EventResult; |
| 45 } | 42 } |
| 46 } | 43 } |
| 47 | 44 |
| 48 namespace shell { | 45 namespace shell { |
| 49 class Connector; | 46 class Connector; |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 std::unique_ptr<SurfaceContextFactory> context_factory_; | 274 std::unique_ptr<SurfaceContextFactory> context_factory_; |
| 278 std::unique_ptr<WindowTreeHostMus> window_tree_host_; | 275 std::unique_ptr<WindowTreeHostMus> window_tree_host_; |
| 279 aura::Window* content_; | 276 aura::Window* content_; |
| 280 std::unique_ptr<wm::FocusController> focus_client_; | 277 std::unique_ptr<wm::FocusController> focus_client_; |
| 281 std::unique_ptr<MusCaptureClient> capture_client_; | 278 std::unique_ptr<MusCaptureClient> capture_client_; |
| 282 std::unique_ptr<aura::client::WindowTreeClient> window_tree_client_; | 279 std::unique_ptr<aura::client::WindowTreeClient> window_tree_client_; |
| 283 std::unique_ptr<aura::client::ScreenPositionClient> screen_position_client_; | 280 std::unique_ptr<aura::client::ScreenPositionClient> screen_position_client_; |
| 284 std::unique_ptr<wm::CursorManager> cursor_manager_; | 281 std::unique_ptr<wm::CursorManager> cursor_manager_; |
| 285 | 282 |
| 286 // Bitmap management. | 283 // Bitmap management. |
| 287 std::unique_ptr<bitmap_uploader::BitmapUploader> bitmap_uploader_; | 284 std::unique_ptr<ui::BitmapUploader> bitmap_uploader_; |
| 288 std::unique_ptr<ui::ViewProp> prop_; | 285 std::unique_ptr<ui::ViewProp> prop_; |
| 289 | 286 |
| 290 base::WeakPtrFactory<NativeWidgetMus> close_widget_factory_; | 287 base::WeakPtrFactory<NativeWidgetMus> close_widget_factory_; |
| 291 | 288 |
| 292 DISALLOW_COPY_AND_ASSIGN(NativeWidgetMus); | 289 DISALLOW_COPY_AND_ASSIGN(NativeWidgetMus); |
| 293 }; | 290 }; |
| 294 | 291 |
| 295 } // namespace views | 292 } // namespace views |
| 296 | 293 |
| 297 #endif // UI_VIEWS_MUS_NATIVE_WIDGET_MUS_H_ | 294 #endif // UI_VIEWS_MUS_NATIVE_WIDGET_MUS_H_ |
| OLD | NEW |