| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 GOOGLE_APIS_GAIA_FAKE_GAIA_H_ | 5 #ifndef GOOGLE_APIS_GAIA_FAKE_GAIA_H_ |
| 6 #define GOOGLE_APIS_GAIA_FAKE_GAIA_H_ | 6 #define GOOGLE_APIS_GAIA_FAKE_GAIA_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "base/basictypes.h" | |
| 13 #include "base/callback.h" | 12 #include "base/callback.h" |
| 13 #include "base/macros.h" |
| 14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 15 #include "url/gurl.h" | 15 #include "url/gurl.h" |
| 16 | 16 |
| 17 namespace base { | 17 namespace base { |
| 18 class DictionaryValue; | 18 class DictionaryValue; |
| 19 } | 19 } |
| 20 | 20 |
| 21 namespace net { | 21 namespace net { |
| 22 namespace test_server { | 22 namespace test_server { |
| 23 class BasicHttpResponse; | 23 class BasicHttpResponse; |
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 std::string embedded_setup_chromeos_response_; | 234 std::string embedded_setup_chromeos_response_; |
| 235 SamlAccountIdpMap saml_account_idp_map_; | 235 SamlAccountIdpMap saml_account_idp_map_; |
| 236 bool issue_oauth_code_cookie_; | 236 bool issue_oauth_code_cookie_; |
| 237 RefreshTokenToDeviceIdMap refresh_token_to_device_id_map_; | 237 RefreshTokenToDeviceIdMap refresh_token_to_device_id_map_; |
| 238 std::string prefilled_email_; | 238 std::string prefilled_email_; |
| 239 | 239 |
| 240 DISALLOW_COPY_AND_ASSIGN(FakeGaia); | 240 DISALLOW_COPY_AND_ASSIGN(FakeGaia); |
| 241 }; | 241 }; |
| 242 | 242 |
| 243 #endif // GOOGLE_APIS_GAIA_FAKE_GAIA_H_ | 243 #endif // GOOGLE_APIS_GAIA_FAKE_GAIA_H_ |
| OLD | NEW |