| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #ifndef CHROME_BROWSER_CHROMEOS_ARC_ARC_AUTH_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_ARC_ARC_AUTH_SERVICE_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_ARC_ARC_AUTH_SERVICE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_ARC_ARC_AUTH_SERVICE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <ostream> | 9 #include <ostream> |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
| 14 #include "base/observer_list.h" | 14 #include "base/observer_list.h" |
| 15 #include "base/timer/timer.h" | 15 #include "base/timer/timer.h" |
| 16 #include "chrome/browser/chromeos/arc/arc_android_management_checker_delegate.h" | |
| 17 #include "chrome/browser/chromeos/arc/arc_auth_code_fetcher_delegate.h" | 16 #include "chrome/browser/chromeos/arc/arc_auth_code_fetcher_delegate.h" |
| 18 #include "chrome/browser/chromeos/arc/arc_auth_context_delegate.h" | 17 #include "chrome/browser/chromeos/arc/arc_auth_context_delegate.h" |
| 18 #include "chrome/browser/chromeos/arc/policy/arc_android_management_checker_dele
gate.h" |
| 19 #include "components/arc/arc_bridge_service.h" | 19 #include "components/arc/arc_bridge_service.h" |
| 20 #include "components/arc/arc_service.h" | 20 #include "components/arc/arc_service.h" |
| 21 #include "components/arc/common/auth.mojom.h" | 21 #include "components/arc/common/auth.mojom.h" |
| 22 #include "components/arc/instance_holder.h" | 22 #include "components/arc/instance_holder.h" |
| 23 #include "components/prefs/pref_change_registrar.h" | 23 #include "components/prefs/pref_change_registrar.h" |
| 24 #include "components/syncable_prefs/pref_service_syncable_observer.h" | 24 #include "components/syncable_prefs/pref_service_syncable_observer.h" |
| 25 #include "components/syncable_prefs/synced_pref_observer.h" | 25 #include "components/syncable_prefs/synced_pref_observer.h" |
| 26 #include "mojo/public/cpp/bindings/binding.h" | 26 #include "mojo/public/cpp/bindings/binding.h" |
| 27 | 27 |
| 28 class ArcAppLauncher; | 28 class ArcAppLauncher; |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 base::WeakPtrFactory<ArcAuthService> weak_ptr_factory_; | 254 base::WeakPtrFactory<ArcAuthService> weak_ptr_factory_; |
| 255 | 255 |
| 256 DISALLOW_COPY_AND_ASSIGN(ArcAuthService); | 256 DISALLOW_COPY_AND_ASSIGN(ArcAuthService); |
| 257 }; | 257 }; |
| 258 | 258 |
| 259 std::ostream& operator<<(std::ostream& os, const ArcAuthService::State& state); | 259 std::ostream& operator<<(std::ostream& os, const ArcAuthService::State& state); |
| 260 | 260 |
| 261 } // namespace arc | 261 } // namespace arc |
| 262 | 262 |
| 263 #endif // CHROME_BROWSER_CHROMEOS_ARC_ARC_AUTH_SERVICE_H_ | 263 #endif // CHROME_BROWSER_CHROMEOS_ARC_ARC_AUTH_SERVICE_H_ |
| OLD | NEW |