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

Unified Diff: chrome/browser/google_apis/test_util.h

Issue 11418127: Pass calls to GetDocuments through the scheduler (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 8 years, 1 month 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/google_apis/test_util.h
diff --git a/chrome/browser/google_apis/test_util.h b/chrome/browser/google_apis/test_util.h
index 758b6cceb07e99a1d1a76c9ed35e97de194a92ce..66d382c53d9e32311c8640ba1b9b32644e88c56e 100644
--- a/chrome/browser/google_apis/test_util.h
+++ b/chrome/browser/google_apis/test_util.h
@@ -5,11 +5,10 @@
#ifndef CHROME_BROWSER_GOOGLE_APIS_TEST_UTIL_H_
#define CHROME_BROWSER_GOOGLE_APIS_TEST_UTIL_H_
-#include "chrome/browser/google_apis/test_util.h"
satorux1 2012/11/28 23:59:47 wow, that was recursive!
-
#include <string>
#include "base/memory/scoped_ptr.h"
+#include "chrome/browser/google_apis/gdata_errorcode.h"
class FilePath;
@@ -37,6 +36,12 @@ FilePath GetTestFilePath(const std::string& relative_path);
// chrome/test/data/chromeos.
scoped_ptr<base::Value> LoadJSONFile(const std::string& relative_path);
+// Copies the results from GetDataCallback.
+void CopyResultsFromGetDataCallback(GDataErrorCode* error_out,
+ scoped_ptr<base::Value>* value_out,
+ GDataErrorCode error_in,
+ scoped_ptr<base::Value> value_in);
+
} // namespace test_util
} // namespace google_apis

Powered by Google App Engine
This is Rietveld 408576698