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
3 // found in the LICENSE file.
5 #ifndef COMPONENTS_CRONET_ANDROID_CRONET_URL_REQUEST_CONTEXT_ADAPTER_H_
6 #define COMPONENTS_CRONET_ANDROID_CRONET_URL_REQUEST_CONTEXT_ADAPTER_H_
10 #include "base/callback.h"
11 #include "base/macros.h"
12 #include "base/memory/ref_counted.h"
13 #include "base/memory/scoped_ptr.h"
14 #include "base/threading/thread.h"
15 #include "net/base/net_log.h"
16 #include "net/base/network_change_notifier.h"
19 class SingleThreadTaskRunner
;
24 class URLRequestContext
;
29 struct URLRequestContextConfig
;
31 // Adapter between Java CronetUrlRequestContext and net::URLRequestContext.
32 class CronetURLRequestContextAdapter
{
34 CronetURLRequestContextAdapter();
36 ~CronetURLRequestContextAdapter();
38 void Initialize(scoped_ptr
<URLRequestContextConfig
> config
,
39 const base::Closure
& java_init_network_thread
);
41 // Releases all resources for the request context and deletes the object.
42 // Blocks until network thread is destroyed after running all pending tasks.
45 net::URLRequestContext
* GetURLRequestContext();
47 scoped_refptr
<base::SingleThreadTaskRunner
> GetNetworkTaskRunner() const;
49 void StartNetLogToFile(const std::string
& file_name
);
54 // Network thread is owned by |this|, but is destroyed from java thread.
55 base::Thread
* network_thread_
;
56 // |net_log_logger_| and |context_| should only be accessed on network thread.
57 scoped_ptr
<net::NetLogLogger
> net_log_logger_
;
58 scoped_ptr
<net::URLRequestContext
> context_
;
60 // Initializes |context_| on the Network thread.
61 void InitializeOnNetworkThread(
62 scoped_ptr
<URLRequestContextConfig
> config
,
63 const base::Closure
& java_init_network_thread
);
64 void StartNetLogToFileOnNetworkThread(const std::string
& file_name
);
65 void StopNetLogOnNetworkThread();
67 DISALLOW_COPY_AND_ASSIGN(CronetURLRequestContextAdapter
);
72 #endif // COMPONENTS_CRONET_ANDROID_CRONET_URL_REQUEST_CONTEXT_ADAPTER_H_