| 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/ui/ash/user_accounts_delegate_chromeos.h" | 5 #include "chrome/browser/ui/ash/user_accounts_delegate_chromeos.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <iterator> | 8 #include <iterator> |
| 9 | 9 |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| 11 #include "chrome/browser/chromeos/login/user_manager.h" | 11 #include "chrome/browser/chromeos/login/users/user_manager.h" |
| 12 #include "chrome/browser/chromeos/ui/inline_login_dialog.h" | 12 #include "chrome/browser/chromeos/ui/inline_login_dialog.h" |
| 13 #include "chrome/browser/signin/profile_oauth2_token_service_factory.h" | 13 #include "chrome/browser/signin/profile_oauth2_token_service_factory.h" |
| 14 #include "chrome/browser/signin/signin_manager_factory.h" | 14 #include "chrome/browser/signin/signin_manager_factory.h" |
| 15 #include "components/signin/core/browser/mutable_profile_oauth2_token_service.h" | 15 #include "components/signin/core/browser/mutable_profile_oauth2_token_service.h" |
| 16 #include "components/signin/core/browser/profile_oauth2_token_service.h" | 16 #include "components/signin/core/browser/profile_oauth2_token_service.h" |
| 17 #include "components/signin/core/browser/signin_manager.h" | 17 #include "components/signin/core/browser/signin_manager.h" |
| 18 #include "google_apis/gaia/gaia_auth_util.h" | 18 #include "google_apis/gaia/gaia_auth_util.h" |
| 19 | 19 |
| 20 namespace chromeos { | 20 namespace chromeos { |
| 21 | 21 |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 const std::string& account_id) { | 76 const std::string& account_id) { |
| 77 NotifyAccountListChanged(); | 77 NotifyAccountListChanged(); |
| 78 } | 78 } |
| 79 | 79 |
| 80 void UserAccountsDelegateChromeOS::OnRefreshTokenRevoked( | 80 void UserAccountsDelegateChromeOS::OnRefreshTokenRevoked( |
| 81 const std::string& account_id) { | 81 const std::string& account_id) { |
| 82 NotifyAccountListChanged(); | 82 NotifyAccountListChanged(); |
| 83 } | 83 } |
| 84 | 84 |
| 85 } // namespace chromeos | 85 } // namespace chromeos |
| OLD | NEW |