OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
11 #include "base/callback_list.h" | 11 #include "base/callback_list.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "base/values.h" | 13 #include "base/values.h" |
14 #include "chrome/browser/chromeos/customization_document.h" | 14 #include "chrome/browser/chromeos/customization_document.h" |
15 #include "chrome/browser/chromeos/login/login_display.h" | 15 #include "chrome/browser/chromeos/login/ui/login_display.h" |
16 #include "ui/gfx/native_widget_types.h" | 16 #include "ui/gfx/native_widget_types.h" |
17 | 17 |
18 namespace views { | 18 namespace views { |
19 class Widget; | 19 class Widget; |
20 } // namespace views | 20 } // namespace views |
21 | 21 |
22 namespace chromeos { | 22 namespace chromeos { |
23 | 23 |
24 class AppLaunchController; | 24 class AppLaunchController; |
25 class AutoEnrollmentController; | 25 class AutoEnrollmentController; |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 // Starts app launch splash screen. | 100 // Starts app launch splash screen. |
101 virtual void StartAppLaunch(const std::string& app_id, | 101 virtual void StartAppLaunch(const std::string& app_id, |
102 bool diagnostic_mode) = 0; | 102 bool diagnostic_mode) = 0; |
103 | 103 |
104 // Starts the demo app launch. | 104 // Starts the demo app launch. |
105 virtual void StartDemoAppLaunch() = 0; | 105 virtual void StartDemoAppLaunch() = 0; |
106 }; | 106 }; |
107 | 107 |
108 } // namespace chromeos | 108 } // namespace chromeos |
109 | 109 |
110 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_H_ | 110 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_H_ |
OLD | NEW |