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

Unified Diff: chrome/browser/ui/webui/options/managed_user_import_handler.h

Issue 384023002: Rename "managed (mode|user)" to "supervised user" (part 6) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: break long lines Created 6 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/webui/options/managed_user_import_handler.h
diff --git a/chrome/browser/ui/webui/options/managed_user_import_handler.h b/chrome/browser/ui/webui/options/managed_user_import_handler.h
deleted file mode 100644
index 52d129f1a132a6606166d57f5ea5638903062ca0..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/webui/options/managed_user_import_handler.h
+++ /dev/null
@@ -1,96 +0,0 @@
-// Copyright 2013 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_MANAGED_USER_IMPORT_HANDLER_H_
-#define CHROME_BROWSER_UI_WEBUI_OPTIONS_MANAGED_USER_IMPORT_HANDLER_H_
-
-#include "base/callback_list.h"
-#include "base/memory/weak_ptr.h"
-#include "base/scoped_observer.h"
-#include "chrome/browser/supervised_user/supervised_user_sync_service_observer.h"
-#include "chrome/browser/ui/webui/options/options_ui.h"
-#include "components/signin/core/browser/signin_error_controller.h"
-
-namespace base {
-class DictionaryValue;
-class ListValue;
-}
-
-namespace options {
-
-// Handler for the 'import existing managed user' dialog.
-class ManagedUserImportHandler : public OptionsPageUIHandler,
- public SupervisedUserSyncServiceObserver,
- public SigninErrorController::Observer {
- public:
- typedef base::CallbackList<void(const std::string&, const std::string&)>
- CallbackList;
-
- ManagedUserImportHandler();
- virtual ~ManagedUserImportHandler();
-
- // OptionsPageUIHandler implementation.
- virtual void GetLocalizedValues(
- base::DictionaryValue* localized_strings) OVERRIDE;
- virtual void InitializeHandler() OVERRIDE;
-
- // WebUIMessageHandler implementation.
- virtual void RegisterMessages() OVERRIDE;
-
- // SupervisedUserSyncServiceObserver implementation.
- virtual void OnSupervisedUserAcknowledged(
- const std::string& supervised_user_id) OVERRIDE {}
- virtual void OnSupervisedUsersSyncingStopped() OVERRIDE {}
- virtual void OnSupervisedUsersChanged() OVERRIDE;
-
- // SigninErrorController::Observer implementation.
- virtual void OnErrorChanged() OVERRIDE;
-
- private:
- // Clears the cached list of managed users and fetches the new list of managed
- // users.
- void FetchManagedUsers();
-
- // Callback for the "requestManagedUserImportUpdate" message.
- // Checks the sign-in status of the custodian and accordingly
- // sends an update to the WebUI. The update can be to show/hide
- // an error bubble and update/clear the managed user list.
- void RequestManagedUserImportUpdate(const base::ListValue* args);
-
- // Sends an array of managed users to WebUI. Each entry is of the form:
- // managedProfile = {
- // id: "Managed User ID",
- // name: "Managed User Name",
- // iconURL: "chrome://path/to/icon/image",
- // onCurrentDevice: true or false,
- // needAvatar: true or false
- // }
- // The array holds all existing managed users attached to the
- // custodian's profile which initiated the request.
- void SendExistingManagedUsers(const base::DictionaryValue* dict);
-
- // Sends messages to the JS side to clear managed users and show an error
- // bubble.
- void ClearManagedUsersAndShowError();
-
- bool IsAccountConnected() const;
- bool HasAuthError() const;
-
- // Called when a managed user shared setting is changed. If the avatar was
- // changed, FetchManagedUsers() is called.
- void OnSharedSettingChanged(const std::string& managed_user_id,
- const std::string& key);
-
- scoped_ptr<CallbackList::Subscription> subscription_;
-
- ScopedObserver<SigninErrorController, ManagedUserImportHandler> observer_;
-
- base::WeakPtrFactory<ManagedUserImportHandler> weak_ptr_factory_;
-
- DISALLOW_COPY_AND_ASSIGN(ManagedUserImportHandler);
-};
-
-} // namespace options
-
-#endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_MANAGED_USER_IMPORT_HANDLER_H_

Powered by Google App Engine
This is Rietveld 408576698