Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(271)

Side by Side Diff: chrome/browser/chromeos/login/enrollment/enrollment_screen.h

Issue 109743002: Move policy code into components/policy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: moar fixes Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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_ENROLLMENT_ENROLLMENT_SCREEN_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_ENROLLMENT_ENROLLMENT_SCREEN_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_ENROLLMENT_ENROLLMENT_SCREEN_H_ 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_ENROLLMENT_ENROLLMENT_SCREEN_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/memory/weak_ptr.h" 12 #include "base/memory/weak_ptr.h"
13 #include "chrome/browser/chromeos/login/enrollment/enrollment_screen_actor.h" 13 #include "chrome/browser/chromeos/login/enrollment/enrollment_screen_actor.h"
14 #include "chrome/browser/chromeos/login/screens/wizard_screen.h" 14 #include "chrome/browser/chromeos/login/screens/wizard_screen.h"
15 #include "chrome/browser/policy/cloud/cloud_policy_constants.h" 15 #include "components/policy/core/common/cloud/cloud_policy_constants.h"
16 16
17 namespace chromeos { 17 namespace chromeos {
18 18
19 class ScreenObserver; 19 class ScreenObserver;
20 20
21 // The screen implementation that links the enterprise enrollment UI into the 21 // The screen implementation that links the enterprise enrollment UI into the
22 // OOBE wizard. 22 // OOBE wizard.
23 class EnrollmentScreen 23 class EnrollmentScreen
24 : public WizardScreen, 24 : public WizardScreen,
25 public EnrollmentScreenActor::Controller { 25 public EnrollmentScreenActor::Controller {
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 std::string user_; 77 std::string user_;
78 int lockbox_init_duration_; 78 int lockbox_init_duration_;
79 base::WeakPtrFactory<EnrollmentScreen> weak_ptr_factory_; 79 base::WeakPtrFactory<EnrollmentScreen> weak_ptr_factory_;
80 80
81 DISALLOW_COPY_AND_ASSIGN(EnrollmentScreen); 81 DISALLOW_COPY_AND_ASSIGN(EnrollmentScreen);
82 }; 82 };
83 83
84 } // namespace chromeos 84 } // namespace chromeos
85 85
86 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_ENROLLMENT_ENROLLMENT_SCREEN_H_ 86 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_ENROLLMENT_ENROLLMENT_SCREEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698