Chromium Code Reviews| 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. |