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

Unified Diff: chrome/browser/extensions/api/cookies/cookies_api.cc

Issue 257333002: Drive extension functions from ExtensionFunction::Run. The (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix comment 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/extensions/api/cookies/cookies_api.cc
diff --git a/chrome/browser/extensions/api/cookies/cookies_api.cc b/chrome/browser/extensions/api/cookies/cookies_api.cc
index 2de26a10370e594c970a91a46ec76b65c4bdfe4a..ed95507cadf7e08a944a6417b4beee0ed08c2914 100644
--- a/chrome/browser/extensions/api/cookies/cookies_api.cc
+++ b/chrome/browser/extensions/api/cookies/cookies_api.cc
@@ -205,7 +205,7 @@ CookiesGetFunction::CookiesGetFunction() {
CookiesGetFunction::~CookiesGetFunction() {
}
-bool CookiesGetFunction::RunImpl() {
+bool CookiesGetFunction::RunAsync() {
parsed_args_ = Get::Params::Create(*args_);
EXTENSION_FUNCTION_VALIDATE(parsed_args_.get());
@@ -278,7 +278,7 @@ CookiesGetAllFunction::CookiesGetAllFunction() {
CookiesGetAllFunction::~CookiesGetAllFunction() {
}
-bool CookiesGetAllFunction::RunImpl() {
+bool CookiesGetAllFunction::RunAsync() {
parsed_args_ = GetAll::Params::Create(*args_);
EXTENSION_FUNCTION_VALIDATE(parsed_args_.get());
@@ -343,7 +343,7 @@ CookiesSetFunction::CookiesSetFunction() : success_(false) {
CookiesSetFunction::~CookiesSetFunction() {
}
-bool CookiesSetFunction::RunImpl() {
+bool CookiesSetFunction::RunAsync() {
parsed_args_ = Set::Params::Create(*args_);
EXTENSION_FUNCTION_VALIDATE(parsed_args_.get());
@@ -458,7 +458,7 @@ CookiesRemoveFunction::CookiesRemoveFunction() {
CookiesRemoveFunction::~CookiesRemoveFunction() {
}
-bool CookiesRemoveFunction::RunImpl() {
+bool CookiesRemoveFunction::RunAsync() {
parsed_args_ = Remove::Params::Create(*args_);
EXTENSION_FUNCTION_VALIDATE(parsed_args_.get());
« no previous file with comments | « chrome/browser/extensions/api/cookies/cookies_api.h ('k') | chrome/browser/extensions/api/debugger/debugger_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698