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

Unified Diff: chrome/browser/extensions/extension_proxy_api.h

Issue 6598002: Make the ChromeNetworkDelegate use the ExtensionEventRouterForwarder (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 10 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/extension_proxy_api.h
diff --git a/chrome/browser/extensions/extension_proxy_api.h b/chrome/browser/extensions/extension_proxy_api.h
index cd21a00cdafbba94940e4567eb3ec8cc1d547885..fa01a859a910a07a60cd54808efc3d2ea52dfd22 100644
--- a/chrome/browser/extensions/extension_proxy_api.h
+++ b/chrome/browser/extensions/extension_proxy_api.h
@@ -13,7 +13,8 @@
#include "net/proxy/proxy_config.h"
class DictionaryValue;
-class ExtensionIOEventRouter;
+class ExtensionEventRouterForwarder;
+class Profile;
// This class observes proxy error events and routes them to the appropriate
// extensions listening to those events. All methods must be called on the IO
@@ -22,7 +23,8 @@ class ExtensionProxyEventRouter {
public:
static ExtensionProxyEventRouter* GetInstance();
- void OnProxyError(const ExtensionIOEventRouter* event_router,
+ void OnProxyError(ExtensionEventRouterForwarder* event_router,
+ Profile* profile,
int error_code);
private:

Powered by Google App Engine
This is Rietveld 408576698