OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_SYNC_TEST_INTEGRATION_SYNC_TEST_H_ | 5 #ifndef CHROME_BROWSER_SYNC_TEST_INTEGRATION_SYNC_TEST_H_ |
6 #define CHROME_BROWSER_SYNC_TEST_INTEGRATION_SYNC_TEST_H_ | 6 #define CHROME_BROWSER_SYNC_TEST_INTEGRATION_SYNC_TEST_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "chrome/test/base/in_process_browser_test.h" | 9 #include "chrome/test/base/in_process_browser_test.h" |
10 | 10 |
11 #include <string> | 11 #include <string> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
14 #include "base/basictypes.h" | 14 #include "base/basictypes.h" |
| 15 #include "base/compiler_specific.h" |
15 #include "base/file_util.h" | 16 #include "base/file_util.h" |
16 #include "base/memory/scoped_ptr.h" | 17 #include "base/memory/scoped_ptr.h" |
17 #include "base/memory/scoped_vector.h" | 18 #include "base/memory/scoped_vector.h" |
18 #include "base/process_util.h" | 19 #include "base/process_util.h" |
19 #include "base/task.h" | 20 #include "base/task.h" |
20 #include "chrome/browser/sync/protocol/sync_protocol_error.h" | 21 #include "chrome/browser/sync/protocol/sync_protocol_error.h" |
21 #include "chrome/browser/sync/syncable/model_type.h" | 22 #include "chrome/browser/sync/syncable/model_type.h" |
22 #include "net/base/mock_host_resolver.h" | 23 #include "net/base/mock_host_resolver.h" |
23 #include "net/test/test_server.h" | 24 #include "net/test/test_server.h" |
24 | 25 |
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
316 | 317 |
317 // The URLFetcherImplFactory instance used to instantiate |fake_factory_|. | 318 // The URLFetcherImplFactory instance used to instantiate |fake_factory_|. |
318 scoped_ptr<URLFetcherImplFactory> factory_; | 319 scoped_ptr<URLFetcherImplFactory> factory_; |
319 | 320 |
320 DISALLOW_COPY_AND_ASSIGN(SyncTest); | 321 DISALLOW_COPY_AND_ASSIGN(SyncTest); |
321 }; | 322 }; |
322 | 323 |
323 DISABLE_RUNNABLE_METHOD_REFCOUNT(SyncTest); | 324 DISABLE_RUNNABLE_METHOD_REFCOUNT(SyncTest); |
324 | 325 |
325 #endif // CHROME_BROWSER_SYNC_TEST_INTEGRATION_SYNC_TEST_H_ | 326 #endif // CHROME_BROWSER_SYNC_TEST_INTEGRATION_SYNC_TEST_H_ |
OLD | NEW |