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

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: 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..650ce0ace3c76f5f29d059effedc520e38a764f6 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.
eroman 2014/09/18 15:55:20 nit: pac --> PAC
xunjieli 2014/09/18 16:18:17 Done.
+ 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