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

Unified Diff: chrome/browser/chromeos/extensions/file_manager/private_api_misc.h

Issue 252653002: Rename (Chrome)SyncExtensionFunction::RunImpl to RunSync so that the RunImpl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/extensions/file_manager/private_api_misc.h
diff --git a/chrome/browser/chromeos/extensions/file_manager/private_api_misc.h b/chrome/browser/chromeos/extensions/file_manager/private_api_misc.h
index 583e143ebb583a848f57fa1be97af500b607f161..94830b794e042ea71b3820fd2449f547c85bc4c7 100644
--- a/chrome/browser/chromeos/extensions/file_manager/private_api_misc.h
+++ b/chrome/browser/chromeos/extensions/file_manager/private_api_misc.h
@@ -30,7 +30,7 @@ class FileBrowserPrivateLogoutUserForReauthenticationFunction
virtual ~FileBrowserPrivateLogoutUserForReauthenticationFunction() {}
// SyncExtensionFunction overrides.
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
// Implements the chrome.fileBrowserPrivate.getPreferences method.
@@ -44,7 +44,7 @@ class FileBrowserPrivateGetPreferencesFunction
protected:
virtual ~FileBrowserPrivateGetPreferencesFunction() {}
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
// Implements the chrome.fileBrowserPrivate.setPreferences method.
@@ -58,7 +58,7 @@ class FileBrowserPrivateSetPreferencesFunction
protected:
virtual ~FileBrowserPrivateSetPreferencesFunction() {}
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
// Implements the chrome.fileBrowserPrivate.zipSelection method.
@@ -76,7 +76,7 @@ class FileBrowserPrivateZipSelectionFunction
virtual ~FileBrowserPrivateZipSelectionFunction();
// AsyncExtensionFunction overrides.
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
// extensions::ZipFileCreator::Delegate overrides.
virtual void OnZipDone(bool success) OVERRIDE;
@@ -98,7 +98,7 @@ class FileBrowserPrivateZoomFunction : public ChromeSyncExtensionFunction {
virtual ~FileBrowserPrivateZoomFunction() {}
// AsyncExtensionFunction overrides.
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
// Implements the chrome.fileBrowserPrivate.installWebstoreItem method.
@@ -112,7 +112,7 @@ class FileBrowserPrivateInstallWebstoreItemFunction
virtual ~FileBrowserPrivateInstallWebstoreItemFunction() {}
// AsyncExtensionFunction overrides.
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
void OnInstallComplete(bool success, const std::string& error);
private:
@@ -129,7 +129,7 @@ class FileBrowserPrivateRequestWebStoreAccessTokenFunction
protected:
virtual ~FileBrowserPrivateRequestWebStoreAccessTokenFunction();
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
private:
scoped_ptr<google_apis::AuthServiceInterface> auth_service_;
@@ -149,7 +149,7 @@ class FileBrowserPrivateGetProfilesFunction
virtual ~FileBrowserPrivateGetProfilesFunction() {}
// AsyncExtensionFunction overrides.
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class FileBrowserPrivateVisitDesktopFunction
@@ -162,7 +162,7 @@ class FileBrowserPrivateVisitDesktopFunction
virtual ~FileBrowserPrivateVisitDesktopFunction() {}
// AsyncExtensionFunction overrides.
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698