mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2024-12-14 02:24:03 +01:00
7a2ce64096
- 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
102 lines
2.9 KiB
C++
102 lines
2.9 KiB
C++
// Copyright (c) 2013 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/request_context_impl.h"
|
|
#include "libcef/browser/browser_context_impl.h"
|
|
#include "libcef/browser/browser_context_proxy.h"
|
|
#include "libcef/browser/content_browser_client.h"
|
|
#include "libcef/browser/context.h"
|
|
#include "libcef/browser/thread_util.h"
|
|
#include "base/atomic_sequence_num.h"
|
|
#include "base/logging.h"
|
|
|
|
namespace {
|
|
|
|
base::StaticAtomicSequenceNumber g_next_id;
|
|
|
|
} // namespace
|
|
|
|
// Static functions
|
|
|
|
CefRefPtr<CefRequestContext> CefRequestContext::GetGlobalContext() {
|
|
// Verify that the context is in a valid state.
|
|
if (!CONTEXT_STATE_VALID()) {
|
|
NOTREACHED() << "context not valid";
|
|
return NULL;
|
|
}
|
|
|
|
return new CefRequestContextImpl(
|
|
CefContentBrowserClient::Get()->browser_context().get());
|
|
}
|
|
|
|
CefRefPtr<CefRequestContext> CefRequestContext::CreateContext(
|
|
CefRefPtr<CefRequestContextHandler> handler) {
|
|
// Verify that the context is in a valid state.
|
|
if (!CONTEXT_STATE_VALID()) {
|
|
NOTREACHED() << "context not valid";
|
|
return NULL;
|
|
}
|
|
|
|
return new CefRequestContextImpl(handler);
|
|
}
|
|
|
|
// CefBrowserContextImpl
|
|
|
|
CefRequestContextImpl::CefRequestContextImpl(
|
|
scoped_refptr<CefBrowserContext> browser_context)
|
|
: browser_context_(browser_context),
|
|
unique_id_(0) {
|
|
DCHECK(browser_context.get());
|
|
if (!IsGlobal()) {
|
|
CEF_REQUIRE_UIT();
|
|
scoped_refptr<CefBrowserContextProxy> proxy =
|
|
static_cast<CefBrowserContextProxy*>(browser_context.get());
|
|
handler_ = proxy->handler();
|
|
}
|
|
}
|
|
|
|
CefRequestContextImpl::CefRequestContextImpl(
|
|
CefRefPtr<CefRequestContextHandler> handler)
|
|
: handler_(handler),
|
|
unique_id_(g_next_id.GetNext()) {
|
|
}
|
|
|
|
CefRequestContextImpl::~CefRequestContextImpl() {
|
|
}
|
|
|
|
scoped_refptr<CefBrowserContext>
|
|
CefRequestContextImpl::GetOrCreateBrowserContext() {
|
|
CEF_REQUIRE_UIT();
|
|
if (!browser_context_) {
|
|
browser_context_ = new CefBrowserContextProxy(
|
|
handler_, CefContentBrowserClient::Get()->browser_context());
|
|
}
|
|
return browser_context_;
|
|
}
|
|
|
|
bool CefRequestContextImpl::IsSame(CefRefPtr<CefRequestContext> other) {
|
|
CefRequestContextImpl* impl =
|
|
static_cast<CefRequestContextImpl*>(other.get());
|
|
if (!impl)
|
|
return false;
|
|
|
|
// Compare CefBrowserContext points if one has been associated.
|
|
if (browser_context_ && impl->browser_context_)
|
|
return (browser_context_ == impl->browser_context_);
|
|
else if (browser_context_ || impl->browser_context_)
|
|
return false;
|
|
|
|
// Otherwise compare unique IDs.
|
|
return (unique_id_ == impl->unique_id_);
|
|
}
|
|
|
|
bool CefRequestContextImpl::IsGlobal() {
|
|
return (browser_context_ ==
|
|
CefContentBrowserClient::Get()->browser_context());
|
|
}
|
|
|
|
CefRefPtr<CefRequestContextHandler> CefRequestContextImpl::GetHandler() {
|
|
return handler_;
|
|
}
|