| 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 #include "base/basictypes.h" | |
| 6 #include "base/compiler_specific.h" | 5 #include "base/compiler_specific.h" |
| 6 #include "base/macros.h" |
| 7 #include "base/memory/scoped_ptr.h" | 7 #include "base/memory/scoped_ptr.h" |
| 8 #include "components/invalidation/impl/fake_invalidation_handler.h" | 8 #include "components/invalidation/impl/fake_invalidation_handler.h" |
| 9 #include "components/invalidation/impl/invalidator_registrar.h" | 9 #include "components/invalidation/impl/invalidator_registrar.h" |
| 10 #include "components/invalidation/impl/invalidator_test_template.h" | 10 #include "components/invalidation/impl/invalidator_test_template.h" |
| 11 #include "google/cacheinvalidation/types.pb.h" | 11 #include "google/cacheinvalidation/types.pb.h" |
| 12 #include "testing/gtest/include/gtest/gtest.h" | 12 #include "testing/gtest/include/gtest/gtest.h" |
| 13 | 13 |
| 14 namespace syncer { | 14 namespace syncer { |
| 15 | 15 |
| 16 namespace { | 16 namespace { |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 scoped_ptr<RegistrarInvalidator> invalidator_; | 105 scoped_ptr<RegistrarInvalidator> invalidator_; |
| 106 }; | 106 }; |
| 107 | 107 |
| 108 INSTANTIATE_TYPED_TEST_CASE_P( | 108 INSTANTIATE_TYPED_TEST_CASE_P( |
| 109 RegistrarInvalidatorTest, InvalidatorTest, | 109 RegistrarInvalidatorTest, InvalidatorTest, |
| 110 RegistrarInvalidatorTestDelegate); | 110 RegistrarInvalidatorTestDelegate); |
| 111 | 111 |
| 112 } // namespace | 112 } // namespace |
| 113 | 113 |
| 114 } // namespace syncer | 114 } // namespace syncer |
| OLD | NEW |