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

Unified Diff: chrome/browser/chromeos/gdata/gdata_test_util.cc

Issue 10828083: gdata: Add GDataDirectoryService::AddEntryToDirectory() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 months 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/gdata/gdata_test_util.cc
diff --git a/chrome/browser/chromeos/gdata/gdata_test_util.cc b/chrome/browser/chromeos/gdata/gdata_test_util.cc
index 8eed511d0999fcc0e21b8db99126332cbab8883a..8bf03480a9d1a5614ad7872161fc78d5122388aa 100644
--- a/chrome/browser/chromeos/gdata/gdata_test_util.cc
+++ b/chrome/browser/chromeos/gdata/gdata_test_util.cc
@@ -63,5 +63,11 @@ bool CacheStatesEqual(const GDataCacheEntry& a, const GDataCacheEntry& b) {
a.is_persistent() == b.is_persistent());
}
+void CopyResultFromFileOperationCallback(GDataFileError* output,
+ GDataFileError error) {
+ DCHECK(output);
+ *output = error;
+}
+
} // namespace test_util
} // namespace gdata

Powered by Google App Engine
This is Rietveld 408576698