| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 14 #include "base/observer_list.h" | 14 #include "base/observer_list.h" |
| 15 #include "chrome/browser/chromeos/login/oobe_display.h" | 15 #include "chrome/browser/chromeos/login/ui/oobe_display.h" |
| 16 #include "chrome/browser/ui/webui/chromeos/login/core_oobe_handler.h" | 16 #include "chrome/browser/ui/webui/chromeos/login/core_oobe_handler.h" |
| 17 #include "content/public/browser/web_ui_controller.h" | 17 #include "content/public/browser/web_ui_controller.h" |
| 18 | 18 |
| 19 namespace base { | 19 namespace base { |
| 20 class DictionaryValue; | 20 class DictionaryValue; |
| 21 } // namespace base | 21 } // namespace base |
| 22 | 22 |
| 23 namespace chromeos { | 23 namespace chromeos { |
| 24 class AppLaunchSplashScreenActor; | 24 class AppLaunchSplashScreenActor; |
| 25 class BaseScreenHandler; | 25 class BaseScreenHandler; |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 | 217 |
| 218 // List of registered observers. | 218 // List of registered observers. |
| 219 ObserverList<Observer> observer_list_; | 219 ObserverList<Observer> observer_list_; |
| 220 | 220 |
| 221 DISALLOW_COPY_AND_ASSIGN(OobeUI); | 221 DISALLOW_COPY_AND_ASSIGN(OobeUI); |
| 222 }; | 222 }; |
| 223 | 223 |
| 224 } // namespace chromeos | 224 } // namespace chromeos |
| 225 | 225 |
| 226 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_ | 226 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_ |
| OLD | NEW |