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

Side by Side Diff: chrome/browser/chromeos/drive/job_list.h

Issue 449763002: Remove DriveServiceInterface::RenameResource (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/chromeos/drive/job_list.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_CHROMEOS_DRIVE_JOB_LIST_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_DRIVE_JOB_LIST_H_
6 #define CHROME_BROWSER_CHROMEOS_DRIVE_JOB_LIST_H_ 6 #define CHROME_BROWSER_CHROMEOS_DRIVE_JOB_LIST_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 10 matching lines...) Expand all
21 TYPE_GET_RESOURCE_LIST_IN_DIRECTORY, 21 TYPE_GET_RESOURCE_LIST_IN_DIRECTORY,
22 TYPE_SEARCH, 22 TYPE_SEARCH,
23 TYPE_GET_CHANGE_LIST, 23 TYPE_GET_CHANGE_LIST,
24 TYPE_GET_REMAINING_CHANGE_LIST, 24 TYPE_GET_REMAINING_CHANGE_LIST,
25 TYPE_GET_REMAINING_FILE_LIST, 25 TYPE_GET_REMAINING_FILE_LIST,
26 TYPE_GET_RESOURCE_ENTRY, 26 TYPE_GET_RESOURCE_ENTRY,
27 TYPE_GET_SHARE_URL, 27 TYPE_GET_SHARE_URL,
28 TYPE_TRASH_RESOURCE, 28 TYPE_TRASH_RESOURCE,
29 TYPE_COPY_RESOURCE, 29 TYPE_COPY_RESOURCE,
30 TYPE_UPDATE_RESOURCE, 30 TYPE_UPDATE_RESOURCE,
31 TYPE_RENAME_RESOURCE,
32 TYPE_ADD_RESOURCE_TO_DIRECTORY, 31 TYPE_ADD_RESOURCE_TO_DIRECTORY,
33 TYPE_REMOVE_RESOURCE_FROM_DIRECTORY, 32 TYPE_REMOVE_RESOURCE_FROM_DIRECTORY,
34 TYPE_ADD_NEW_DIRECTORY, 33 TYPE_ADD_NEW_DIRECTORY,
35 TYPE_DOWNLOAD_FILE, 34 TYPE_DOWNLOAD_FILE,
36 TYPE_UPLOAD_NEW_FILE, 35 TYPE_UPLOAD_NEW_FILE,
37 TYPE_UPLOAD_EXISTING_FILE, 36 TYPE_UPLOAD_EXISTING_FILE,
38 TYPE_CREATE_FILE, 37 TYPE_CREATE_FILE,
39 TYPE_ADD_PERMISSION, 38 TYPE_ADD_PERMISSION,
40 }; 39 };
41 40
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 // Cancels the job. 131 // Cancels the job.
133 virtual void CancelJob(JobID job_id) = 0; 132 virtual void CancelJob(JobID job_id) = 0;
134 133
135 // Cancels all the jobs. 134 // Cancels all the jobs.
136 virtual void CancelAllJobs() = 0; 135 virtual void CancelAllJobs() = 0;
137 }; 136 };
138 137
139 } // namespace drive 138 } // namespace drive
140 139
141 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_JOB_LIST_H_ 140 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_JOB_LIST_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/drive/job_list.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698