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

Unified Diff: chrome/browser/chromeos/extensions/file_browser_private_api.h

Issue 11414152: Drive: Rename GData to Drive in extension JS API (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: review fix (comment #2) 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
Index: chrome/browser/chromeos/extensions/file_browser_private_api.h
diff --git a/chrome/browser/chromeos/extensions/file_browser_private_api.h b/chrome/browser/chromeos/extensions/file_browser_private_api.h
index b633e1e2242355262dc38b7e8b5bd3cee6d2deb3..3e5b0a5cb603dc84c8a13b6eb3c21decc668974d 100644
--- a/chrome/browser/chromeos/extensions/file_browser_private_api.h
+++ b/chrome/browser/chromeos/extensions/file_browser_private_api.h
@@ -496,7 +496,7 @@ class FileDialogStringsFunction : public SyncExtensionFunction {
// (drive::DriveFileError) for that entry in the returned list.
class GetDriveFilePropertiesFunction : public FileBrowserFunction {
public:
- DECLARE_EXTENSION_FUNCTION_NAME("fileBrowserPrivate.getGDataFileProperties");
+ DECLARE_EXTENSION_FUNCTION_NAME("fileBrowserPrivate.getDriveFileProperties");
GetDriveFilePropertiesFunction();
@@ -546,7 +546,7 @@ class GetDriveFilePropertiesFunction : public FileBrowserFunction {
// returned list.
class PinDriveFileFunction : public GetDriveFilePropertiesFunction {
public:
- DECLARE_EXTENSION_FUNCTION_NAME("fileBrowserPrivate.pinGDataFile");
+ DECLARE_EXTENSION_FUNCTION_NAME("fileBrowserPrivate.pinDriveFile");
PinDriveFileFunction();
@@ -606,7 +606,7 @@ class GetFileLocationsFunction : public FileBrowserFunction {
// TODO(satorux): Should we propagate error types to the JavasScript layer?
class GetDriveFilesFunction : public FileBrowserFunction {
public:
- DECLARE_EXTENSION_FUNCTION_NAME("fileBrowserPrivate.getGDataFiles");
+ DECLARE_EXTENSION_FUNCTION_NAME("fileBrowserPrivate.getDriveFiles");
GetDriveFilesFunction();
@@ -715,7 +715,7 @@ class SetPreferencesFunction : public SyncExtensionFunction {
class SearchDriveFunction : public AsyncExtensionFunction {
public:
- DECLARE_EXTENSION_FUNCTION_NAME("fileBrowserPrivate.searchGData");
+ DECLARE_EXTENSION_FUNCTION_NAME("fileBrowserPrivate.searchDrive");
SearchDriveFunction();

Powered by Google App Engine
This is Rietveld 408576698