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

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 #7) 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 a57527c02fc24d35cbcfea8722a917ed14641016..cfd29b7530b0be834f7fd9908ef28931c06ee354 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();
@@ -604,7 +604,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();
@@ -713,7 +713,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