| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_EXTENSIONS_API_PUSH_MESSAGING_OBFUSCATED_GAIA_ID_FETCHER_
H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_PUSH_MESSAGING_OBFUSCATED_GAIA_ID_FETCHER_
H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_API_PUSH_MESSAGING_OBFUSCATED_GAIA_ID_FETCHER_
H_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_PUSH_MESSAGING_OBFUSCATED_GAIA_ID_FETCHER_
H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "chrome/common/net/gaia/oauth2_api_call_flow.h" | 10 #include "google_apis/gaia/oauth2_api_call_flow.h" |
| 11 | 11 |
| 12 class GoogleServiceAuthError; | 12 class GoogleServiceAuthError; |
| 13 | 13 |
| 14 namespace content { | 14 namespace content { |
| 15 class URLFetcher; | 15 class URLFetcher; |
| 16 } | 16 } |
| 17 | 17 |
| 18 namespace net { | 18 namespace net { |
| 19 class URLRequestContextGetter; | 19 class URLRequestContextGetter; |
| 20 } | 20 } |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 // Unowned pointer to the delegate. Normally the delegate owns | 73 // Unowned pointer to the delegate. Normally the delegate owns |
| 74 // this fetcher class. | 74 // this fetcher class. |
| 75 Delegate* delegate_; | 75 Delegate* delegate_; |
| 76 | 76 |
| 77 DISALLOW_COPY_AND_ASSIGN(ObfuscatedGaiaIdFetcher); | 77 DISALLOW_COPY_AND_ASSIGN(ObfuscatedGaiaIdFetcher); |
| 78 }; | 78 }; |
| 79 | 79 |
| 80 } // namespace extensions | 80 } // namespace extensions |
| 81 | 81 |
| 82 #endif // CHROME_BROWSER_EXTENSIONS_API_PUSH_MESSAGING_OBFUSCATED_GAIA_ID_FETCH
ER_H_ | 82 #endif // CHROME_BROWSER_EXTENSIONS_API_PUSH_MESSAGING_OBFUSCATED_GAIA_ID_FETCH
ER_H_ |
| OLD | NEW |