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

Unified Diff: net/proxy/proxy_config_service_android.h

Issue 573013002: Detect whether a PAC url is present on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changed pac to uppercase Created 6 years, 3 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 7033e9d1e9792a7327036cdbafab895404c7c988..ee54b940d3cb2b27c49dd8b8e9433f7364ef29c1 100644
--- a/net/proxy/proxy_config_service_android.h
+++ b/net/proxy/proxy_config_service_android.h
@@ -41,7 +41,12 @@ 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 argument indicates the PAC url.
+ 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.
« no previous file with comments | « net/android/java/src/org/chromium/net/ProxyChangeListener.java ('k') | net/proxy/proxy_config_service_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698