| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 IOS_CHROME_BROWSER_SIGNIN_SIGNIN_CLIENT_IMPL_H_ | 5 #ifndef IOS_CHROME_BROWSER_SIGNIN_SIGNIN_CLIENT_IMPL_H_ |
| 6 #define IOS_CHROME_BROWSER_SIGNIN_SIGNIN_CLIENT_IMPL_H_ | 6 #define IOS_CHROME_BROWSER_SIGNIN_SIGNIN_CLIENT_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | |
| 9 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 10 #include "base/macros.h" | 9 #include "base/macros.h" |
| 11 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 12 #include "components/signin/core/browser/signin_client.h" | 11 #include "components/signin/core/browser/signin_client.h" |
| 13 #include "components/signin/core/browser/signin_error_controller.h" | 12 #include "components/signin/core/browser/signin_error_controller.h" |
| 14 #include "google_apis/gaia/gaia_oauth_client.h" | 13 #include "google_apis/gaia/gaia_oauth_client.h" |
| 15 #include "google_apis/gaia/oauth2_token_service.h" | 14 #include "google_apis/gaia/oauth2_token_service.h" |
| 16 #include "net/base/network_change_notifier.h" | 15 #include "net/base/network_change_notifier.h" |
| 17 | 16 |
| 18 namespace content_settings { | 17 namespace content_settings { |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 SigninErrorController* signin_error_controller_; | 104 SigninErrorController* signin_error_controller_; |
| 106 std::list<base::Closure> delayed_callbacks_; | 105 std::list<base::Closure> delayed_callbacks_; |
| 107 | 106 |
| 108 scoped_ptr<gaia::GaiaOAuthClient> oauth_client_; | 107 scoped_ptr<gaia::GaiaOAuthClient> oauth_client_; |
| 109 scoped_ptr<OAuth2TokenService::Request> oauth_request_; | 108 scoped_ptr<OAuth2TokenService::Request> oauth_request_; |
| 110 | 109 |
| 111 DISALLOW_COPY_AND_ASSIGN(SigninClientImpl); | 110 DISALLOW_COPY_AND_ASSIGN(SigninClientImpl); |
| 112 }; | 111 }; |
| 113 | 112 |
| 114 #endif // IOS_CHROME_BROWSER_SIGNIN_SIGNIN_CLIENT_IMPL_H_ | 113 #endif // IOS_CHROME_BROWSER_SIGNIN_SIGNIN_CLIENT_IMPL_H_ |
| OLD | NEW |