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

Side by Side Diff: chrome/browser/ui/webui/options/manage_profile_handler.cc

Issue 18615010: Refactor utility methods out of the ProfileManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix CrOS compile error Created 7 years, 5 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 (c) 2013 The Chromium Authors. All rights reserved. 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 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/ui/webui/options/manage_profile_handler.h" 5 #include "chrome/browser/ui/webui/options/manage_profile_handler.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/bind_helpers.h" 8 #include "base/bind_helpers.h"
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/prefs/pref_service.h" 10 #include "base/prefs/pref_service.h"
11 #include "base/strings/string_number_conversions.h" 11 #include "base/strings/string_number_conversions.h"
12 #include "base/strings/utf_string_conversions.h" 12 #include "base/strings/utf_string_conversions.h"
13 #include "base/value_conversions.h" 13 #include "base/value_conversions.h"
14 #include "base/values.h" 14 #include "base/values.h"
15 #include "chrome/browser/browser_process.h" 15 #include "chrome/browser/browser_process.h"
16 #include "chrome/browser/profiles/gaia_info_update_service.h" 16 #include "chrome/browser/profiles/gaia_info_update_service.h"
17 #include "chrome/browser/profiles/profile.h" 17 #include "chrome/browser/profiles/profile.h"
18 #include "chrome/browser/profiles/profile_info_cache.h" 18 #include "chrome/browser/profiles/profile_info_cache.h"
19 #include "chrome/browser/profiles/profile_info_util.h" 19 #include "chrome/browser/profiles/profile_info_util.h"
20 #include "chrome/browser/profiles/profile_manager.h" 20 #include "chrome/browser/profiles/profile_manager.h"
21 #include "chrome/browser/profiles/profile_manager_util.h"
21 #include "chrome/browser/profiles/profile_metrics.h" 22 #include "chrome/browser/profiles/profile_metrics.h"
22 #include "chrome/browser/profiles/profile_shortcut_manager.h" 23 #include "chrome/browser/profiles/profile_shortcut_manager.h"
23 #include "chrome/browser/signin/signin_manager.h" 24 #include "chrome/browser/signin/signin_manager.h"
24 #include "chrome/browser/signin/signin_manager_factory.h" 25 #include "chrome/browser/signin/signin_manager_factory.h"
25 #include "chrome/browser/ui/browser_finder.h" 26 #include "chrome/browser/ui/browser_finder.h"
26 #include "chrome/common/chrome_notification_types.h" 27 #include "chrome/common/chrome_notification_types.h"
27 #include "chrome/common/chrome_switches.h" 28 #include "chrome/common/chrome_switches.h"
28 #include "chrome/common/pref_names.h" 29 #include "chrome/common/pref_names.h"
29 #include "content/public/browser/browser_thread.h" 30 #include "content/public/browser/browser_thread.h"
30 #include "content/public/browser/notification_service.h" 31 #include "content/public/browser/notification_service.h"
(...skipping 27 matching lines...) Expand all
58 if (!args->Get(0, &file_path_value)) 59 if (!args->Get(0, &file_path_value))
59 return false; 60 return false;
60 return base::GetValueAsFilePath(*file_path_value, profile_file_path); 61 return base::GetValueAsFilePath(*file_path_value, profile_file_path);
61 } 62 }
62 63
63 void OnNewDefaultProfileCreated( 64 void OnNewDefaultProfileCreated(
64 chrome::HostDesktopType desktop_type, 65 chrome::HostDesktopType desktop_type,
65 Profile* profile, 66 Profile* profile,
66 Profile::CreateStatus status) { 67 Profile::CreateStatus status) {
67 if (status == Profile::CREATE_STATUS_INITIALIZED) { 68 if (status == Profile::CREATE_STATUS_INITIALIZED) {
68 ProfileManager::FindOrCreateNewWindowForProfile( 69 profiles::FindOrCreateNewWindowForProfile(
69 profile, 70 profile,
70 chrome::startup::IS_PROCESS_STARTUP, 71 chrome::startup::IS_PROCESS_STARTUP,
71 chrome::startup::IS_FIRST_RUN, 72 chrome::startup::IS_FIRST_RUN,
72 desktop_type, 73 desktop_type,
73 false); 74 false);
74 } 75 }
75 } 76 }
76 77
77 } // namespace 78 } // namespace
78 79
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 // this preference. 321 // this preference.
321 pref_service->SetInteger(prefs::kProfileAvatarIndex, new_icon_index); 322 pref_service->SetInteger(prefs::kProfileAvatarIndex, new_icon_index);
322 cache.SetIsUsingGAIAPictureOfProfileAtIndex(profile_index, false); 323 cache.SetIsUsingGAIAPictureOfProfileAtIndex(profile_index, false);
323 } 324 }
324 ProfileMetrics::LogProfileUpdate(profile_file_path); 325 ProfileMetrics::LogProfileUpdate(profile_file_path);
325 } 326 }
326 327
327 #if defined(ENABLE_SETTINGS_APP) 328 #if defined(ENABLE_SETTINGS_APP)
328 void ManageProfileHandler::SwitchAppListProfile(const ListValue* args) { 329 void ManageProfileHandler::SwitchAppListProfile(const ListValue* args) {
329 DCHECK(args); 330 DCHECK(args);
330 DCHECK(ProfileManager::IsMultipleProfilesEnabled()); 331 DCHECK(profiles::IsMultipleProfilesEnabled());
331 332
332 const Value* file_path_value; 333 const Value* file_path_value;
333 base::FilePath profile_file_path; 334 base::FilePath profile_file_path;
334 if (!args->Get(0, &file_path_value) || 335 if (!args->Get(0, &file_path_value) ||
335 !base::GetValueAsFilePath(*file_path_value, &profile_file_path)) 336 !base::GetValueAsFilePath(*file_path_value, &profile_file_path))
336 return; 337 return;
337 338
338 AppListService::Get()->SetAppListProfile(profile_file_path); 339 AppListService::Get()->SetAppListProfile(profile_file_path);
339 // Close the settings app, since it will now be for the wrong profile. 340 // Close the settings app, since it will now be for the wrong profile.
340 web_ui()->GetWebContents()->Close(); 341 web_ui()->GetWebContents()->Close();
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 g_browser_process->profile_manager()->profile_shortcut_manager(); 454 g_browser_process->profile_manager()->profile_shortcut_manager();
454 DCHECK(shortcut_manager); 455 DCHECK(shortcut_manager);
455 456
456 shortcut_manager->RemoveProfileShortcuts(profile_file_path); 457 shortcut_manager->RemoveProfileShortcuts(profile_file_path);
457 458
458 // Update the UI buttons. 459 // Update the UI buttons.
459 OnHasProfileShortcuts(false); 460 OnHasProfileShortcuts(false);
460 } 461 }
461 462
462 } // namespace options 463 } // namespace options
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698