| 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_WIZARD_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "base/containers/hash_tables.h" | 12 #include "base/containers/hash_tables.h" |
| 13 #include "base/gtest_prod_util.h" | 13 #include "base/gtest_prod_util.h" |
| 14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 15 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
| 16 #include "base/observer_list.h" | 16 #include "base/observer_list.h" |
| 17 #include "base/time/time.h" | 17 #include "base/time/time.h" |
| 18 #include "base/timer/timer.h" | 18 #include "base/timer/timer.h" |
| 19 #include "chrome/browser/chromeos/accessibility/accessibility_manager.h" | 19 #include "chrome/browser/chromeos/accessibility/accessibility_manager.h" |
| 20 #include "chrome/browser/chromeos/login/screens/screen_observer.h" | 20 #include "chrome/browser/chromeos/login/screens/screen_observer.h" |
| 21 #include "chrome/browser/chromeos/login/screens/wizard_screen.h" | |
| 22 #include "chrome/browser/chromeos/policy/auto_enrollment_client.h" | |
| 23 #include "ui/gfx/rect.h" | |
| 24 #include "url/gurl.h" | |
| 25 | 21 |
| 26 class PrefRegistrySimple; | 22 class PrefRegistrySimple; |
| 27 class PrefService; | 23 class PrefService; |
| 28 | 24 |
| 29 namespace base { | 25 namespace base { |
| 30 class DictionaryValue; | 26 class DictionaryValue; |
| 31 } | 27 } |
| 32 | 28 |
| 33 namespace chromeos { | 29 namespace chromeos { |
| 34 | 30 |
| (...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 419 base::Closure on_timezone_resolved_for_testing_; | 415 base::Closure on_timezone_resolved_for_testing_; |
| 420 | 416 |
| 421 base::WeakPtrFactory<WizardController> weak_factory_; | 417 base::WeakPtrFactory<WizardController> weak_factory_; |
| 422 | 418 |
| 423 DISALLOW_COPY_AND_ASSIGN(WizardController); | 419 DISALLOW_COPY_AND_ASSIGN(WizardController); |
| 424 }; | 420 }; |
| 425 | 421 |
| 426 } // namespace chromeos | 422 } // namespace chromeos |
| 427 | 423 |
| 428 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ | 424 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ |
| OLD | NEW |