OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/supervised_user/chromeos/manager_password_service.h" | 5 #include "chrome/browser/supervised_user/chromeos/manager_password_service.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "base/metrics/histogram.h" | 9 #include "base/metrics/histogram_macros.h" |
10 #include "base/values.h" | 10 #include "base/values.h" |
11 #include "chrome/browser/chromeos/login/supervised/supervised_user_authenticatio
n.h" | 11 #include "chrome/browser/chromeos/login/supervised/supervised_user_authenticatio
n.h" |
12 #include "chrome/browser/chromeos/login/supervised/supervised_user_constants.h" | 12 #include "chrome/browser/chromeos/login/supervised/supervised_user_constants.h" |
13 #include "chrome/browser/chromeos/login/users/chrome_user_manager.h" | 13 #include "chrome/browser/chromeos/login/users/chrome_user_manager.h" |
14 #include "chrome/browser/chromeos/login/users/supervised_user_manager.h" | 14 #include "chrome/browser/chromeos/login/users/supervised_user_manager.h" |
15 #include "chrome/browser/supervised_user/legacy/supervised_user_sync_service.h" | 15 #include "chrome/browser/supervised_user/legacy/supervised_user_sync_service.h" |
16 #include "chrome/browser/supervised_user/supervised_user_constants.h" | 16 #include "chrome/browser/supervised_user/supervised_user_constants.h" |
17 #include "chromeos/login/auth/key.h" | 17 #include "chromeos/login/auth/key.h" |
18 #include "chromeos/login/auth/user_context.h" | 18 #include "chromeos/login/auth/user_context.h" |
19 #include "components/user_manager/user.h" | 19 #include "components/user_manager/user.h" |
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
266 const UserContext& master_key_context) { | 266 const UserContext& master_key_context) { |
267 VLOG(1) << "Removed old master key for " | 267 VLOG(1) << "Removed old master key for " |
268 << master_key_context.GetAccountId().GetUserEmail(); | 268 << master_key_context.GetAccountId().GetUserEmail(); |
269 } | 269 } |
270 | 270 |
271 void ManagerPasswordService::Shutdown() { | 271 void ManagerPasswordService::Shutdown() { |
272 settings_service_subscription_.reset(); | 272 settings_service_subscription_.reset(); |
273 } | 273 } |
274 | 274 |
275 } // namespace chromeos | 275 } // namespace chromeos |
OLD | NEW |