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

Unified Diff: extensions/browser/api/storage/storage_api.h

Issue 257333002: Drive extension functions from ExtensionFunction::Run. The (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: appshell 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: extensions/browser/api/storage/storage_api.h
diff --git a/extensions/browser/api/storage/storage_api.h b/extensions/browser/api/storage/storage_api.h
index 9f1091c6870e4c68be0e59d57dde8e0548796570..b4b97da6289bed4714507c0e1f2a5a76059d7eb1 100644
--- a/extensions/browser/api/storage/storage_api.h
+++ b/extensions/browser/api/storage/storage_api.h
@@ -22,7 +22,7 @@ class SettingsFunction : public UIThreadExtensionFunction {
// ExtensionFunction:
virtual bool ShouldSkipQuotaLimiting() const OVERRIDE;
- virtual ResponseAction RunImplTypesafe() OVERRIDE;
+ virtual ResponseAction Run() OVERRIDE;
// Extension settings function implementations should do their work here.
// The StorageFrontend makes sure this is posted to the appropriate thread.
@@ -48,7 +48,7 @@ class SettingsFunction : public UIThreadExtensionFunction {
ValueStore* storage);
private:
- // Called via PostTask from RunImplTypesafe. Calls RunWithStorage and then
+ // Called via PostTask from Run. Calls RunWithStorage and then
// SendResponse with its success value.
void AsyncRunWithStorage(ValueStore* storage);

Powered by Google App Engine
This is Rietveld 408576698