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

Unified Diff: chrome/browser/google_apis/mock_drive_service.cc

Issue 11419248: google_apis: Remove resource_url from RemoveResourceFromDirectory (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
« no previous file with comments | « chrome/browser/google_apis/mock_drive_service.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/google_apis/mock_drive_service.cc
diff --git a/chrome/browser/google_apis/mock_drive_service.cc b/chrome/browser/google_apis/mock_drive_service.cc
index 4e9974e3ee97df513ccff9ac4a81c9174d67caee..ae20508ae8f198f45e307312dce2affd80f91155 100644
--- a/chrome/browser/google_apis/mock_drive_service.cc
+++ b/chrome/browser/google_apis/mock_drive_service.cc
@@ -39,7 +39,7 @@ MockDriveService::MockDriveService() {
ON_CALL(*this, AddResourceToDirectory(_, _, _))
.WillByDefault(
Invoke(this, &MockDriveService::AddResourceToDirectoryStub));
- ON_CALL(*this, RemoveResourceFromDirectory(_, _, _, _))
+ ON_CALL(*this, RemoveResourceFromDirectory(_, _, _))
.WillByDefault(
Invoke(this, &MockDriveService::RemoveResourceFromDirectoryStub));
ON_CALL(*this, AddNewDirectory(_, _, _))
@@ -146,7 +146,6 @@ void MockDriveService::AddResourceToDirectoryStub(
void MockDriveService::RemoveResourceFromDirectoryStub(
const GURL& parent_content_url,
- const GURL& resource_url,
const std::string& resource_id,
const EntryActionCallback& callback) {
base::MessageLoopProxy::current()->PostTask(
« no previous file with comments | « chrome/browser/google_apis/mock_drive_service.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698