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

Side by Side Diff: chrome/browser/chromeos/login/login_utils.h

Issue 196413016: Move CommandLine to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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_LOGIN_UTILS_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_UTILS_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_UTILS_H_ 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_UTILS_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
11 11
12 class CommandLine;
13 class GURL; 12 class GURL;
14 class PrefRegistrySimple; 13 class PrefRegistrySimple;
15 class PrefService; 14 class PrefService;
16 class Profile; 15 class Profile;
17 16
17 namespace base {
18 class CommandLine;
19 }
20
18 namespace chromeos { 21 namespace chromeos {
19 22
20 class Authenticator; 23 class Authenticator;
21 class LoginDisplayHost; 24 class LoginDisplayHost;
22 class LoginStatusConsumer; 25 class LoginStatusConsumer;
23 struct UserContext; 26 struct UserContext;
24 27
25 class LoginUtils { 28 class LoginUtils {
26 public: 29 public:
27 class Delegate { 30 class Delegate {
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 // Restores authentication session after crash. 104 // Restores authentication session after crash.
102 virtual void RestoreAuthenticationSession(Profile* profile) = 0; 105 virtual void RestoreAuthenticationSession(Profile* profile) = 0;
103 106
104 // Initialize RLZ. 107 // Initialize RLZ.
105 virtual void InitRlzDelayed(Profile* user_profile) = 0; 108 virtual void InitRlzDelayed(Profile* user_profile) = 0;
106 }; 109 };
107 110
108 } // namespace chromeos 111 } // namespace chromeos
109 112
110 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_UTILS_H_ 113 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_UTILS_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/login_manager_test.h ('k') | chrome/browser/chromeos/login/oobe_base_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698