mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium version 74.0.3729.0 (#638880)
- Windows: 10.0.17763.0 SDK is now required. - Mac: 10.13 SDK is now required. - Removed CefRequestContext::ResolveHostCached which is no longer supported by Chromium.
This commit is contained in:
committed by
Marshall Greenblatt
parent
58e1149c71
commit
725ed88529
31
patch/patches/accessibility_win_939668.patch
Normal file
31
patch/patches/accessibility_win_939668.patch
Normal file
@@ -0,0 +1,31 @@
|
||||
diff --git content/browser/accessibility/accessibility_tree_formatter_win.cc content/browser/accessibility/accessibility_tree_formatter_win.cc
|
||||
index 59f85adf85c3..a60cb7aa874c 100644
|
||||
--- content/browser/accessibility/accessibility_tree_formatter_win.cc
|
||||
+++ content/browser/accessibility/accessibility_tree_formatter_win.cc
|
||||
@@ -35,7 +35,7 @@
|
||||
#include "ui/base/win/atl_module.h"
|
||||
#include "ui/gfx/win/hwnd_util.h"
|
||||
|
||||
-namespace {
|
||||
+namespace internal {
|
||||
|
||||
struct HwndWithProcId {
|
||||
HwndWithProcId(const base::ProcessId id) : pid(id), hwnd(nullptr) {}
|
||||
@@ -60,7 +60,7 @@ HWND GetHwndForProcess(base::ProcessId pid) {
|
||||
return hwnd_with_proc_id.hwnd;
|
||||
}
|
||||
|
||||
-} // namespace
|
||||
+} // namespace internal
|
||||
|
||||
namespace content {
|
||||
|
||||
@@ -354,7 +354,7 @@ std::unique_ptr<base::DictionaryValue>
|
||||
AccessibilityTreeFormatterWin::BuildAccessibilityTreeForProcess(
|
||||
base::ProcessId pid) {
|
||||
// Get HWND for process id.
|
||||
- HWND hwnd = GetHwndForProcess(pid);
|
||||
+ HWND hwnd = ::internal::GetHwndForProcess(pid);
|
||||
return BuildAccessibilityTreeForWindow(hwnd);
|
||||
}
|
||||
|
Reference in New Issue
Block a user