mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-02-07 23:58:49 +01:00
- Simplify and document the relationship between the various context object types. See browser_context.h for a description of the new relationships. - cefclient: Add `request-context-per-browser` command-line flag for testing multiple CefRequestContext instances. - cefclient: Add a CefURLRequest example. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@2032 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
42 lines
1.4 KiB
C++
42 lines
1.4 KiB
C++
// Copyright (c) 2012 The Chromium Embedded Framework 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 "libcef/browser/url_request_context_getter_proxy.h"
|
|
#include "libcef/browser/thread_util.h"
|
|
#include "libcef/browser/url_request_context_getter.h"
|
|
#include "libcef/browser/url_request_context_proxy.h"
|
|
|
|
CefURLRequestContextGetterProxy::CefURLRequestContextGetterProxy(
|
|
CefRefPtr<CefRequestContextHandler> handler,
|
|
scoped_refptr<CefURLRequestContextGetterImpl> parent)
|
|
: handler_(handler),
|
|
parent_(parent) {
|
|
DCHECK(parent);
|
|
}
|
|
|
|
CefURLRequestContextGetterProxy::~CefURLRequestContextGetterProxy() {
|
|
CEF_REQUIRE_IOT();
|
|
}
|
|
|
|
net::URLRequestContext*
|
|
CefURLRequestContextGetterProxy::GetURLRequestContext() {
|
|
CEF_REQUIRE_IOT();
|
|
if (!context_proxy_) {
|
|
context_proxy_.reset(
|
|
new CefURLRequestContextProxy(static_cast<CefURLRequestContextImpl*>(
|
|
parent_->GetURLRequestContext()),
|
|
handler_));
|
|
}
|
|
return context_proxy_.get();
|
|
}
|
|
|
|
scoped_refptr<base::SingleThreadTaskRunner>
|
|
CefURLRequestContextGetterProxy::GetNetworkTaskRunner() const {
|
|
return parent_->GetNetworkTaskRunner();
|
|
}
|
|
|
|
net::HostResolver* CefURLRequestContextGetterProxy::GetHostResolver() const {
|
|
return parent_->GetHostResolver();
|
|
}
|