mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2024-12-11 09:08:06 +01:00
dca0435d2f
Split the Alloy runtime into bootstrap and style components. Support creation of Alloy style browsers and windows with the Chrome runtime. Chrome runtime (`--enable-chrome-runtime`) + Alloy style (`--use-alloy-style`) supports Views (`--use-views`), native parent (`--use-native`) and windowless rendering (`--off-screen-rendering-enabled`). Print preview is supported in all cases except with windowless rendering on all platforms and native parent on MacOS. It is disabled by default with Alloy style for legacy compatibility. Where supported it can be enabled or disabled globally using `--[enable|disable]-print-preview` or configured on a per-RequestContext basis using the `printing.print_preview_disabled` preference. It also behaves as expected when triggered via the PDF viewer print button. Chrome runtime + Alloy style behavior differs from Alloy runtime in the following significant ways: - Supports Chrome error pages by default. - DevTools popups are Chrome style only (cannot be windowless). - The Alloy extension API will not supported. Chrome runtime + Alloy style passes all expected Alloy ceftests except the following: - `DisplayTest.AutoResize` (Alloy extension API not supported) - `DownloadTest.*` (Download API not yet supported) - `ExtensionTest.*` (Alloy extension API not supported) This change also adds Chrome runtime support for CefContextMenuHandler::RunContextMenu (see #3293). This change also explicitly blocks (and doesn't retry) FrameAttached requests from PDF viewer and print preview excluded frames (see #3664). Known issues specific to Chrome runtime + Alloy style: - DevTools popup with windowless rendering doesn't load successfully. Use windowed rendering or remote debugging as a workaround. - Chrome style Window with Alloy style BrowserView (`--use-alloy-style --use-chrome-style-window`) does not show Chrome theme changes. To test: - Run `ceftests --enable-chrome-runtime --use-alloy-style [--use-chrome-style-window] [--use-views|--use-native] --gtest_filter=...` - Run `cefclient --enable-chrome-runtime --use-alloy-style [--use-chrome-style-window] [--use-views|--use-native|--off-screen-rendering-enabled]` - Run `cefsimple --enable-chrome-runtime --use-alloy-style [--use-views]`
101 lines
3.7 KiB
C++
101 lines
3.7 KiB
C++
// Copyright 2024 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.
|
|
|
|
#ifndef CEF_LIBCEF_BROWSER_VIEWS_WIDGET_IMPL_H_
|
|
#define CEF_LIBCEF_BROWSER_VIEWS_WIDGET_IMPL_H_
|
|
#pragma once
|
|
|
|
#include <map>
|
|
|
|
#include "libcef/browser/views/color_provider_tracker.h"
|
|
#include "libcef/browser/views/widget.h"
|
|
|
|
#include "base/memory/weak_ptr.h"
|
|
#include "chrome/browser/themes/theme_service_observer.h"
|
|
#include "ui/views/widget/widget.h"
|
|
|
|
class CefWindowView;
|
|
class Profile;
|
|
|
|
// Widget specialization to implement theme support for the Alloy runtime. The
|
|
// global NativeTheme (native/OS theme) will be used unless this Widget contains
|
|
// a BrowserView, in which case a Chrome theme associated with the BrowserView's
|
|
// Profile will be used.
|
|
//
|
|
// Theme support works as follows:
|
|
// - OnNativeThemeUpdated is called when the NativeTheme associated with this
|
|
// Widget changes. For example, when switching the OS appearance between light
|
|
// and dark mode.
|
|
// - OnColorProviderCacheResetMissed is called if some other NativeTheme not
|
|
// associated with this Widget changes and we need to reapply global color
|
|
// overrides (see CefColorProviderTracker for details).
|
|
// - OnThemeChanged is called when the client changes the Chrome theme
|
|
// explicitly by calling CefRequestContext::SetChromeColorScheme.
|
|
// - GetThemeProvider, GetCustomTheme and GetColorProviderKey return objects
|
|
// that are used internally to apply the current theme.
|
|
//
|
|
// Callers should use view_util methods (e.g. GetColor, ShouldUseDarkTheme, etc)
|
|
// instead of calling theme-related Widget methods directly.
|
|
class CefWidgetImpl : public views::Widget,
|
|
public CefWidget,
|
|
public CefColorProviderTracker::Observer,
|
|
public ThemeServiceObserver {
|
|
public:
|
|
explicit CefWidgetImpl(CefWindowView* window_view);
|
|
~CefWidgetImpl() override;
|
|
|
|
CefWidgetImpl(const CefWidgetImpl&) = delete;
|
|
CefWidgetImpl& operator=(const CefWidgetImpl&) = delete;
|
|
|
|
// CefWidget methods:
|
|
bool IsAlloyStyle() const override { return true; }
|
|
views::Widget* GetWidget() override { return this; }
|
|
const views::Widget* GetWidget() const override { return this; }
|
|
void Initialized() override;
|
|
bool IsInitialized() const override { return initialized_; }
|
|
void AddAssociatedProfile(Profile* profile) override;
|
|
void RemoveAssociatedProfile(Profile* profile) override;
|
|
Profile* GetThemeProfile() const override;
|
|
|
|
// views::Widget methods:
|
|
const ui::ThemeProvider* GetThemeProvider() const override;
|
|
ui::ColorProviderKey::ThemeInitializerSupplier* GetCustomTheme()
|
|
const override;
|
|
|
|
// NativeWidgetDelegate methods:
|
|
void OnNativeWidgetDestroyed() override;
|
|
|
|
// ui::NativeThemeObserver methods:
|
|
void OnNativeThemeUpdated(ui::NativeTheme* observed_theme) override;
|
|
ui::ColorProviderKey GetColorProviderKey() const override;
|
|
|
|
// ThemeServiceObserver methods:
|
|
void OnThemeChanged() override;
|
|
|
|
private:
|
|
void NotifyThemeColorsChanged(bool chrome_theme, bool call_theme_changed);
|
|
|
|
// Select a native theme that is appropriate for the current context. This is
|
|
// currently only needed for Linux to switch between the regular NativeTheme
|
|
// and the GTK NativeTheme instance.
|
|
void SelectNativeTheme();
|
|
|
|
// CefColorProviderTracker::Observer methods:
|
|
void OnColorProviderCacheResetMissed() override;
|
|
|
|
CefWindowView* window_view_;
|
|
|
|
bool initialized_ = false;
|
|
|
|
// Map of Profile* to count.
|
|
using ProfileMap = std::map<Profile*, size_t>;
|
|
ProfileMap associated_profiles_;
|
|
|
|
CefColorProviderTracker color_provider_tracker_{this};
|
|
|
|
base::WeakPtrFactory<CefWidgetImpl> weak_ptr_factory_{this};
|
|
};
|
|
|
|
#endif // CEF_LIBCEF_BROWSER_VIEWS_WIDGET_IMPL_H_
|