Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_PROFILES_PROFILE_HELPER_H_ | |
| 6 #define CHROME_BROWSER_CHROMEOS_PROFILES_PROFILE_HELPER_H_ | |
| 7 | |
| 8 #include "base/basictypes.h" | |
| 9 | |
| 10 class Profile; | |
| 11 | |
| 12 namespace chromeos { | |
| 13 | |
| 14 class ProfileHelper { | |
| 15 public: | |
| 16 // Returns OffTheRecord profile for usign during signing phase. | |
|
sail
2013/04/15 15:42:53
for usign -> for use
dzhioev (left Google)
2013/04/15 19:48:11
Done.
| |
| 17 static Profile* GetSigninProfile(); | |
| 18 | |
| 19 // Initialize a bunch of services that are tied to a browser profile. | |
| 20 // TODO(beng): It is very fishy that any of these services need to be tied to | |
|
sail
2013/04/15 15:42:53
remove comment
dzhioev (left Google)
2013/04/15 19:48:11
Done.
| |
| 21 // a browser profile. This dependency should be severed and this | |
| 22 // init moved earlier in startup. | |
| 23 static void ProfileStartup(Profile* profile, bool process_startup); | |
| 24 | |
| 25 private: | |
| 26 DISALLOW_IMPLICIT_CONSTRUCTORS(ProfileHelper); | |
| 27 }; | |
| 28 | |
| 29 } // namespace chromeos | |
| 30 | |
| 31 #endif // CHROME_BROWSER_CHROMEOS_PROFILES_PROFILE_HELPER_H_ | |
| 32 | |
| OLD | NEW |