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

Unified Diff: chrome/browser/chromeos/extensions/external_filesystem_apitest.cc

Issue 10274002: Add gdata content search (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: style nits Created 8 years, 8 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
« no previous file with comments | « no previous file | chrome/browser/chromeos/gdata/gdata_documents_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/extensions/external_filesystem_apitest.cc
diff --git a/chrome/browser/chromeos/extensions/external_filesystem_apitest.cc b/chrome/browser/chromeos/extensions/external_filesystem_apitest.cc
index da7ca727641d3fac4a3125c32bd0de53d1c7c012..80c7b645fd401d3dc63eba45becb52eda9a7b9ea 100644
--- a/chrome/browser/chromeos/extensions/external_filesystem_apitest.cc
+++ b/chrome/browser/chromeos/extensions/external_filesystem_apitest.cc
@@ -41,7 +41,7 @@ namespace {
const char kTestFileContents[] = "hello, world";
// Contains a folder entry for the folder 'Folder' that will be 'created'.
-const char kTestDirectory[] = "remote_file_system_apitest_folder_entry.json";
+const char kTestDirectory[] = "new_folder_entry.json";
// Contains a folder named Folder that has a file File.aBc inside of it.
const char kTestRootFeed[] = "remote_file_system_apitest_root_feed.json";
@@ -116,7 +116,7 @@ ACTION_P2(MockCreateDirectoryCallback, status, value) {
// Action used to set mock expecteations for GetDocuments.
ACTION_P2(MockGetDocumentsCallback, status, value) {
base::MessageLoopProxy::current()->PostTask(FROM_HERE,
- base::Bind(arg2, status, base::Passed(value)));
+ base::Bind(arg3, status, base::Passed(value)));
}
// Creates a cache representation of the test file with predetermined content.
@@ -267,7 +267,7 @@ IN_PROC_BROWSER_TEST_F(RemoteFileSystemExtensionApiTest, RemoteMountPoint) {
// Remote filesystem should first request root feed from gdata server.
scoped_ptr<base::Value> documents_value(LoadJSONFile(kTestRootFeed));
EXPECT_CALL(*mock_documents_service_,
- GetDocuments(_, _, _))
+ GetDocuments(_, _, _, _))
.WillOnce(MockGetDocumentsCallback(gdata::HTTP_SUCCESS,
&documents_value));
« no previous file with comments | « no previous file | chrome/browser/chromeos/gdata/gdata_documents_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698