| 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 #ifndef CHROME_BROWSER_POLICY_CLOUD_USER_POLICY_SIGNIN_SERVICE_MOBILE_H_ | 5 #ifndef CHROME_BROWSER_POLICY_CLOUD_USER_POLICY_SIGNIN_SERVICE_MOBILE_H_ |
| 6 #define CHROME_BROWSER_POLICY_CLOUD_USER_POLICY_SIGNIN_SERVICE_MOBILE_H_ | 6 #define CHROME_BROWSER_POLICY_CLOUD_USER_POLICY_SIGNIN_SERVICE_MOBILE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | |
| 12 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "base/macros.h" |
| 13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 15 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
| 16 #include "build/build_config.h" |
| 16 #include "chrome/browser/policy/cloud/user_policy_signin_service_base.h" | 17 #include "chrome/browser/policy/cloud/user_policy_signin_service_base.h" |
| 17 | 18 |
| 18 class ProfileOAuth2TokenService; | 19 class ProfileOAuth2TokenService; |
| 19 class Profile; | 20 class Profile; |
| 20 | 21 |
| 21 namespace net { | 22 namespace net { |
| 22 class URLRequestContextGetter; | 23 class URLRequestContextGetter; |
| 23 } | 24 } |
| 24 | 25 |
| 25 namespace policy { | 26 namespace policy { |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 PrefService* profile_prefs_; | 105 PrefService* profile_prefs_; |
| 105 | 106 |
| 106 base::WeakPtrFactory<UserPolicySigninService> weak_factory_; | 107 base::WeakPtrFactory<UserPolicySigninService> weak_factory_; |
| 107 | 108 |
| 108 DISALLOW_COPY_AND_ASSIGN(UserPolicySigninService); | 109 DISALLOW_COPY_AND_ASSIGN(UserPolicySigninService); |
| 109 }; | 110 }; |
| 110 | 111 |
| 111 } // namespace policy | 112 } // namespace policy |
| 112 | 113 |
| 113 #endif // CHROME_BROWSER_POLICY_CLOUD_USER_POLICY_SIGNIN_SERVICE_MOBILE_H_ | 114 #endif // CHROME_BROWSER_POLICY_CLOUD_USER_POLICY_SIGNIN_SERVICE_MOBILE_H_ |
| OLD | NEW |