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

Side by Side Diff: chrome/browser/chromeos/login/managed/locally_managed_user_creation_flow.h

Issue 290513003: Move UserContext to its own file (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased. Created 6 years, 7 months 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_MANAGED_LOCALLY_MANAGED_USER_CREATION_FLOW _H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_LOCALLY_MANAGED_USER_CREATION_FLOW _H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_LOCALLY_MANAGED_USER_CREATION_FLOW _H_ 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_LOCALLY_MANAGED_USER_CREATION_FLOW _H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
11 #include "chrome/browser/chromeos/login/user_flow.h" 11 #include "chrome/browser/chromeos/login/user_flow.h"
12 #include "chrome/browser/chromeos/login/users/user.h"
12 13
13 class Profile; 14 class Profile;
14 15
15 namespace chromeos { 16 namespace chromeos {
16 17
17 // UserFlow implementation for creating new locally managed user. 18 // UserFlow implementation for creating new locally managed user.
18 class LocallyManagedUserCreationFlow : public ExtendedUserFlow { 19 class LocallyManagedUserCreationFlow : public ExtendedUserFlow {
19 public: 20 public:
20 explicit LocallyManagedUserCreationFlow(const std::string& manager_id); 21 explicit LocallyManagedUserCreationFlow(const std::string& manager_id);
21 virtual ~LocallyManagedUserCreationFlow(); 22 virtual ~LocallyManagedUserCreationFlow();
(...skipping 26 matching lines...) Expand all
48 bool session_started_; 49 bool session_started_;
49 50
50 Profile* manager_profile_; 51 Profile* manager_profile_;
51 52
52 DISALLOW_COPY_AND_ASSIGN(LocallyManagedUserCreationFlow); 53 DISALLOW_COPY_AND_ASSIGN(LocallyManagedUserCreationFlow);
53 }; 54 };
54 55
55 } // namespace chromeos 56 } // namespace chromeos
56 57
57 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_LOCALLY_MANAGED_USER_CREATION_F LOW_H_ 58 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_LOCALLY_MANAGED_USER_CREATION_F LOW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698