| 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 COMPONENTS_SIGNIN_CORE_BROWSER_GAIA_COOKIE_MANAGER_SERVICE_H | 5 #ifndef COMPONENTS_SIGNIN_CORE_BROWSER_GAIA_COOKIE_MANAGER_SERVICE_H |
| 6 #define COMPONENTS_SIGNIN_CORE_BROWSER_GAIA_COOKIE_MANAGER_SERVICE_H | 6 #define COMPONENTS_SIGNIN_CORE_BROWSER_GAIA_COOKIE_MANAGER_SERVICE_H |
| 7 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 | 9 |
| 10 #include "base/observer_list.h" | 10 #include "base/observer_list.h" |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 | 262 |
| 263 // Source to use with GAIA endpoints for accounting. | 263 // Source to use with GAIA endpoints for accounting. |
| 264 std::string source_; | 264 std::string source_; |
| 265 | 265 |
| 266 // True once the ExternalCCResultFetcher has completed once. | 266 // True once the ExternalCCResultFetcher has completed once. |
| 267 bool external_cc_result_fetched_; | 267 bool external_cc_result_fetched_; |
| 268 | 268 |
| 269 std::vector<std::pair<std::string, bool> > listed_accounts_; | 269 std::vector<std::pair<std::string, bool> > listed_accounts_; |
| 270 | 270 |
| 271 bool list_accounts_fetched_once_; | 271 bool list_accounts_fetched_once_; |
| 272 scoped_ptr<net::URLFetcher> logout_url_request_; |
| 272 | 273 |
| 273 DISALLOW_COPY_AND_ASSIGN(GaiaCookieManagerService); | 274 DISALLOW_COPY_AND_ASSIGN(GaiaCookieManagerService); |
| 274 }; | 275 }; |
| 275 | 276 |
| 276 #endif // COMPONENTS_SIGNIN_CORE_BROWSER_GAIA_COOKIE_MANAGER_SERVICE_H | 277 #endif // COMPONENTS_SIGNIN_CORE_BROWSER_GAIA_COOKIE_MANAGER_SERVICE_H |
| OLD | NEW |