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

Unified Diff: chrome/browser/ui/webui/settings/settings_manage_profile_handler.h

Issue 1536593004: Settings People Revamp: Implement Chrome Profile name/icon selection. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/webui/settings/settings_manage_profile_handler.h
diff --git a/chrome/browser/ui/webui/options/manage_profile_handler.h b/chrome/browser/ui/webui/settings/settings_manage_profile_handler.h
similarity index 48%
copy from chrome/browser/ui/webui/options/manage_profile_handler.h
copy to chrome/browser/ui/webui/settings/settings_manage_profile_handler.h
index 49d99a8bc9f0233f8146d4463d6766b53b198f95..11f250eb67f890ad9344e824c0312a2df8de6b56 100644
--- a/chrome/browser/ui/webui/options/manage_profile_handler.h
+++ b/chrome/browser/ui/webui/settings/settings_manage_profile_handler.h
@@ -1,83 +1,47 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_MANAGE_PROFILE_HANDLER_H_
-#define CHROME_BROWSER_UI_WEBUI_OPTIONS_MANAGE_PROFILE_HANDLER_H_
+#ifndef CHROME_BROWSER_UI_WEBUI_SETTINGS_SETTINGS_MANAGE_PROFILE_HANDLER_H_
+#define CHROME_BROWSER_UI_WEBUI_SETTINGS_SETTINGS_MANAGE_PROFILE_HANDLER_H_
#include <string>
-#include "base/macros.h"
#include "base/memory/weak_ptr.h"
-#include "base/prefs/pref_change_registrar.h"
#include "chrome/browser/profiles/profile_info_cache_observer.h"
-#include "chrome/browser/ui/webui/options/options_ui.h"
-#include "components/sync_driver/sync_service_observer.h"
+#include "chrome/browser/ui/webui/settings/md_settings_ui.h"
namespace base {
class StringValue;
}
-namespace options {
+class Profile;
+
+namespace settings {
// Chrome personal stuff profiles manage overlay UI handler.
-class ManageProfileHandler : public OptionsPageUIHandler,
- public ProfileInfoCacheObserver,
- public sync_driver::SyncServiceObserver {
+class ManageProfileHandler : public settings::SettingsPageUIHandler,
+ public ProfileInfoCacheObserver {
public:
- ManageProfileHandler();
+ explicit ManageProfileHandler(Profile* profile);
~ManageProfileHandler() override;
- // OptionsPageUIHandler:
- void GetLocalizedValues(base::DictionaryValue* localized_strings) override;
- void InitializeHandler() override;
- void InitializePage() override;
- void Uninitialize() override;
-
- // WebUIMessageHandler:
+ // settings::SettingsPageUIHandler:
void RegisterMessages() override;
// ProfileInfoCacheObserver:
- void OnProfileAdded(const base::FilePath& profile_path) override;
- void OnProfileWasRemoved(const base::FilePath& profile_path,
- const base::string16& profile_name) override;
void OnProfileNameChanged(const base::FilePath& profile_path,
const base::string16& old_profile_name) override;
void OnProfileAvatarChanged(const base::FilePath& profile_path) override;
- // sync_driver::SyncServiceObserver:
- void OnStateChanged() override;
-
private:
- // This function creates signed in user specific strings in loadTimeData.
- void GenerateSignedinUserSpecificStrings(base::DictionaryValue* dictionary);
-
// Callback for the "requestDefaultProfileIcons" message.
// Sends the array of default profile icon URLs and profile names to WebUI.
// First item of |args| is the dialog mode, i.e. "create" or "manage".
void RequestDefaultProfileIcons(const base::ListValue* args);
- // Callback for the "requestNewProfileDefaults" message.
- // Sends an object to WebUI of the form:
- // { "name": profileName, "iconURL": iconURL }
- void RequestNewProfileDefaults(const base::ListValue* args);
-
- // Send all profile icons and their default names to the overlay.
- // |mode| is the dialog mode, i.e. "create" or "manage".
- void SendProfileIconsAndNames(const base::StringValue& mode);
-
- // Sends an object to WebUI of the form:
- // profileNames = {
- // "Profile Name 1": true,
- // "Profile Name 2": true,
- // ...
- // };
- // This is used to detect duplicate profile names.
- void SendExistingProfileNames();
-
- // Show disconnect managed profile dialog after generating domain and user
- // specific strings.
- void ShowDisconnectManagedProfileDialog(const base::ListValue* args);
+ // Send all the available profile icons to choose from.
+ void SendAvailableIcons();
// Callback for the "setProfileIconAndName" message. Sets the name and icon
// of a given profile.
@@ -88,13 +52,6 @@ class ManageProfileHandler : public OptionsPageUIHandler,
// ]
void SetProfileIconAndName(const base::ListValue* args);
-#if defined(ENABLE_SETTINGS_APP)
- // Callback for the "switchAppListProfile" message. Asks the
- // app_list_controller to change the profile registered for the AppList.
- // |args| is of the form: [ {string} profileFilePath ]
- void SwitchAppListProfile(const base::ListValue* args);
-#endif
-
// Callback for the 'profileIconSelectionChanged' message. Used to update the
// name in the manager profile dialog based on the selected icon.
void ProfileIconSelectionChanged(const base::ListValue* args);
@@ -105,16 +62,6 @@ class ManageProfileHandler : public OptionsPageUIHandler,
// |args| is of the form: [ {string} profileFilePath ]
void RequestHasProfileShortcuts(const base::ListValue* args);
- // Callback for the "RequestCreateProfileUpdate" message.
- // Sends the email address of the signed-in user, or an empty string if the
- // user is not signed in. Also sends information about whether supervised
- // users may be created.
- void RequestCreateProfileUpdate(const base::ListValue* args);
-
- // When the pref allowing supervised-user creation changes, sends the new
- // value to the UI.
- void OnCreateSupervisedUserPrefChange();
-
// Callback invoked from the profile manager indicating whether the profile
// being edited has any desktop shortcuts.
void OnHasProfileShortcuts(bool has_shortcuts);
@@ -133,19 +80,18 @@ class ManageProfileHandler : public OptionsPageUIHandler,
// user is editing an existing profile.
void RefreshGaiaPicture(const base::ListValue* args);
+ // Non-owning pointer to the associated profile.
+ Profile* profile_;
+
// URL for the current profile's GAIA picture.
std::string gaia_picture_url_;
- // Used to observe the preference that allows creating supervised users, which
- // can be changed by policy.
- PrefChangeRegistrar pref_change_registrar_;
-
// For generating weak pointers to itself for callbacks.
base::WeakPtrFactory<ManageProfileHandler> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(ManageProfileHandler);
};
-} // namespace options
+} // namespace settings
-#endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_MANAGE_PROFILE_HANDLER_H_
+#endif // CHROME_BROWSER_UI_WEBUI_SETTINGS_SETTINGS_MANAGE_PROFILE_HANDLER_H_

Powered by Google App Engine
This is Rietveld 408576698