summaryrefslogtreecommitdiffstats
path: root/chrome/browser/drive/dummy_drive_service.h
diff options
context:
space:
mode:
authorhidehiko@chromium.org <hidehiko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-16 10:41:44 +0000
committerhidehiko@chromium.org <hidehiko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-16 10:41:44 +0000
commit379c716afdaed5b11e9076d1fc3a09aaa935d667 (patch)
tree045cbf061194bffdc9fdcd3675ad26236575fc30 /chrome/browser/drive/dummy_drive_service.h
parentf4ef89c3a49e0e68773868b1dd404c6c3af22792 (diff)
downloadchromium_src-379c716afdaed5b11e9076d1fc3a09aaa935d667.zip
chromium_src-379c716afdaed5b11e9076d1fc3a09aaa935d667.tar.gz
chromium_src-379c716afdaed5b11e9076d1fc3a09aaa935d667.tar.bz2
Add placeholder MoveResource to DriveServiceInterface for Drive API v2 support.
We are going to support "move" operation in more straightforward way on Drive API v2. This is the placeholder of the implementation. BUG=241814 TEST=Ran unit_tests Review URL: https://chromiumcodereview.appspot.com/23190011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@217991 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/drive/dummy_drive_service.h')
-rw-r--r--chrome/browser/drive/dummy_drive_service.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/chrome/browser/drive/dummy_drive_service.h b/chrome/browser/drive/dummy_drive_service.h
index cb90bf1..c63becd 100644
--- a/chrome/browser/drive/dummy_drive_service.h
+++ b/chrome/browser/drive/dummy_drive_service.h
@@ -79,6 +79,11 @@ class DummyDriveService : public DriveServiceInterface {
const std::string& resource_id,
const std::string& new_title,
const google_apis::GetResourceEntryCallback& callback) OVERRIDE;
+ virtual google_apis::CancelCallback MoveResource(
+ const std::string& resource_id,
+ const std::string& parent_resource_id,
+ const std::string& new_title,
+ const google_apis::GetResourceEntryCallback& callback) OVERRIDE;
virtual google_apis::CancelCallback RenameResource(
const std::string& resource_id,
const std::string& new_title,