| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "chrome/browser/sync_file_system/sync_file_system_test_util.h" | 5 #include "chrome/browser/sync_file_system/sync_file_system_test_util.h" |
| 6 | 6 |
| 7 #include "base/memory/scoped_ptr.h" | 7 #include "base/memory/scoped_ptr.h" |
| 8 #include "base/run_loop.h" | 8 #include "base/run_loop.h" |
| 9 #include "chrome/browser/sync_file_system/remote_file_sync_service.h" | 9 #include "chrome/browser/sync_file_system/remote_file_sync_service.h" |
| 10 #include "chrome/browser/sync_file_system/sync_status_code.h" | 10 #include "chrome/browser/sync_file_system/sync_status_code.h" |
| 11 #include "content/public/test/test_utils.h" | 11 #include "content/public/test/test_utils.h" |
| 12 #include "google_apis/drive/gdata_errorcode.h" | 12 #include "google_apis/drive/drive_api_error_codes.h" |
| 13 | 13 |
| 14 using content::BrowserThread; | 14 using content::BrowserThread; |
| 15 | 15 |
| 16 namespace sync_file_system { | 16 namespace sync_file_system { |
| 17 | 17 |
| 18 namespace drive_backend { | 18 namespace drive_backend { |
| 19 class MetadataDatabase; | 19 class MetadataDatabase; |
| 20 } // drive_backend | 20 } // drive_backend |
| 21 | 21 |
| 22 template <typename R> | 22 template <typename R> |
| (...skipping 24 matching lines...) Expand all Loading... |
| 47 base::Owned(new bool(false)), arg_out); | 47 base::Owned(new bool(false)), arg_out); |
| 48 } | 48 } |
| 49 | 49 |
| 50 // Instantiate versions we know callers will need. | 50 // Instantiate versions we know callers will need. |
| 51 template base::Callback<void(SyncStatusCode)> | 51 template base::Callback<void(SyncStatusCode)> |
| 52 AssignAndQuitCallback(base::RunLoop*, SyncStatusCode*); | 52 AssignAndQuitCallback(base::RunLoop*, SyncStatusCode*); |
| 53 | 53 |
| 54 #define INSTANTIATE_RECEIVER(type) \ | 54 #define INSTANTIATE_RECEIVER(type) \ |
| 55 template base::Callback<void(type)> CreateResultReceiver(type*); | 55 template base::Callback<void(type)> CreateResultReceiver(type*); |
| 56 INSTANTIATE_RECEIVER(SyncStatusCode); | 56 INSTANTIATE_RECEIVER(SyncStatusCode); |
| 57 INSTANTIATE_RECEIVER(google_apis::GDataErrorCode); | 57 INSTANTIATE_RECEIVER(google_apis::DriveApiErrorCode); |
| 58 INSTANTIATE_RECEIVER(scoped_ptr<RemoteFileSyncService::OriginStatusMap>); | 58 INSTANTIATE_RECEIVER(scoped_ptr<RemoteFileSyncService::OriginStatusMap>); |
| 59 #undef INSTANTIATE_RECEIVER | 59 #undef INSTANTIATE_RECEIVER |
| 60 | 60 |
| 61 } // namespace sync_file_system | 61 } // namespace sync_file_system |
| OLD | NEW |