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

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

Issue 1548133002: Switch to standard integer types in chrome/browser/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
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 <stddef.h>
8
7 #include "base/files/file_path.h" 9 #include "base/files/file_path.h"
8 #include "base/prefs/pref_registry_simple.h" 10 #include "base/prefs/pref_registry_simple.h"
9 #include "base/prefs/pref_service.h" 11 #include "base/prefs/pref_service.h"
10 #include "base/strings/utf_string_conversions.h" 12 #include "base/strings/utf_string_conversions.h"
13 #include "build/build_config.h"
11 #include "chrome/browser/browser_process.h" 14 #include "chrome/browser/browser_process.h"
12 #include "chrome/browser/browsing_data/browsing_data_helper.h" 15 #include "chrome/browser/browsing_data/browsing_data_helper.h"
13 #include "chrome/browser/browsing_data/browsing_data_remover.h" 16 #include "chrome/browser/browsing_data/browsing_data_remover.h"
14 #include "chrome/browser/profiles/gaia_info_update_service.h" 17 #include "chrome/browser/profiles/gaia_info_update_service.h"
15 #include "chrome/browser/profiles/gaia_info_update_service_factory.h" 18 #include "chrome/browser/profiles/gaia_info_update_service_factory.h"
16 #include "chrome/browser/profiles/profile.h" 19 #include "chrome/browser/profiles/profile.h"
17 #include "chrome/browser/profiles/profile_info_cache.h" 20 #include "chrome/browser/profiles/profile_info_cache.h"
18 #include "chrome/browser/profiles/profile_manager.h" 21 #include "chrome/browser/profiles/profile_manager.h"
19 #include "chrome/browser/signin/profile_oauth2_token_service_factory.h" 22 #include "chrome/browser/signin/profile_oauth2_token_service_factory.h"
20 #include "chrome/browser/signin/signin_error_controller_factory.h" 23 #include "chrome/browser/signin/signin_error_controller_factory.h"
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 // shouldn't have a browser. 245 // shouldn't have a browser.
243 if (profile_dir == base::FilePath(chrome::kSystemProfileDir).AsUTF8Unsafe()) 246 if (profile_dir == base::FilePath(chrome::kSystemProfileDir).AsUTF8Unsafe())
244 return; 247 return;
245 248
246 PrefService* local_state = g_browser_process->local_state(); 249 PrefService* local_state = g_browser_process->local_state();
247 DCHECK(local_state); 250 DCHECK(local_state);
248 local_state->SetString(prefs::kProfileLastUsed, profile_dir); 251 local_state->SetString(prefs::kProfileLastUsed, profile_dir);
249 } 252 }
250 253
251 } // namespace profiles 254 } // namespace profiles
OLDNEW
« no previous file with comments | « chrome/browser/profiles/profile_window_browsertest.cc ('k') | chrome/browser/push_messaging/push_messaging_app_identifier.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698