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

Unified Diff: chrome/common/extensions/docs/examples/extensions/proxy_configuration/proxy_error_handler.js

Issue 6992022: Move Proxy Settings API out of experimental (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed remainder of merge conflict. Fixes unit test Created 9 years, 7 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/common/extensions/docs/examples/extensions/proxy_configuration/proxy_error_handler.js
diff --git a/chrome/common/extensions/docs/examples/extensions/proxy_configuration/proxy_error_handler.js b/chrome/common/extensions/docs/examples/extensions/proxy_configuration/proxy_error_handler.js
index bf6d80ab6899daa768af48cc2aa7c80ed1cee8e9..375dc35078a97238cbf601ef56cced3b1db774eb 100644
--- a/chrome/common/extensions/docs/examples/extensions/proxy_configuration/proxy_error_handler.js
+++ b/chrome/common/extensions/docs/examples/extensions/proxy_configuration/proxy_error_handler.js
@@ -19,12 +19,10 @@
*/
function ProxyErrorHandler() {
// Handle proxy error events.
- chrome.experimental.proxy.onProxyError.addListener(
- this.handleError_.bind(this));
+ chrome.proxy.onProxyError.addListener(this.handleError_.bind(this));
// Handle message events from popup.
- chrome.extension.onRequest.addListener(
- this.handleOnRequest_.bind(this));
+ chrome.extension.onRequest.addListener(this.handleOnRequest_.bind(this));
};
///////////////////////////////////////////////////////////////////////////////

Powered by Google App Engine
This is Rietveld 408576698