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

Side by Side Diff: chrome/browser/profiles/profiles_state.cc

Issue 444903002: [cros] user_manager component - move UserManagerBase and UserManager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 4 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #include "chrome/browser/profiles/profiles_state.h" 5 #include "chrome/browser/profiles/profiles_state.h"
6 6
7 #include "base/files/file_path.h" 7 #include "base/files/file_path.h"
8 #include "base/prefs/pref_registry_simple.h" 8 #include "base/prefs/pref_registry_simple.h"
9 #include "base/prefs/pref_service.h" 9 #include "base/prefs/pref_service.h"
10 #include "base/strings/utf_string_conversions.h" 10 #include "base/strings/utf_string_conversions.h"
11 #include "chrome/browser/browser_process.h" 11 #include "chrome/browser/browser_process.h"
12 #include "chrome/browser/profiles/gaia_info_update_service.h" 12 #include "chrome/browser/profiles/gaia_info_update_service.h"
13 #include "chrome/browser/profiles/gaia_info_update_service_factory.h" 13 #include "chrome/browser/profiles/gaia_info_update_service_factory.h"
14 #include "chrome/browser/profiles/profile.h" 14 #include "chrome/browser/profiles/profile.h"
15 #include "chrome/browser/profiles/profile_info_cache.h" 15 #include "chrome/browser/profiles/profile_info_cache.h"
16 #include "chrome/browser/profiles/profile_manager.h" 16 #include "chrome/browser/profiles/profile_manager.h"
17 #include "chrome/browser/signin/profile_oauth2_token_service_factory.h" 17 #include "chrome/browser/signin/profile_oauth2_token_service_factory.h"
18 #include "chrome/browser/ui/browser.h" 18 #include "chrome/browser/ui/browser.h"
19 #include "chrome/common/chrome_constants.h" 19 #include "chrome/common/chrome_constants.h"
20 #include "chrome/common/pref_names.h" 20 #include "chrome/common/pref_names.h"
21 #include "components/signin/core/browser/profile_oauth2_token_service.h" 21 #include "components/signin/core/browser/profile_oauth2_token_service.h"
22 #include "components/signin/core/common/profile_management_switches.h" 22 #include "components/signin/core/common/profile_management_switches.h"
23 #include "grit/generated_resources.h" 23 #include "grit/generated_resources.h"
24 #include "ui/base/l10n/l10n_util.h" 24 #include "ui/base/l10n/l10n_util.h"
25 #include "ui/gfx/text_elider.h" 25 #include "ui/gfx/text_elider.h"
26 26
27 #if defined(OS_CHROMEOS)
28 #include "chrome/browser/chromeos/login/users/user_manager.h"
29 #endif
30
31 namespace profiles { 27 namespace profiles {
32 28
33 bool IsMultipleProfilesEnabled() { 29 bool IsMultipleProfilesEnabled() {
34 #if defined(OS_ANDROID) 30 #if defined(OS_ANDROID)
35 return false; 31 return false;
36 #endif 32 #endif
37 return true; 33 return true;
38 } 34 }
39 35
40 base::FilePath GetDefaultProfileDir(const base::FilePath& user_data_dir) { 36 base::FilePath GetDefaultProfileDir(const base::FilePath& user_data_dir) {
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 GAIAInfoUpdateServiceFactory::GetInstance()->GetForProfile(profile)->Update(); 132 GAIAInfoUpdateServiceFactory::GetInstance()->GetForProfile(profile)->Update();
137 } 133 }
138 134
139 SigninErrorController* GetSigninErrorController(Profile* profile) { 135 SigninErrorController* GetSigninErrorController(Profile* profile) {
140 ProfileOAuth2TokenService* token_service = 136 ProfileOAuth2TokenService* token_service =
141 ProfileOAuth2TokenServiceFactory::GetForProfile(profile); 137 ProfileOAuth2TokenServiceFactory::GetForProfile(profile);
142 return token_service ? token_service->signin_error_controller() : NULL; 138 return token_service ? token_service->signin_error_controller() : NULL;
143 } 139 }
144 140
145 } // namespace profiles 141 } // namespace profiles
OLDNEW
« no previous file with comments | « chrome/browser/profiles/profile_manager_unittest.cc ('k') | chrome/browser/signin/chrome_signin_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698