OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_KIOSK_WM_KIOSK_WM_CONTROLLER_H_ | 5 #ifndef SERVICES_KIOSK_WM_KIOSK_WM_CONTROLLER_H_ |
6 #define SERVICES_KIOSK_WM_KIOSK_WM_CONTROLLER_H_ | 6 #define SERVICES_KIOSK_WM_KIOSK_WM_CONTROLLER_H_ |
7 | 7 |
8 #include "base/memory/weak_ptr.h" | 8 #include "base/memory/weak_ptr.h" |
9 #include "mojo/public/cpp/application/application_impl.h" | 9 #include "mojo/public/cpp/application/application_impl.h" |
10 #include "mojo/public/cpp/application/connect.h" | 10 #include "mojo/public/cpp/application/connect.h" |
11 #include "mojo/public/cpp/application/service_provider_impl.h" | 11 #include "mojo/public/cpp/application/service_provider_impl.h" |
12 #include "mojo/services/input_events/public/interfaces/input_events.mojom.h" | 12 #include "mojo/services/input_events/interfaces/input_events.mojom.h" |
13 #include "mojo/services/navigation/public/interfaces/navigation.mojom.h" | 13 #include "mojo/services/navigation/public/interfaces/navigation.mojom.h" |
14 #include "mojo/services/view_manager/public/cpp/view_manager.h" | 14 #include "mojo/services/view_manager/public/cpp/view_manager.h" |
15 #include "mojo/services/view_manager/public/cpp/view_manager_delegate.h" | 15 #include "mojo/services/view_manager/public/cpp/view_manager_delegate.h" |
16 #include "mojo/services/view_manager/public/cpp/view_observer.h" | 16 #include "mojo/services/view_manager/public/cpp/view_observer.h" |
17 #include "services/kiosk_wm/navigator_host_impl.h" | 17 #include "services/kiosk_wm/navigator_host_impl.h" |
18 #include "services/window_manager/window_manager_app.h" | 18 #include "services/window_manager/window_manager_app.h" |
19 #include "services/window_manager/window_manager_delegate.h" | 19 #include "services/window_manager/window_manager_delegate.h" |
20 #include "ui/base/accelerators/accelerator.h" | 20 #include "ui/base/accelerators/accelerator.h" |
21 | 21 |
22 namespace kiosk_wm { | 22 namespace kiosk_wm { |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 NavigatorHostImpl navigator_host_; | 75 NavigatorHostImpl navigator_host_; |
76 | 76 |
77 base::WeakPtrFactory<KioskWMController> weak_factory_; | 77 base::WeakPtrFactory<KioskWMController> weak_factory_; |
78 | 78 |
79 DISALLOW_COPY_AND_ASSIGN(KioskWMController); | 79 DISALLOW_COPY_AND_ASSIGN(KioskWMController); |
80 }; | 80 }; |
81 | 81 |
82 } // namespace kiosk_wm | 82 } // namespace kiosk_wm |
83 | 83 |
84 #endif // SERVICES_KIOSK_WM_KIOSK_WM_H_ | 84 #endif // SERVICES_KIOSK_WM_KIOSK_WM_H_ |
OLD | NEW |