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

Unified Diff: chrome/browser/managed_mode/managed_user_sync_service.h

Issue 335833003: Rename "managed (mode|user)" to "supervised user" (part 2) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review comments (+ a few other cleanups) Created 6 years, 6 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/managed_mode/managed_user_sync_service.h
diff --git a/chrome/browser/managed_mode/managed_user_sync_service.h b/chrome/browser/managed_mode/managed_user_sync_service.h
deleted file mode 100644
index 5656ec56bece13c1e59956eecb7747449e35575e..0000000000000000000000000000000000000000
--- a/chrome/browser/managed_mode/managed_user_sync_service.h
+++ /dev/null
@@ -1,165 +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_MANAGED_MODE_MANAGED_USER_SYNC_SERVICE_H_
-#define CHROME_BROWSER_MANAGED_MODE_MANAGED_USER_SYNC_SERVICE_H_
-
-#include <vector>
-
-#include "base/callback_forward.h"
-#include "base/memory/scoped_ptr.h"
-#include "base/observer_list.h"
-#include "base/prefs/pref_change_registrar.h"
-#include "chrome/browser/managed_mode/managed_user_sync_service_observer.h"
-#include "chrome/browser/managed_mode/managed_users.h"
-#include "components/keyed_service/core/keyed_service.h"
-#include "sync/api/syncable_service.h"
-
-namespace base {
-class DictionaryValue;
-}
-
-namespace user_prefs {
-class PrefRegistrySyncable;
-}
-
-class PrefService;
-
-class ManagedUserSyncService : public KeyedService,
- public syncer::SyncableService {
- public:
- // For use with GetManagedUsersAsync() below.
- typedef base::Callback<void(const base::DictionaryValue*)>
- ManagedUsersCallback;
-
- // Dictionary keys for entry values of |prefs::kManagedUsers|.
- static const char kAcknowledged[];
- static const char kChromeAvatar[];
- static const char kChromeOsAvatar[];
- static const char kMasterKey[];
- static const char kPasswordSignatureKey[];
- static const char kPasswordEncryptionKey[];
- static const char kName[];
-
- // Represents a non-existing avatar on Chrome and Chrome OS.
- static const int kNoAvatar;
-
- virtual ~ManagedUserSyncService();
-
- static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry);
-
- // Extracts the avatar index from the input |avatar_str| and set
- // |avatar_index| to hold the extracted value. Returns true if the
- // index was extracted successfully and false otherwise.
- // |avatar_str| should have the format: "chrome-avatar-index:INDEX"
- // where INDEX is the integer to be extracted. |avatar_str| can be empty
- // in case there is no avatar synced for a managed user in which case
- // |avatar_index| is set to -1.
- static bool GetAvatarIndex(const std::string& avatar_str,
- int* avatar_index);
-
- // Given an |avatar_index|, it returns a string of the form:
- // "chrome-avatar-index:INDEX" where INDEX = |avatar_index|.
- // It is exposed for testing purposes only.
- static std::string BuildAvatarString(int avatar_index);
-
- void AddObserver(ManagedUserSyncServiceObserver* observer);
- void RemoveObserver(ManagedUserSyncServiceObserver* observer);
-
- void AddManagedUser(const std::string& id,
- const std::string& name,
- const std::string& master_key,
- const std::string& password_signature_key,
- const std::string& password_encryption_key,
- int avatar_index);
- void UpdateManagedUser(const std::string& id,
- const std::string& name,
- const std::string& master_key,
- const std::string& signature_key,
- const std::string& encryption_key,
- int avatar_index);
-
- void DeleteManagedUser(const std::string& id);
-
- // Updates the managed user avatar only if the managed user has
- // no avatar and |avatar_index| is set to some value other than
- // |kNoAvatar|. If |avatar_index| equals |kNoAvatar| and the
- // managed user has an avatar, it will be cleared. However,
- // to clear an avatar call the convenience method |ClearManagedUserAvatar()|.
- // Returns true if the avatar value is changed (either updated or cleared)
- // and false otherwise.
- bool UpdateManagedUserAvatarIfNeeded(const std::string& id, int avatar_index);
- void ClearManagedUserAvatar(const std::string& id);
-
- // Returns a dictionary containing all managed users managed by this
- // custodian. This method should only be called once this service has started
- // syncing managed users (i.e. has finished its initial merge of local and
- // server-side data, via MergeDataAndStartSyncing), as the stored data might
- // be outdated before that.
- const base::DictionaryValue* GetManagedUsers();
-
- // Calls the passed |callback| with a dictionary containing all managed users
- // managed by this custodian.
- void GetManagedUsersAsync(const ManagedUsersCallback& callback);
-
- // KeyedService implementation:
- virtual void Shutdown() OVERRIDE;
-
- // SyncableService implementation:
- virtual syncer::SyncMergeResult MergeDataAndStartSyncing(
- syncer::ModelType type,
- const syncer::SyncDataList& initial_sync_data,
- scoped_ptr<syncer::SyncChangeProcessor> sync_processor,
- scoped_ptr<syncer::SyncErrorFactory> error_handler) OVERRIDE;
- virtual void StopSyncing(syncer::ModelType type) OVERRIDE;
- virtual syncer::SyncDataList GetAllSyncData(syncer::ModelType type) const
- OVERRIDE;
- virtual syncer::SyncError ProcessSyncChanges(
- const tracked_objects::Location& from_here,
- const syncer::SyncChangeList& change_list) OVERRIDE;
-
- private:
- friend class ManagedUserSyncServiceFactory;
-
- // Use |ManagedUserSyncServiceFactory::GetForProfile(...)| to get an
- // instance of this service.
- explicit ManagedUserSyncService(PrefService* prefs);
-
- void OnLastSignedInUsernameChange();
-
- scoped_ptr<base::DictionaryValue> CreateDictionary(
- const std::string& name,
- const std::string& master_key,
- const std::string& signature_key,
- const std::string& encryption_key,
- int avatar_index);
-
- void UpdateManagedUserImpl(const std::string& id,
- const std::string& name,
- const std::string& master_key,
- const std::string& signature_key,
- const std::string& encryption_key,
- int avatar_index,
- bool add_user);
-
- void NotifyManagedUserAcknowledged(const std::string& managed_user_id);
- void NotifyManagedUsersSyncingStopped();
- void NotifyManagedUsersChanged();
-
- void DispatchCallbacks();
-
- PrefService* prefs_;
- PrefChangeRegistrar pref_change_registrar_;
-
- scoped_ptr<syncer::SyncChangeProcessor> sync_processor_;
- scoped_ptr<syncer::SyncErrorFactory> error_handler_;
-
- ObserverList<ManagedUserSyncServiceObserver> observers_;
-
- std::vector<ManagedUsersCallback> callbacks_;
-
- DISALLOW_COPY_AND_ASSIGN(ManagedUserSyncService);
-};
-
-#endif // CHROME_BROWSER_MANAGED_MODE_MANAGED_USER_SYNC_SERVICE_H_

Powered by Google App Engine
This is Rietveld 408576698