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

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

Issue 10855034: Drive: Remove gdata_params.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review (#16) fix & rebase Created 8 years, 4 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_documents_service_browsertest.cc
diff --git a/chrome/browser/chromeos/gdata/gdata_documents_service_browsertest.cc b/chrome/browser/chromeos/gdata/gdata_documents_service_browsertest.cc
index f0b0d4277745b39a1bfe14964d216ba12beca79b..7338e91f16abc95efea565e6bca67f9f3ef37efe 100644
--- a/chrome/browser/chromeos/gdata/gdata_documents_service_browsertest.cc
+++ b/chrome/browser/chromeos/gdata/gdata_documents_service_browsertest.cc
@@ -81,7 +81,7 @@ IN_PROC_BROWSER_TEST_F(GDataTest, Download) {
GetTestCachedFilePath(FilePath("cached_testfile.txt")),
gdata_test_server_.GetURL("files/chromeos/gdata/testfile.txt"),
base::Bind(&TestDownloadCallback, &result, &contents),
- gdata::GetDownloadDataCallback());
+ gdata::GetContentCallback());
content::RunMessageLoop();
EXPECT_EQ(gdata::HTTP_SUCCESS, result);
@@ -100,7 +100,7 @@ IN_PROC_BROWSER_TEST_F(GDataTest, NonExistingDownload) {
GetTestCachedFilePath(FilePath("cache_no-such-file.txt")),
gdata_test_server_.GetURL("files/chromeos/gdata/no-such-file.txt"),
base::Bind(&TestDownloadCallback, &result, &dummy_contents),
- gdata::GetDownloadDataCallback());
+ gdata::GetContentCallback());
content::RunMessageLoop();
EXPECT_EQ(gdata::HTTP_NOT_FOUND, result);
« no previous file with comments | « chrome/browser/chromeos/gdata/gdata_documents_service.cc ('k') | chrome/browser/chromeos/gdata/gdata_file_system.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698