OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef COMPONENTS_CRONET_ANDROID_CRONET_URL_REQUEST_CONTEXT_ADAPTER_H_ | 5 #ifndef COMPONENTS_CRONET_ANDROID_CRONET_URL_REQUEST_CONTEXT_ADAPTER_H_ |
6 #define COMPONENTS_CRONET_ANDROID_CRONET_URL_REQUEST_CONTEXT_ADAPTER_H_ | 6 #define COMPONENTS_CRONET_ANDROID_CRONET_URL_REQUEST_CONTEXT_ADAPTER_H_ |
7 | 7 |
8 #include <jni.h> | 8 #include <jni.h> |
9 | 9 |
10 #include <queue> | 10 #include <queue> |
11 #include <string> | 11 #include <string> |
12 | 12 |
13 #include "base/android/scoped_java_ref.h" | 13 #include "base/android/scoped_java_ref.h" |
14 #include "base/callback.h" | 14 #include "base/callback.h" |
15 #include "base/macros.h" | 15 #include "base/macros.h" |
16 #include "base/memory/ref_counted.h" | 16 #include "base/memory/ref_counted.h" |
17 #include "base/memory/scoped_ptr.h" | 17 #include "base/memory/scoped_ptr.h" |
18 #include "base/threading/thread.h" | 18 #include "base/threading/thread.h" |
19 | 19 |
20 namespace base { | 20 namespace base { |
21 class SingleThreadTaskRunner; | 21 class SingleThreadTaskRunner; |
22 } // namespace base | 22 } // namespace base |
23 | 23 |
24 namespace net { | 24 namespace net { |
25 class WriteToFileNetLogObserver; | 25 class WriteToFileNetLogObserver; |
26 class URLRequestContext; | 26 class URLRequestContext; |
27 class ProxyConfigService; | 27 class ProxyConfigService; |
| 28 class SdchOwner; |
28 } // namespace net | 29 } // namespace net |
29 | 30 |
30 namespace cronet { | 31 namespace cronet { |
31 | 32 |
32 struct URLRequestContextConfig; | 33 struct URLRequestContextConfig; |
33 | 34 |
34 bool CronetUrlRequestContextAdapterRegisterJni(JNIEnv* env); | 35 bool CronetUrlRequestContextAdapterRegisterJni(JNIEnv* env); |
35 | 36 |
36 // Adapter between Java CronetUrlRequestContext and net::URLRequestContext. | 37 // Adapter between Java CronetUrlRequestContext and net::URLRequestContext. |
37 class CronetURLRequestContextAdapter { | 38 class CronetURLRequestContextAdapter { |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 | 85 |
85 void StopNetLogOnNetworkThread(); | 86 void StopNetLogOnNetworkThread(); |
86 | 87 |
87 // Network thread is owned by |this|, but is destroyed from java thread. | 88 // Network thread is owned by |this|, but is destroyed from java thread. |
88 base::Thread* network_thread_; | 89 base::Thread* network_thread_; |
89 // |write_to_file_observer_| and |context_| should only be accessed on | 90 // |write_to_file_observer_| and |context_| should only be accessed on |
90 // network thread. | 91 // network thread. |
91 scoped_ptr<net::WriteToFileNetLogObserver> write_to_file_observer_; | 92 scoped_ptr<net::WriteToFileNetLogObserver> write_to_file_observer_; |
92 scoped_ptr<net::URLRequestContext> context_; | 93 scoped_ptr<net::URLRequestContext> context_; |
93 scoped_ptr<net::ProxyConfigService> proxy_config_service_; | 94 scoped_ptr<net::ProxyConfigService> proxy_config_service_; |
| 95 scoped_ptr<net::SdchOwner> sdch_owner_; |
94 | 96 |
95 // Context config is only valid untng context is initialized. | 97 // Context config is only valid untng context is initialized. |
96 scoped_ptr<URLRequestContextConfig> context_config_; | 98 scoped_ptr<URLRequestContextConfig> context_config_; |
97 | 99 |
98 // A queue of tasks that need to be run after context has been initialized. | 100 // A queue of tasks that need to be run after context has been initialized. |
99 std::queue<base::Closure> tasks_waiting_for_context_; | 101 std::queue<base::Closure> tasks_waiting_for_context_; |
100 bool is_context_initialized_; | 102 bool is_context_initialized_; |
101 int default_load_flags_; | 103 int default_load_flags_; |
102 | 104 |
103 DISALLOW_COPY_AND_ASSIGN(CronetURLRequestContextAdapter); | 105 DISALLOW_COPY_AND_ASSIGN(CronetURLRequestContextAdapter); |
104 }; | 106 }; |
105 | 107 |
106 } // namespace cronet | 108 } // namespace cronet |
107 | 109 |
108 #endif // COMPONENTS_CRONET_ANDROID_CRONET_URL_REQUEST_CONTEXT_ADAPTER_H_ | 110 #endif // COMPONENTS_CRONET_ANDROID_CRONET_URL_REQUEST_CONTEXT_ADAPTER_H_ |
OLD | NEW |