| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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 CHROME_BROWSER_INVALIDATION_FAKE_INVALIDATION_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_INVALIDATION_FAKE_INVALIDATION_SERVICE_H_ |
| 6 #define CHROME_BROWSER_INVALIDATION_FAKE_INVALIDATION_SERVICE_H_ | 6 #define CHROME_BROWSER_INVALIDATION_FAKE_INVALIDATION_SERVICE_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <utility> | 9 #include <utility> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/callback_forward.h" | 12 #include "base/callback_forward.h" |
| 13 #include "chrome/browser/invalidation/invalidation_service.h" | |
| 14 #include "chrome/browser/signin/fake_profile_oauth2_token_service.h" | 13 #include "chrome/browser/signin/fake_profile_oauth2_token_service.h" |
| 14 #include "components/invalidation/invalidation_service.h" |
| 15 #include "google_apis/gaia/fake_identity_provider.h" | 15 #include "google_apis/gaia/fake_identity_provider.h" |
| 16 #include "sync/notifier/invalidator_registrar.h" | 16 #include "sync/notifier/invalidator_registrar.h" |
| 17 #include "sync/notifier/mock_ack_handler.h" | 17 #include "sync/notifier/mock_ack_handler.h" |
| 18 | 18 |
| 19 namespace content { | 19 namespace content { |
| 20 class BrowserContext; | 20 class BrowserContext; |
| 21 } | 21 } |
| 22 | 22 |
| 23 namespace syncer { | 23 namespace syncer { |
| 24 class Invalidation; | 24 class Invalidation; |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 syncer::MockAckHandler mock_ack_handler_; | 70 syncer::MockAckHandler mock_ack_handler_; |
| 71 FakeProfileOAuth2TokenService token_service_; | 71 FakeProfileOAuth2TokenService token_service_; |
| 72 FakeIdentityProvider identity_provider_; | 72 FakeIdentityProvider identity_provider_; |
| 73 | 73 |
| 74 DISALLOW_COPY_AND_ASSIGN(FakeInvalidationService); | 74 DISALLOW_COPY_AND_ASSIGN(FakeInvalidationService); |
| 75 }; | 75 }; |
| 76 | 76 |
| 77 } // namespace invalidation | 77 } // namespace invalidation |
| 78 | 78 |
| 79 #endif // CHROME_BROWSER_INVALIDATION_FAKE_INVALIDATION_SERVICE_H_ | 79 #endif // CHROME_BROWSER_INVALIDATION_FAKE_INVALIDATION_SERVICE_H_ |
| OLD | NEW |