| Index: chrome/browser/extensions/api/web_request/web_request_api.h
|
| diff --git a/chrome/browser/extensions/api/web_request/web_request_api.h b/chrome/browser/extensions/api/web_request/web_request_api.h
|
| index c3bf24c6d046339ef86be84a69462474b551c5a6..227d46b396918e4108837d8a4a24b0348af090ef 100644
|
| --- a/chrome/browser/extensions/api/web_request/web_request_api.h
|
| +++ b/chrome/browser/extensions/api/web_request/web_request_api.h
|
| @@ -467,25 +467,27 @@ class ExtensionWebRequestEventRouter
|
| DISALLOW_COPY_AND_ASSIGN(ExtensionWebRequestEventRouter);
|
| };
|
|
|
| -class WebRequestAddEventListener : public SyncIOThreadExtensionFunction {
|
| +class WebRequestInternalAddEventListenerFunction
|
| + : public SyncIOThreadExtensionFunction {
|
| public:
|
| DECLARE_EXTENSION_FUNCTION("webRequestInternal.addEventListener",
|
| WEBREQUESTINTERNAL_ADDEVENTLISTENER)
|
|
|
| protected:
|
| - virtual ~WebRequestAddEventListener() {}
|
| + virtual ~WebRequestInternalAddEventListenerFunction() {}
|
|
|
| // ExtensionFunction:
|
| virtual bool RunImpl() OVERRIDE;
|
| };
|
|
|
| -class WebRequestEventHandled : public SyncIOThreadExtensionFunction {
|
| +class WebRequestInternalEventHandledFunction
|
| + : public SyncIOThreadExtensionFunction {
|
| public:
|
| DECLARE_EXTENSION_FUNCTION("webRequestInternal.eventHandled",
|
| WEBREQUESTINTERNAL_EVENTHANDLED)
|
|
|
| protected:
|
| - virtual ~WebRequestEventHandled() {}
|
| + virtual ~WebRequestInternalEventHandledFunction() {}
|
|
|
| // Unblocks the network request and sets |error_| such that the developer
|
| // console will show the respective error message. Use this function to handle
|
|
|