mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
* chore: bump chromium in DEPS to 114.0.5696.0 * chore: update patches * chore: revert clang revert (cherry picked from commit 4c3ffa8001b5fdbfc99374bf77895d8d8e35ee31) * test: remove unneeded test for title on ses.setCertificateVerifyProc This test is unnecessary because all that really needs to be verified is that the request was rejected. * chore: Revert "Reland "[BRP] Enable clang plugin check for Linux"" * chore: bump chromium in DEPS to 114.0.5697.0 * chore: bump chromium in DEPS to 114.0.5698.0 * chore: update patches * chore: bump chromium in DEPS to 114.0.5700.0 * chore: update patches * chore: bump chromium in DEPS to 114.0.5702.0 * chore: bump chromium in DEPS to 114.0.5704.0 * chore: update patches * chore: bump chromium in DEPS to 114.0.5705.0 * 4368281: Add bottom-up CertVerifier change observer flow. | https://chromium-review.googlesource.com/c/chromium/src/+/4368281 * 4402277: Enable check_raw_ptr_fields for Linux | https://chromium-review.googlesource.com/c/chromium/src/+/4402277 * 4389621: [ChromeAppsDeprecation] Remove deprecated chrome apps from AppService | https://chromium-review.googlesource.com/c/chromium/src/+/4389621 * 4402191: Allow default initializing BrowserTaskTraits | https://chromium-review.googlesource.com/c/chromium/src/+/4402191 * chore: bump chromium in DEPS to 114.0.5708.0 * chore: remove incorrectly re-added clang patch * chore: update patches (clean sync) * ci: use newer clang for 32-bit Linux ARM Fixes crash on compiling skia/skia/SkPatchUtils.cpp * build: generate new libcxx filenames * 4409898: Update paper printable area in UpdatePrintSettings | https://chromium-review.googlesource.com/c/chromium/src/+/4409898 * chore: update sysroots.json Sysroot CL: https://chromium-review.googlesource.com/c/chromium/src/+/4383374 Chromium CL: 4246577: media/gpu: Add CQP AV1 VA-API video encoder | https://chromium-review.googlesource.com/c/chromium/src/+/4246577 * 4336198: [task] Move source location and use it in v8 platform | https://chromium-review.googlesource.com/c/v8/v8/+/4336198 --------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: PatchUp <73610968+patchup[bot]@users.noreply.github.com> Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org> Co-authored-by: VerteDinde <vertedinde@electronjs.org> Co-authored-by: VerteDinde <keeleymhammond@gmail.com> Co-authored-by: electron-patch-conflict-fixer[bot] <83340002+electron-patch-conflict-fixer[bot]@users.noreply.github.com>
89 lines
4.1 KiB
C++
89 lines
4.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_EXTENSIONS_API_MANAGEMENT_ELECTRON_MANAGEMENT_API_DELEGATE_H_
|
|
#define ELECTRON_SHELL_BROWSER_EXTENSIONS_API_MANAGEMENT_ELECTRON_MANAGEMENT_API_DELEGATE_H_
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
#include "base/task/cancelable_task_tracker.h"
|
|
#include "extensions/browser/api/management/management_api_delegate.h"
|
|
|
|
class ElectronManagementAPIDelegate : public extensions::ManagementAPIDelegate {
|
|
public:
|
|
ElectronManagementAPIDelegate();
|
|
~ElectronManagementAPIDelegate() override;
|
|
|
|
// ManagementAPIDelegate.
|
|
bool LaunchAppFunctionDelegate(
|
|
const extensions::Extension* extension,
|
|
content::BrowserContext* context) const override;
|
|
GURL GetFullLaunchURL(const extensions::Extension* extension) const override;
|
|
extensions::LaunchType GetLaunchType(
|
|
const extensions::ExtensionPrefs* prefs,
|
|
const extensions::Extension* extension) const override;
|
|
void GetPermissionWarningsByManifestFunctionDelegate(
|
|
extensions::ManagementGetPermissionWarningsByManifestFunction* function,
|
|
const std::string& manifest_str) const override;
|
|
std::unique_ptr<extensions::InstallPromptDelegate> SetEnabledFunctionDelegate(
|
|
content::WebContents* web_contents,
|
|
content::BrowserContext* browser_context,
|
|
const extensions::Extension* extension,
|
|
base::OnceCallback<void(bool)> callback) const override;
|
|
std::unique_ptr<extensions::UninstallDialogDelegate>
|
|
UninstallFunctionDelegate(
|
|
extensions::ManagementUninstallFunctionBase* function,
|
|
const extensions::Extension* target_extension,
|
|
bool show_programmatic_uninstall_ui) const override;
|
|
bool CreateAppShortcutFunctionDelegate(
|
|
extensions::ManagementCreateAppShortcutFunction* function,
|
|
const extensions::Extension* extension,
|
|
std::string* error) const override;
|
|
std::unique_ptr<extensions::AppForLinkDelegate>
|
|
GenerateAppForLinkFunctionDelegate(
|
|
extensions::ManagementGenerateAppForLinkFunction* function,
|
|
content::BrowserContext* context,
|
|
const std::string& title,
|
|
const GURL& launch_url) const override;
|
|
bool CanContextInstallWebApps(
|
|
content::BrowserContext* context) const override;
|
|
void InstallOrLaunchReplacementWebApp(
|
|
content::BrowserContext* context,
|
|
const GURL& web_app_url,
|
|
ManagementAPIDelegate::InstallOrLaunchWebAppCallback callback)
|
|
const override;
|
|
bool CanContextInstallAndroidApps(
|
|
content::BrowserContext* context) const override;
|
|
void CheckAndroidAppInstallStatus(
|
|
const std::string& package_name,
|
|
ManagementAPIDelegate::AndroidAppInstallStatusCallback callback)
|
|
const override;
|
|
void InstallReplacementAndroidApp(
|
|
const std::string& package_name,
|
|
ManagementAPIDelegate::InstallAndroidAppCallback callback) const override;
|
|
void EnableExtension(content::BrowserContext* context,
|
|
const std::string& extension_id) const override;
|
|
void DisableExtension(
|
|
content::BrowserContext* context,
|
|
const extensions::Extension* source_extension,
|
|
const std::string& extension_id,
|
|
extensions::disable_reason::DisableReason disable_reason) const override;
|
|
bool UninstallExtension(content::BrowserContext* context,
|
|
const std::string& transient_extension_id,
|
|
extensions::UninstallReason reason,
|
|
std::u16string* error) const override;
|
|
void SetLaunchType(content::BrowserContext* context,
|
|
const std::string& extension_id,
|
|
extensions::LaunchType launch_type) const override;
|
|
GURL GetIconURL(const extensions::Extension* extension,
|
|
int icon_size,
|
|
ExtensionIconSet::MatchType match,
|
|
bool grayscale) const override;
|
|
GURL GetEffectiveUpdateURL(const extensions::Extension& extension,
|
|
content::BrowserContext* context) const override;
|
|
};
|
|
|
|
#endif // ELECTRON_SHELL_BROWSER_EXTENSIONS_API_MANAGEMENT_ELECTRON_MANAGEMENT_API_DELEGATE_H_
|