summaryrefslogtreecommitdiffstats
path: root/android_webview/browser/aw_resource_context.cc
blob: 65682f54270345dfbb4516c055e382c89bec985f (plain)
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
// Copyright 2013 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 "android_webview/browser/aw_resource_context.h"

#include "content/public/browser/browser_thread.h"
#include "net/url_request/url_request_context.h"
#include "net/url_request/url_request_context_getter.h"

using content::BrowserThread;

namespace android_webview {

AwResourceContext::AwResourceContext(net::URLRequestContextGetter* getter)
    : getter_(getter) {
  DCHECK(getter_);
}

AwResourceContext::~AwResourceContext() {
}

void AwResourceContext::SetExtraHeaders(
    const GURL& url, const std::string& headers) {
  DCHECK_CURRENTLY_ON(BrowserThread::UI);
  if (!url.is_valid()) return;
  base::AutoLock scoped_lock(extra_headers_lock_);
  if (!headers.empty())
    extra_headers_[url.spec()] = headers;
  else
    extra_headers_.erase(url.spec());
}

std::string AwResourceContext::GetExtraHeaders(const GURL& url) {
  DCHECK_CURRENTLY_ON(BrowserThread::IO);
  if (!url.is_valid()) return std::string();
  base::AutoLock scoped_lock(extra_headers_lock_);
  std::map<std::string, std::string>::iterator iter =
      extra_headers_.find(url.spec());
  return iter != extra_headers_.end() ? iter->second : std::string();
}

net::HostResolver* AwResourceContext::GetHostResolver() {
  DCHECK_CURRENTLY_ON(BrowserThread::IO);
  return getter_->GetURLRequestContext()->host_resolver();
}

net::URLRequestContext* AwResourceContext::GetRequestContext() {
  DCHECK_CURRENTLY_ON(BrowserThread::IO);
  return getter_->GetURLRequestContext();
}

}  // namespace android_webview