Index: chrome/browser/managed_mode/chromeos/managed_user_password_service.h |
diff --git a/chrome/browser/managed_mode/chromeos/managed_user_password_service.h b/chrome/browser/managed_mode/chromeos/managed_user_password_service.h |
deleted file mode 100644 |
index 165332ca3ef33c37b2da397155b1895e9a81673d..0000000000000000000000000000000000000000 |
--- a/chrome/browser/managed_mode/chromeos/managed_user_password_service.h |
+++ /dev/null |
@@ -1,45 +0,0 @@ |
-// Copyright 2014 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_CHROMEOS_MANAGED_USER_PASSWORD_SERVICE_H_ |
-#define CHROME_BROWSER_MANAGED_MODE_CHROMEOS_MANAGED_USER_PASSWORD_SERVICE_H_ |
- |
-#include <string> |
- |
-#include "base/compiler_specific.h" |
-#include "base/memory/scoped_ptr.h" |
-#include "base/memory/weak_ptr.h" |
-#include "chrome/browser/managed_mode/managed_user_shared_settings_service.h" |
-#include "chrome/browser/managed_mode/managed_users.h" |
-#include "components/keyed_service/core/keyed_service.h" |
- |
-namespace chromeos { |
- |
-class ManagedUserPasswordService : public KeyedService { |
- public: |
- ManagedUserPasswordService(); |
- virtual ~ManagedUserPasswordService(); |
- |
- virtual void Shutdown() OVERRIDE; |
- |
- void Init(const std::string& user_id, |
- ManagedUserSharedSettingsService* service); |
- private: |
- void OnSharedSettingsChange(const std::string& mu_id, const std::string& key); |
- |
- // Cached value from Init(). |
- // User id of currently logged in managed user. |
- std::string user_id_; |
- ManagedUserSharedSettingsService* settings_service_; |
- |
- scoped_ptr<ManagedUserSharedSettingsService::ChangeCallbackList::Subscription> |
- settings_service_subscription_; |
- |
- base::WeakPtrFactory<ManagedUserPasswordService> weak_ptr_factory_; |
- |
- DISALLOW_COPY_AND_ASSIGN(ManagedUserPasswordService); |
-}; |
- |
-} // namespace chromeos |
-#endif // CHROME_BROWSER_MANAGED_MODE_CHROMEOS_MANAGED_USER_PASSWORD_SERVICE_H_ |