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

Side by Side Diff: chrome/browser/chromeos/profiles/profile_helper.h

Issue 13633003: Part of multiprofile implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: m Created 7 years, 8 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
OLDNEW
(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 use during signing phase.
17 static Profile* GetSigninProfile();
18
19 // Initialize a bunch of services that are tied to a browser profile.
20 // TODO(dzhioev): Investigate whether or not this method is needed.
21 static void ProfileStartup(Profile* profile, bool process_startup);
22
23 private:
24 DISALLOW_IMPLICIT_CONSTRUCTORS(ProfileHelper);
25 };
26
27 } // namespace chromeos
28
29 #endif // CHROME_BROWSER_CHROMEOS_PROFILES_PROFILE_HELPER_H_
30
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/profile_startup.cc ('k') | chrome/browser/chromeos/profiles/profile_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698