mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2024-12-13 10:06:28 +01:00
48fc0bd220
Existing CefBrowserContext functionality is now split between CefBrowserContext and AlloyBrowserContext. Runtime implementations of CefBrowserContext will provide access to the content::BrowserContext and Profile types via different inheritance paths. For example, the Alloy runtime uses ChromeProfileAlloy and the Chrome runtime uses ProfileImpl. This change also renames CefResourceContext to CefIOThreadState to more accurately represent its purpose as it no longer needs to extend content::ResourceContext.
66 lines
2.6 KiB
C++
66 lines
2.6 KiB
C++
// Copyright (c) 2016 The Chromium Embedded Framework Authors.
|
|
// Portions copyright (c) 2012 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 "libcef/browser/alloy/chrome_profile_manager_alloy.h"
|
|
|
|
#include "libcef/browser/browser_context.h"
|
|
#include "libcef/browser/request_context_impl.h"
|
|
#include "libcef/common/app_manager.h"
|
|
|
|
namespace {
|
|
|
|
// Return the active browser context. This is primarily called from Chrome code
|
|
// that handles WebUI views and wishes to associate the view's data with a
|
|
// particular context (profile). Chrome stores multiple profiles in sub-
|
|
// directories of |user_data_dir| and then uses ProfileManager to track which
|
|
// profile (sub-directory name) was last active.
|
|
//
|
|
// TODO(cef): To most closely match Chrome behavior this should return the
|
|
// context for the currently active browser (e.g. the browser with input focus).
|
|
// Return the main context for now since we don't currently have a good way to
|
|
// determine that.
|
|
CefBrowserContext* GetActiveBrowserContext() {
|
|
auto request_context = static_cast<CefRequestContextImpl*>(
|
|
CefAppManager::Get()->GetGlobalRequestContext().get());
|
|
return request_context->GetBrowserContext();
|
|
}
|
|
|
|
} // namespace
|
|
|
|
ChromeProfileManagerAlloy::ChromeProfileManagerAlloy()
|
|
: ProfileManager(base::FilePath()) {}
|
|
|
|
ChromeProfileManagerAlloy::~ChromeProfileManagerAlloy() {}
|
|
|
|
Profile* ChromeProfileManagerAlloy::GetProfile(
|
|
const base::FilePath& profile_dir) {
|
|
CefBrowserContext* browser_context =
|
|
CefBrowserContext::FromCachePath(profile_dir);
|
|
if (!browser_context) {
|
|
// ProfileManager makes assumptions about profile directory paths that do
|
|
// not match CEF usage. For example, the default Chrome profile name is
|
|
// "Default" so it will append that sub-directory name to an empty
|
|
// |user_data_dir| value and then call this method. Use the active context
|
|
// in cases such as this where we don't understand what ProfileManager is
|
|
// asking for.
|
|
browser_context = GetActiveBrowserContext();
|
|
}
|
|
return browser_context->AsProfile();
|
|
}
|
|
|
|
bool ChromeProfileManagerAlloy::IsValidProfile(const void* profile) {
|
|
if (!profile)
|
|
return false;
|
|
return !!CefBrowserContext::FromBrowserContext(
|
|
static_cast<const content::BrowserContext*>(profile));
|
|
}
|
|
|
|
Profile* ChromeProfileManagerAlloy::GetLastUsedProfile(
|
|
const base::FilePath& user_data_dir) {
|
|
// Override this method to avoid having to register prefs::kProfileLastUsed,
|
|
// usage of which doesn't make sense for CEF.
|
|
return GetActiveBrowserContext()->AsProfile();
|
|
}
|