| 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> |
| 11 #include <memory> | 11 #include <memory> |
| 12 #include <string> | 12 #include <string> |
| 13 #include <vector> | 13 #include <vector> |
| 14 | 14 |
| 15 #include "base/callback.h" | 15 #include "base/callback.h" |
| 16 #include "base/macros.h" | 16 #include "base/macros.h" |
| 17 #include "base/memory/weak_ptr.h" | 17 #include "base/memory/weak_ptr.h" |
| 18 #include "services/ui/public/cpp/input_event_handler.h" | 18 #include "services/ui/public/cpp/input_event_handler.h" |
| 19 #include "services/ui/public/interfaces/window_tree.mojom.h" | 19 #include "services/ui/public/interfaces/window_tree.mojom.h" |
| 20 #include "ui/aura/client/drag_drop_delegate.h" |
| 20 #include "ui/aura/window_delegate.h" | 21 #include "ui/aura/window_delegate.h" |
| 21 #include "ui/aura/window_tree_host_observer.h" | 22 #include "ui/aura/window_tree_host_observer.h" |
| 22 #include "ui/platform_window/platform_window_delegate.h" | 23 #include "ui/platform_window/platform_window_delegate.h" |
| 23 #include "ui/views/mus/mus_export.h" | 24 #include "ui/views/mus/mus_export.h" |
| 24 #include "ui/views/mus/window_tree_host_mus.h" | 25 #include "ui/views/mus/window_tree_host_mus.h" |
| 25 #include "ui/views/widget/native_widget_private.h" | 26 #include "ui/views/widget/native_widget_private.h" |
| 26 #include "ui/wm/public/drag_drop_delegate.h" | |
| 27 | 27 |
| 28 namespace aura { | 28 namespace aura { |
| 29 namespace client { | 29 namespace client { |
| 30 class DefaultCaptureClient; | 30 class DefaultCaptureClient; |
| 31 class DragDropClient; | 31 class DragDropClient; |
| 32 class ScreenPositionClient; | 32 class ScreenPositionClient; |
| 33 class WindowParentingClient; | 33 class WindowParentingClient; |
| 34 } | 34 } |
| 35 class Window; | 35 class Window; |
| 36 } | 36 } |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 std::unique_ptr<InputMethodMus> input_method_; | 309 std::unique_ptr<InputMethodMus> input_method_; |
| 310 | 310 |
| 311 base::WeakPtrFactory<NativeWidgetMus> close_widget_factory_; | 311 base::WeakPtrFactory<NativeWidgetMus> close_widget_factory_; |
| 312 | 312 |
| 313 DISALLOW_COPY_AND_ASSIGN(NativeWidgetMus); | 313 DISALLOW_COPY_AND_ASSIGN(NativeWidgetMus); |
| 314 }; | 314 }; |
| 315 | 315 |
| 316 } // namespace views | 316 } // namespace views |
| 317 | 317 |
| 318 #endif // UI_VIEWS_MUS_NATIVE_WIDGET_MUS_H_ | 318 #endif // UI_VIEWS_MUS_NATIVE_WIDGET_MUS_H_ |
| OLD | NEW |