| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "net/proxy/proxy_config_service_android.h" | 5 #include "net/proxy/proxy_config_service_android.h" |
| 6 | 6 |
| 7 #include <sys/system_properties.h> | 7 #include <sys/system_properties.h> |
| 8 | 8 |
| 9 #include "base/android/context_utils.h" |
| 9 #include "base/android/jni_array.h" | 10 #include "base/android/jni_array.h" |
| 10 #include "base/android/jni_string.h" | 11 #include "base/android/jni_string.h" |
| 11 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 12 #include "base/bind.h" | 13 #include "base/bind.h" |
| 13 #include "base/callback.h" | 14 #include "base/callback.h" |
| 14 #include "base/compiler_specific.h" | 15 #include "base/compiler_specific.h" |
| 15 #include "base/location.h" | 16 #include "base/location.h" |
| 16 #include "base/logging.h" | 17 #include "base/logging.h" |
| 17 #include "base/memory/ref_counted.h" | 18 #include "base/memory/ref_counted.h" |
| 18 #include "base/observer_list.h" | 19 #include "base/observer_list.h" |
| (...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 403 network_task_runner, jni_task_runner, get_property_callback)) { | 404 network_task_runner, jni_task_runner, get_property_callback)) { |
| 404 delegate_->SetupJNI(); | 405 delegate_->SetupJNI(); |
| 405 delegate_->FetchInitialConfig(); | 406 delegate_->FetchInitialConfig(); |
| 406 } | 407 } |
| 407 | 408 |
| 408 void ProxyConfigServiceAndroid::ProxySettingsChanged() { | 409 void ProxyConfigServiceAndroid::ProxySettingsChanged() { |
| 409 delegate_->ProxySettingsChanged(); | 410 delegate_->ProxySettingsChanged(); |
| 410 } | 411 } |
| 411 | 412 |
| 412 } // namespace net | 413 } // namespace net |
| OLD | NEW |