mirror of
https://github.com/electron/electron.git
synced 2026-05-02 03:00:22 -04:00
Removes unreferenced code found via codebase sweep. Each category below may
indicate a missing feature rather than truly-unused code — see PR description.
Dead class (1):
ElectronNavigationUIData — never instantiated; ElectronBrowserClient uses
upstream ExtensionNavigationUIData directly
Unused methods (7):
CertificateManagerModel: ImportUserCert, ImportCACerts, ImportServerCert,
Delete, is_user_db_available (only PKCS12 path is used)
AutofillDriverFactory::AddDriverForFrame + CreationCallback type
ZoomLevelDelegate::SetDefaultZoomLevelPref
gtk_util: GetOpenLabel, GetSaveLabel
Unused members (2):
AutofillPopup::selected_index_
InspectableWebContents::synced_setting_names_
Declaration fixes (6):
menu_util.h: BuildMenuItemWithImage signature corrected (GtkWidget* → gfx::Image&)
win_frame_view.h: GetReadableFeatureColor (impl removed, decl left behind)
frameless_view.h: friend class NativeWindowsViews (typo, class does not exist)
Forward decls: WebDialogHelper, ChromeContentRendererClient,
ElectronNativeWindowObserver, ValueStoreFactory
65 lines
2.1 KiB
C++
65 lines
2.1 KiB
C++
// Copyright 2014 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.
|
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_ZOOM_LEVEL_DELEGATE_H_
|
|
#define ELECTRON_SHELL_BROWSER_ZOOM_LEVEL_DELEGATE_H_
|
|
|
|
#include <string>
|
|
|
|
#include "base/callback_list.h"
|
|
#include "base/memory/raw_ptr.h"
|
|
#include "base/values.h"
|
|
#include "content/public/browser/host_zoom_map.h"
|
|
#include "content/public/browser/zoom_level_delegate.h"
|
|
|
|
namespace base {
|
|
class FilePath;
|
|
} // namespace base
|
|
|
|
class PrefService;
|
|
class PrefRegistrySimple;
|
|
|
|
namespace electron {
|
|
|
|
// A class to manage per-partition default and per-host zoom levels.
|
|
// It implements an interface between the content/ zoom
|
|
// levels in HostZoomMap and preference system. All changes
|
|
// to the per-partition default zoom levels flow through this
|
|
// class. Any changes to per-host levels are updated when HostZoomMap calls
|
|
// OnZoomLevelChanged.
|
|
class ZoomLevelDelegate : public content::ZoomLevelDelegate {
|
|
public:
|
|
static void RegisterPrefs(PrefRegistrySimple* pref_registry);
|
|
|
|
ZoomLevelDelegate(PrefService* pref_service,
|
|
const base::FilePath& partition_path);
|
|
~ZoomLevelDelegate() override;
|
|
|
|
// disable copy
|
|
ZoomLevelDelegate(const ZoomLevelDelegate&) = delete;
|
|
ZoomLevelDelegate& operator=(const ZoomLevelDelegate&) = delete;
|
|
|
|
double GetDefaultZoomLevelPref() const;
|
|
|
|
// content::ZoomLevelDelegate:
|
|
void InitHostZoomMap(content::HostZoomMap* host_zoom_map) override;
|
|
|
|
private:
|
|
void ExtractPerHostZoomLevels(const base::DictValue& host_zoom_dictionary);
|
|
|
|
// This is a callback function that receives notifications from HostZoomMap
|
|
// when per-host zoom levels change. It is used to update the per-host
|
|
// zoom levels (if any) managed by this class (for its associated partition).
|
|
void OnZoomLevelChanged(const content::HostZoomMap::ZoomLevelChange& change);
|
|
|
|
raw_ptr<PrefService> pref_service_;
|
|
raw_ptr<content::HostZoomMap> host_zoom_map_ = nullptr;
|
|
base::CallbackListSubscription zoom_subscription_;
|
|
std::string partition_key_;
|
|
};
|
|
|
|
} // namespace electron
|
|
|
|
#endif // ELECTRON_SHELL_BROWSER_ZOOM_LEVEL_DELEGATE_H_
|