forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnetwork_context_owner.cc
59 lines (47 loc) · 1.94 KB
/
network_context_owner.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ios/web/public/network_context_owner.h"
#include <memory>
#include "base/task/post_task.h"
#include "ios/web/public/web_task_traits.h"
#include "ios/web/public/web_thread.h"
#include "net/url_request/url_request_context_getter.h"
#include "net/url_request/url_request_context_getter_observer.h"
#include "services/network/network_context.h"
namespace web {
NetworkContextOwner::NetworkContextOwner(
net::URLRequestContextGetter* request_context,
network::mojom::NetworkContextPtr* network_context_client)
: request_context_(request_context) {
DCHECK_CURRENTLY_ON(WebThread::UI);
base::PostTaskWithTraits(
FROM_HERE, {web::WebThread::IO},
base::BindOnce(&NetworkContextOwner::InitializeOnIOThread,
// This is safe, since |this| will be deleted on the IO
// thread, which would have to happen afterwards.
base::Unretained(this),
mojo::MakeRequest(network_context_client)));
}
NetworkContextOwner::~NetworkContextOwner() {
DCHECK_CURRENTLY_ON(WebThread::IO);
if (request_context_)
request_context_->RemoveObserver(this);
}
void NetworkContextOwner::InitializeOnIOThread(
network::mojom::NetworkContextRequest network_context_request) {
DCHECK_CURRENTLY_ON(WebThread::IO);
DCHECK(!network_context_);
network_context_ = std::make_unique<network::NetworkContext>(
nullptr, std::move(network_context_request),
request_context_->GetURLRequestContext());
request_context_->AddObserver(this);
}
void NetworkContextOwner::OnContextShuttingDown() {
DCHECK_CURRENTLY_ON(WebThread::IO);
// Cancels any pending requests owned by the NetworkContext.
network_context_.reset();
request_context_->RemoveObserver(this);
request_context_ = nullptr;
}
} // namespace web