| Index: chrome/browser/extensions/api/omnibox/omnibox_api.cc
|
| diff --git a/chrome/browser/extensions/api/omnibox/omnibox_api.cc b/chrome/browser/extensions/api/omnibox/omnibox_api.cc
|
| index 5d23e5f8c220266cc44c8449a48f1e924e48d31b..8464ff0f25e7be13a72e3cafcdf513245a20f178 100644
|
| --- a/chrome/browser/extensions/api/omnibox/omnibox_api.cc
|
| +++ b/chrome/browser/extensions/api/omnibox/omnibox_api.cc
|
| @@ -284,7 +284,7 @@ void BrowserContextKeyedAPIFactory<OmniboxAPI>::DeclareFactoryDependencies() {
|
| DependsOn(TemplateURLServiceFactory::GetInstance());
|
| }
|
|
|
| -bool OmniboxSendSuggestionsFunction::RunImpl() {
|
| +bool OmniboxSendSuggestionsFunction::RunSync() {
|
| scoped_ptr<SendSuggestions::Params> params(
|
| SendSuggestions::Params::Create(*args_));
|
| EXTENSION_FUNCTION_VALIDATE(params);
|
| @@ -297,7 +297,7 @@ bool OmniboxSendSuggestionsFunction::RunImpl() {
|
| return true;
|
| }
|
|
|
| -bool OmniboxSetDefaultSuggestionFunction::RunImpl() {
|
| +bool OmniboxSetDefaultSuggestionFunction::RunSync() {
|
| scoped_ptr<SetDefaultSuggestion::Params> params(
|
| SetDefaultSuggestion::Params::Create(*args_));
|
| EXTENSION_FUNCTION_VALIDATE(params);
|
|
|