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 #include "net/sdch/sdch_owner.h" | |
19 | 20 |
20 namespace base { | 21 namespace base { |
21 class SingleThreadTaskRunner; | 22 class SingleThreadTaskRunner; |
22 } // namespace base | 23 } // namespace base |
23 | 24 |
24 namespace net { | 25 namespace net { |
25 class NetLogLogger; | 26 class NetLogLogger; |
26 class URLRequestContext; | 27 class URLRequestContext; |
27 class ProxyConfigService; | 28 class ProxyConfigService; |
28 } // namespace net | 29 } // namespace net |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
83 void StartNetLogToFileOnNetworkThread(const std::string& file_name); | 84 void StartNetLogToFileOnNetworkThread(const std::string& file_name); |
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 // |net_log_logger_| and |context_| should only be accessed on network thread. | 90 // |net_log_logger_| and |context_| should only be accessed on network thread. |
90 scoped_ptr<net::NetLogLogger> net_log_logger_; | 91 scoped_ptr<net::NetLogLogger> net_log_logger_; |
91 scoped_ptr<net::URLRequestContext> context_; | 92 scoped_ptr<net::URLRequestContext> context_; |
92 scoped_ptr<net::ProxyConfigService> proxy_config_service_; | 93 scoped_ptr<net::ProxyConfigService> proxy_config_service_; |
94 scoped_ptr<net::SdchOwner> sdch_owner_; | |
mef
2015/04/16 16:04:19
can we forward-declare it here, in header file? Se
xunjieli
2015/04/16 19:36:57
Done.
| |
93 | 95 |
94 // Context config is only valid untng context is initialized. | 96 // Context config is only valid untng context is initialized. |
95 scoped_ptr<URLRequestContextConfig> context_config_; | 97 scoped_ptr<URLRequestContextConfig> context_config_; |
96 | 98 |
97 // A queue of tasks that need to be run after context has been initialized. | 99 // A queue of tasks that need to be run after context has been initialized. |
98 std::queue<base::Closure> tasks_waiting_for_context_; | 100 std::queue<base::Closure> tasks_waiting_for_context_; |
99 bool is_context_initialized_; | 101 bool is_context_initialized_; |
100 int default_load_flags_; | 102 int default_load_flags_; |
101 | 103 |
102 DISALLOW_COPY_AND_ASSIGN(CronetURLRequestContextAdapter); | 104 DISALLOW_COPY_AND_ASSIGN(CronetURLRequestContextAdapter); |
103 }; | 105 }; |
104 | 106 |
105 } // namespace cronet | 107 } // namespace cronet |
106 | 108 |
107 #endif // COMPONENTS_CRONET_ANDROID_CRONET_URL_REQUEST_CONTEXT_ADAPTER_H_ | 109 #endif // COMPONENTS_CRONET_ANDROID_CRONET_URL_REQUEST_CONTEXT_ADAPTER_H_ |
OLD | NEW |