| 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 SYNC_TEST_FAKE_SERVER_FAKE_SERVER_VERIFIER_H_ | 5 #ifndef SYNC_TEST_FAKE_SERVER_FAKE_SERVER_VERIFIER_H_ |
| 6 #define SYNC_TEST_FAKE_SERVER_FAKE_SERVER_VERIFIER_H_ | 6 #define SYNC_TEST_FAKE_SERVER_FAKE_SERVER_VERIFIER_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "base/memory/scoped_ptr.h" | |
| 14 #include "base/values.h" | 13 #include "base/values.h" |
| 15 #include "sync/internal_api/public/base/model_type.h" | 14 #include "sync/internal_api/public/base/model_type.h" |
| 16 #include "sync/test/fake_server/sessions_hierarchy.h" | 15 #include "sync/test/fake_server/sessions_hierarchy.h" |
| 17 #include "testing/gtest/include/gtest/gtest.h" | 16 #include "testing/gtest/include/gtest/gtest.h" |
| 18 | 17 |
| 19 namespace fake_server { | 18 namespace fake_server { |
| 20 | 19 |
| 21 class FakeServer; | 20 class FakeServer; |
| 22 | 21 |
| 23 // Provides methods to verify the state of a FakeServer. The main use case of | 22 // Provides methods to verify the state of a FakeServer. The main use case of |
| (...skipping 29 matching lines...) Expand all Loading... |
| 53 | 52 |
| 54 private: | 53 private: |
| 55 FakeServer* const fake_server_; | 54 FakeServer* const fake_server_; |
| 56 | 55 |
| 57 DISALLOW_COPY_AND_ASSIGN(FakeServerVerifier); | 56 DISALLOW_COPY_AND_ASSIGN(FakeServerVerifier); |
| 58 }; | 57 }; |
| 59 | 58 |
| 60 } // namespace fake_server | 59 } // namespace fake_server |
| 61 | 60 |
| 62 #endif // SYNC_TEST_FAKE_SERVER_FAKE_SERVER_VERIFIER_H_ | 61 #endif // SYNC_TEST_FAKE_SERVER_FAKE_SERVER_VERIFIER_H_ |
| OLD | NEW |