![electron-roller[bot]](/assets/img/avatar_default.png)
* chore: bump chromium in DEPS to 123.0.6265.0 * chore: bump chromium in DEPS to 123.0.6266.0 * chore: update feat_ensure_mas_builds_of_the_same_application_can_use_safestorage.patch Xref:5232280
reverts the revert *and* undoes the rewrites 😵 * chore: update chromium/disable_hidden.patch Xref:5148491
minor manual intervention * chore: update patches * chore: Rename mouse lock to pointer lock Xref:5148491
* refactor: fix use of newly-removed QuitCurrentWhenIdleClosureDeprecated() Xref:4710351
Xref: https://github.com/electron/electron/pull/26022 This usage was added in #26022 as part of Wayland support and some simple fiddles WfM with this patch on Wayland, but I'm unsure what to be testing for & would like a second opinion on this commit. * chore: bump chromium in DEPS to 123.0.6268.0 * chore: update patches * 5235021: WebUI: Migrate accessibility and bluetooth internals to WebUIConfig5235021
* address review comment for 5196547 See:5196547
Review comment: https://github.com/electron/electron/pull/41130#discussion_r1468973786 * 5075962: Introduce URLLoaderFactoryBuilder5075962
* chore: bump chromium in DEPS to 123.0.6270.0 * the missing semicolon strikes again * chore: update chromium patches * chore: update v8 patches * 5242326: Some followup cleanup to Fuchia files in chrome |5242326
* chore: bump chromium in DEPS to 123.0.6272.0 * chore: update patches * chore: update patch after rebase * 5247339: [Clipboard] Remove ClipboardContentType enum.5247339
* Reland: "Allow content shell to enable the built-in DNS resolver"5232354
* 5018206: [accessibility] Migrate to ScopedAccessibilityMode5018206
* 5246669: [Default Nav Transition]Add GetBackForwardTransitionAnimationManager on WebContentsView |5246669
* fix: move nut-js to optional spec deps (#41199) * chore: bump chromium in DEPS to 123.0.6265.0 * chore: bump chromium in DEPS to 123.0.6266.0 * chore: update feat_ensure_mas_builds_of_the_same_application_can_use_safestorage.patch Xref:5232280
reverts the revert *and* undoes the rewrites 😵 * chore: update chromium/disable_hidden.patch Xref:5148491
minor manual intervention * chore: update patches * chore: Rename mouse lock to pointer lock Xref:5148491
* refactor: fix use of newly-removed QuitCurrentWhenIdleClosureDeprecated() Xref:4710351
Xref: https://github.com/electron/electron/pull/26022 This usage was added in #26022 as part of Wayland support and some simple fiddles WfM with this patch on Wayland, but I'm unsure what to be testing for & would like a second opinion on this commit. * chore: bump chromium in DEPS to 123.0.6268.0 * chore: update patches * 5235021: WebUI: Migrate accessibility and bluetooth internals to WebUIConfig5235021
* address review comment for 5196547 See:5196547
Review comment: https://github.com/electron/electron/pull/41130#discussion_r1468973786 * 5075962: Introduce URLLoaderFactoryBuilder5075962
* chore: bump chromium in DEPS to 123.0.6270.0 * the missing semicolon strikes again * chore: update chromium patches * chore: update v8 patches * 5242326: Some followup cleanup to Fuchia files in chrome |5242326
* chore: bump chromium in DEPS to 123.0.6272.0 * chore: update patches * chore: update patch after rebase * 5247339: [Clipboard] Remove ClipboardContentType enum.5247339
* Reland: "Allow content shell to enable the built-in DNS resolver"5232354
* 5018206: [accessibility] Migrate to ScopedAccessibilityMode5018206
* 5246669: [Default Nav Transition]Add GetBackForwardTransitionAnimationManager on WebContentsView |5246669
* fix: typescript error for optional dependency (cherry picked from commit ea17105c8c01bd1f4c1df5e72190a687d92f93cc) --------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: Charles Kerr <charles@charleskerr.com> Co-authored-by: PatchUp <73610968+patchup[bot]@users.noreply.github.com> Co-authored-by: clavin <clavin@electronjs.org> Co-authored-by: VerteDinde <vertedinde@electronjs.org> Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org> Co-authored-by: Sam Maddock <smaddock@slack-corp.com>
38 lines
1.3 KiB
C++
38 lines
1.3 KiB
C++
// Copyright (c) 2020 Microsoft, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_UI_WEBUI_ACCESSIBILITY_UI_H_
|
|
#define ELECTRON_SHELL_BROWSER_UI_WEBUI_ACCESSIBILITY_UI_H_
|
|
|
|
#include "chrome/browser/ui/webui/accessibility/accessibility_ui.h"
|
|
#include "content/public/browser/web_ui_controller.h"
|
|
#include "content/public/browser/web_ui_data_source.h"
|
|
#include "content/public/browser/web_ui_message_handler.h"
|
|
|
|
// Controls the accessibility web UI page.
|
|
class ElectronAccessibilityUI : public content::WebUIController {
|
|
public:
|
|
explicit ElectronAccessibilityUI(content::WebUI* web_ui);
|
|
~ElectronAccessibilityUI() override;
|
|
};
|
|
|
|
// Manages messages sent from accessibility.js via json.
|
|
class ElectronAccessibilityUIMessageHandler
|
|
: public AccessibilityUIMessageHandler {
|
|
public:
|
|
ElectronAccessibilityUIMessageHandler();
|
|
|
|
// disable copy
|
|
ElectronAccessibilityUIMessageHandler(
|
|
const ElectronAccessibilityUIMessageHandler&) = delete;
|
|
ElectronAccessibilityUIMessageHandler& operator=(
|
|
const ElectronAccessibilityUIMessageHandler&) = delete;
|
|
|
|
void RegisterMessages() final;
|
|
|
|
private:
|
|
void RequestNativeUITree(const base::Value::List& args);
|
|
};
|
|
|
|
#endif // ELECTRON_SHELL_BROWSER_UI_WEBUI_ACCESSIBILITY_UI_H_
|