Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(57)

Side by Side Diff: chrome/browser/sync_file_system/sync_file_system_test_util.cc

Issue 96413002: Move c/b/google_apis to google_apis/drive. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/run_loop.h" 7 #include "base/run_loop.h"
8 #include "chrome/browser/google_apis/gdata_errorcode.h"
9 #include "chrome/browser/sync_file_system/sync_status_code.h" 8 #include "chrome/browser/sync_file_system/sync_status_code.h"
10 #include "content/public/test/test_utils.h" 9 #include "content/public/test/test_utils.h"
10 #include "google_apis/drive/gdata_errorcode.h"
11 11
12 using content::BrowserThread; 12 using content::BrowserThread;
13 13
14 namespace sync_file_system { 14 namespace sync_file_system {
15 15
16 namespace drive_backend { 16 namespace drive_backend {
17 class MetadataDatabase; 17 class MetadataDatabase;
18 } // drive_backend 18 } // drive_backend
19 19
20 template <typename R> 20 template <typename R>
(...skipping 28 matching lines...) Expand all
49 template base::Callback<void(SyncStatusCode)> 49 template base::Callback<void(SyncStatusCode)>
50 AssignAndQuitCallback(base::RunLoop*, SyncStatusCode*); 50 AssignAndQuitCallback(base::RunLoop*, SyncStatusCode*);
51 51
52 #define INSTANTIATE_RECEIVER(type) \ 52 #define INSTANTIATE_RECEIVER(type) \
53 template base::Callback<void(type)> CreateResultReceiver(type*); 53 template base::Callback<void(type)> CreateResultReceiver(type*);
54 INSTANTIATE_RECEIVER(SyncStatusCode); 54 INSTANTIATE_RECEIVER(SyncStatusCode);
55 INSTANTIATE_RECEIVER(google_apis::GDataErrorCode); 55 INSTANTIATE_RECEIVER(google_apis::GDataErrorCode);
56 #undef INSTANTIATE_RECEIVER 56 #undef INSTANTIATE_RECEIVER
57 57
58 } // namespace sync_file_system 58 } // namespace sync_file_system
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698