| Index: chrome/browser/extensions/api/web_request/web_request_api.cc
|
| diff --git a/chrome/browser/extensions/api/web_request/web_request_api.cc b/chrome/browser/extensions/api/web_request/web_request_api.cc
|
| index 3ec13f6047fc1f291645a6a1735353eb1c08664b..3e235a2530c5c0bbed0bbc134e68abf2ccdf5a24 100644
|
| --- a/chrome/browser/extensions/api/web_request/web_request_api.cc
|
| +++ b/chrome/browser/extensions/api/web_request/web_request_api.cc
|
| @@ -2149,7 +2149,7 @@ void ClearCacheQuotaHeuristic::OnPageLoad(Bucket* bucket) {
|
| bucket->DeductToken();
|
| }
|
|
|
| -bool WebRequestAddEventListener::RunImpl() {
|
| +bool WebRequestInternalAddEventListenerFunction::RunImpl() {
|
| // Argument 0 is the callback, which we don't use here.
|
| ExtensionWebRequestEventRouter::RequestFilter filter;
|
| base::DictionaryValue* value = NULL;
|
| @@ -2229,7 +2229,7 @@ bool WebRequestAddEventListener::RunImpl() {
|
| return true;
|
| }
|
|
|
| -void WebRequestEventHandled::RespondWithError(
|
| +void WebRequestInternalEventHandledFunction::RespondWithError(
|
| const std::string& event_name,
|
| const std::string& sub_event_name,
|
| uint64 request_id,
|
| @@ -2245,7 +2245,7 @@ void WebRequestEventHandled::RespondWithError(
|
| response.release());
|
| }
|
|
|
| -bool WebRequestEventHandled::RunImpl() {
|
| +bool WebRequestInternalEventHandledFunction::RunImpl() {
|
| std::string event_name;
|
| EXTENSION_FUNCTION_VALIDATE(args_->GetString(0, &event_name));
|
|
|
|
|