mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2024-12-13 10:06:28 +01:00
b3a8da9b25
This is the first pass in removing direct dependencies on the Alloy runtime from code that can potentially be shared between runtimes. CefBrowserHost and CefRequestContext APIs (including CefCookieManager, CefURLRequest, etc.) are not yet implemented for the Chrome runtime. Assert early if these API methods are called while the Chrome runtime is enabled.
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 static_cast<CefBrowserContext*>(request_context->GetBrowserContext());
|
|
}
|
|
|
|
} // namespace
|
|
|
|
ChromeProfileManagerAlloy::ChromeProfileManagerAlloy()
|
|
: ProfileManager(base::FilePath()) {}
|
|
|
|
ChromeProfileManagerAlloy::~ChromeProfileManagerAlloy() {}
|
|
|
|
Profile* ChromeProfileManagerAlloy::GetProfile(
|
|
const base::FilePath& profile_dir) {
|
|
CefBrowserContext* browser_context =
|
|
CefBrowserContext::GetForCachePath(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;
|
|
}
|
|
|
|
bool ChromeProfileManagerAlloy::IsValidProfile(const void* profile) {
|
|
if (!profile)
|
|
return false;
|
|
return !!CefBrowserContext::GetForContext(
|
|
reinterpret_cast<content::BrowserContext*>(const_cast<void*>(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();
|
|
}
|