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

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: unbreak rebase and added new static fn from trunk 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/chrome_notification_types.h" 16 #include "chrome/browser/chrome_notification_types.h"
17 #include "chrome/browser/managed_mode/managed_user_service.h" 17 #include "chrome/browser/managed_mode/managed_user_service.h"
18 #include "chrome/browser/profiles/gaia_info_update_service.h" 18 #include "chrome/browser/profiles/gaia_info_update_service.h"
19 #include "chrome/browser/profiles/profile.h" 19 #include "chrome/browser/profiles/profile.h"
20 #include "chrome/browser/profiles/profile_info_cache.h" 20 #include "chrome/browser/profiles/profile_info_cache.h"
21 #include "chrome/browser/profiles/profile_info_util.h" 21 #include "chrome/browser/profiles/profile_info_util.h"
22 #include "chrome/browser/profiles/profile_manager.h" 22 #include "chrome/browser/profiles/profile_manager.h"
23 #include "chrome/browser/profiles/profile_metrics.h" 23 #include "chrome/browser/profiles/profile_metrics.h"
24 #include "chrome/browser/profiles/profile_shortcut_manager.h" 24 #include "chrome/browser/profiles/profile_shortcut_manager.h"
25 #include "chrome/browser/profiles/profile_window.h"
26 #include "chrome/browser/profiles/profiles_state.h"
25 #include "chrome/browser/signin/signin_manager.h" 27 #include "chrome/browser/signin/signin_manager.h"
26 #include "chrome/browser/signin/signin_manager_factory.h" 28 #include "chrome/browser/signin/signin_manager_factory.h"
27 #include "chrome/browser/ui/browser_finder.h" 29 #include "chrome/browser/ui/browser_finder.h"
28 #include "chrome/common/chrome_switches.h" 30 #include "chrome/common/chrome_switches.h"
29 #include "chrome/common/pref_names.h" 31 #include "chrome/common/pref_names.h"
30 #include "content/public/browser/browser_thread.h" 32 #include "content/public/browser/browser_thread.h"
31 #include "content/public/browser/notification_service.h" 33 #include "content/public/browser/notification_service.h"
32 #include "content/public/browser/web_ui.h" 34 #include "content/public/browser/web_ui.h"
33 #include "grit/generated_resources.h" 35 #include "grit/generated_resources.h"
34 #include "ui/base/l10n/l10n_util.h" 36 #include "ui/base/l10n/l10n_util.h"
(...skipping 24 matching lines...) Expand all
59 if (!args->Get(0, &file_path_value)) 61 if (!args->Get(0, &file_path_value))
60 return false; 62 return false;
61 return base::GetValueAsFilePath(*file_path_value, profile_file_path); 63 return base::GetValueAsFilePath(*file_path_value, profile_file_path);
62 } 64 }
63 65
64 void OnNewDefaultProfileCreated( 66 void OnNewDefaultProfileCreated(
65 chrome::HostDesktopType desktop_type, 67 chrome::HostDesktopType desktop_type,
66 Profile* profile, 68 Profile* profile,
67 Profile::CreateStatus status) { 69 Profile::CreateStatus status) {
68 if (status == Profile::CREATE_STATUS_INITIALIZED) { 70 if (status == Profile::CREATE_STATUS_INITIALIZED) {
69 ProfileManager::FindOrCreateNewWindowForProfile( 71 profiles::FindOrCreateNewWindowForProfile(
70 profile, 72 profile,
71 chrome::startup::IS_PROCESS_STARTUP, 73 chrome::startup::IS_PROCESS_STARTUP,
72 chrome::startup::IS_FIRST_RUN, 74 chrome::startup::IS_FIRST_RUN,
73 desktop_type, 75 desktop_type,
74 false); 76 false);
75 } 77 }
76 } 78 }
77 79
78 } // namespace 80 } // namespace
79 81
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 // this preference. 323 // this preference.
322 pref_service->SetInteger(prefs::kProfileAvatarIndex, new_icon_index); 324 pref_service->SetInteger(prefs::kProfileAvatarIndex, new_icon_index);
323 cache.SetIsUsingGAIAPictureOfProfileAtIndex(profile_index, false); 325 cache.SetIsUsingGAIAPictureOfProfileAtIndex(profile_index, false);
324 } 326 }
325 ProfileMetrics::LogProfileUpdate(profile_file_path); 327 ProfileMetrics::LogProfileUpdate(profile_file_path);
326 } 328 }
327 329
328 #if defined(ENABLE_SETTINGS_APP) 330 #if defined(ENABLE_SETTINGS_APP)
329 void ManageProfileHandler::SwitchAppListProfile(const ListValue* args) { 331 void ManageProfileHandler::SwitchAppListProfile(const ListValue* args) {
330 DCHECK(args); 332 DCHECK(args);
331 DCHECK(ProfileManager::IsMultipleProfilesEnabled()); 333 DCHECK(profiles::IsMultipleProfilesEnabled());
332 334
333 const Value* file_path_value; 335 const Value* file_path_value;
334 base::FilePath profile_file_path; 336 base::FilePath profile_file_path;
335 if (!args->Get(0, &file_path_value) || 337 if (!args->Get(0, &file_path_value) ||
336 !base::GetValueAsFilePath(*file_path_value, &profile_file_path)) 338 !base::GetValueAsFilePath(*file_path_value, &profile_file_path))
337 return; 339 return;
338 340
339 AppListService::Get()->SetAppListProfile(profile_file_path); 341 AppListService::Get()->SetAppListProfile(profile_file_path);
340 // Close the settings app, since it will now be for the wrong profile. 342 // Close the settings app, since it will now be for the wrong profile.
341 web_ui()->GetWebContents()->Close(); 343 web_ui()->GetWebContents()->Close();
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
454 g_browser_process->profile_manager()->profile_shortcut_manager(); 456 g_browser_process->profile_manager()->profile_shortcut_manager();
455 DCHECK(shortcut_manager); 457 DCHECK(shortcut_manager);
456 458
457 shortcut_manager->RemoveProfileShortcuts(profile_file_path); 459 shortcut_manager->RemoveProfileShortcuts(profile_file_path);
458 460
459 // Update the UI buttons. 461 // Update the UI buttons.
460 OnHasProfileShortcuts(false); 462 OnHasProfileShortcuts(false);
461 } 463 }
462 464
463 } // namespace options 465 } // namespace options
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698