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

Unified Diff: net/proxy/proxy_config_service_android.h

Issue 421493002: Use Android proxy's exclusion list to enable proxy bypass (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix some compile errors Created 6 years, 5 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: net/proxy/proxy_config_service_android.h
diff --git a/net/proxy/proxy_config_service_android.h b/net/proxy/proxy_config_service_android.h
index 949ec426ebcf0dfd9d4710db8f4a12f8bdddf4f6..4eb572e6ca25148c9844b3473f2ab097bd7543cd 100644
--- a/net/proxy/proxy_config_service_android.h
+++ b/net/proxy/proxy_config_service_android.h
@@ -41,7 +41,9 @@ class NET_EXPORT ProxyConfigServiceAndroid : public ProxyConfigService {
// Called from Java (on JNI thread) to signal that the proxy settings have
// changed. The string and int arguments (the host/port pair for the proxy)
// are either a host/port pair or ("", 0) to indicate "no proxy".
- virtual void ProxySettingsChangedTo(JNIEnv*, jobject, jstring, jint) = 0;
+ // The third parameter indicates the proxy exclusion list.
+ virtual void ProxySettingsChangedTo(
+ JNIEnv*, jobject, jstring, jint, jstring) = 0;
// Called from Java (on JNI thread) to signal that the proxy settings have
// changed. New proxy settings are fetched from the system property store.

Powered by Google App Engine
This is Rietveld 408576698