| 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());
|
|
|
|
|