| 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 | 13 |
| 14 #include "base/callback.h" | 14 #include "base/callback.h" |
| 15 #include "base/macros.h" | 15 #include "base/macros.h" |
| 16 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
| 17 #include "components/mus/public/cpp/input_event_handler.h" | 17 #include "services/ui/public/cpp/input_event_handler.h" |
| 18 #include "components/mus/public/interfaces/window_tree.mojom.h" | 18 #include "services/ui/public/interfaces/window_tree.mojom.h" |
| 19 #include "ui/aura/window_delegate.h" | 19 #include "ui/aura/window_delegate.h" |
| 20 #include "ui/aura/window_tree_host_observer.h" | 20 #include "ui/aura/window_tree_host_observer.h" |
| 21 #include "ui/platform_window/platform_window_delegate.h" | 21 #include "ui/platform_window/platform_window_delegate.h" |
| 22 #include "ui/views/mus/mus_export.h" | 22 #include "ui/views/mus/mus_export.h" |
| 23 #include "ui/views/mus/window_tree_host_mus.h" | 23 #include "ui/views/mus/window_tree_host_mus.h" |
| 24 #include "ui/views/widget/native_widget_private.h" | 24 #include "ui/views/widget/native_widget_private.h" |
| 25 | 25 |
| 26 namespace aura { | 26 namespace aura { |
| 27 namespace client { | 27 namespace client { |
| 28 class DefaultCaptureClient; | 28 class DefaultCaptureClient; |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 std::unique_ptr<ui::ViewProp> prop_; | 279 std::unique_ptr<ui::ViewProp> prop_; |
| 280 | 280 |
| 281 base::WeakPtrFactory<NativeWidgetMus> close_widget_factory_; | 281 base::WeakPtrFactory<NativeWidgetMus> close_widget_factory_; |
| 282 | 282 |
| 283 DISALLOW_COPY_AND_ASSIGN(NativeWidgetMus); | 283 DISALLOW_COPY_AND_ASSIGN(NativeWidgetMus); |
| 284 }; | 284 }; |
| 285 | 285 |
| 286 } // namespace views | 286 } // namespace views |
| 287 | 287 |
| 288 #endif // UI_VIEWS_MUS_NATIVE_WIDGET_MUS_H_ | 288 #endif // UI_VIEWS_MUS_NATIVE_WIDGET_MUS_H_ |
| OLD | NEW |