Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef NET_PROXY_PROXY_CONFIG_SERVICE_ANDROID_H_ | |
| 6 #define NET_PROXY_PROXY_CONFIG_SERVICE_ANDROID_H_ | |
| 7 #pragma once | |
| 8 | |
| 9 #include <string> | |
| 10 | |
| 11 #include "base/android/jni_android.h" | |
| 12 #include "base/basictypes.h" | |
| 13 #include "base/callback_forward.h" | |
| 14 #include "base/compiler_specific.h" | |
| 15 #include "base/memory/ref_counted.h" | |
| 16 #include "net/base/net_export.h" | |
| 17 #include "net/proxy/proxy_config_service.h" | |
| 18 | |
| 19 namespace base { | |
| 20 class SequencedTaskRunner; | |
| 21 } | |
| 22 | |
| 23 namespace net { | |
| 24 | |
| 25 class ProxyConfig; | |
| 26 | |
| 27 class NET_EXPORT ProxyConfigServiceAndroid : public ProxyConfigService { | |
| 28 public: | |
| 29 // Callback that returns the value of the property identified by the provided | |
| 30 // key. If it was not found, an empty string is returned. Note that this | |
| 31 // interface does not let you distinguish an empty property from a | |
| 32 // non-existing property. This callback is invoked on the JNI thread. | |
| 33 typedef base::Callback<std::string (const std::string& property)> | |
| 34 GetPropertyCallback; | |
| 35 | |
| 36 // Separate class whose instance is owned by the Delegate class implemented in | |
| 37 // the header. | |
|
Ryan Sleevi
2012/06/05 16:50:14
nit: "implemented in the header" ?
Philippe
2012/06/06 08:45:20
Oops, indeed :)
| |
| 38 class JNIDelegate { | |
| 39 public: | |
| 40 virtual ~JNIDelegate() {} | |
| 41 | |
| 42 // Called from Java (on JNI thread) to signal that the proxy settings have | |
| 43 // changed. | |
| 44 virtual void ProxySettingsChanged(JNIEnv*, jobject) = 0; | |
| 45 }; | |
| 46 | |
| 47 ProxyConfigServiceAndroid(base::SequencedTaskRunner* network_task_runner, | |
| 48 base::SequencedTaskRunner* jni_task_runner); | |
| 49 | |
| 50 virtual ~ProxyConfigServiceAndroid(); | |
| 51 | |
| 52 // Register JNI bindings. | |
| 53 static bool Register(JNIEnv* env); | |
| 54 | |
| 55 // ProxyConfigService: | |
| 56 // Called only on the network thread. | |
| 57 virtual void AddObserver(Observer* observer) OVERRIDE; | |
| 58 virtual void RemoveObserver(Observer* observer) OVERRIDE; | |
| 59 virtual ConfigAvailability GetLatestProxyConfig(ProxyConfig* config) OVERRIDE; | |
| 60 | |
| 61 private: | |
| 62 friend class ProxyConfigServiceAndroidTestBase; | |
| 63 class Delegate; | |
| 64 | |
| 65 | |
| 66 // For tests. | |
| 67 ProxyConfigServiceAndroid(base::SequencedTaskRunner* network_task_runner, | |
| 68 base::SequencedTaskRunner* jni_task_runner, | |
| 69 GetPropertyCallback get_property_callback); | |
| 70 | |
| 71 // For tests. | |
| 72 void ProxySettingsChanged(); | |
| 73 | |
| 74 scoped_refptr<Delegate> delegate_; | |
| 75 | |
| 76 DISALLOW_COPY_AND_ASSIGN(ProxyConfigServiceAndroid); | |
| 77 }; | |
| 78 | |
| 79 } // namespace net | |
| 80 | |
| 81 #endif // NET_PROXY_PROXY_CONFIG_SERVICE_ANDROID_H_ | |
| OLD | NEW |