25 lines
843 B
Diff
25 lines
843 B
Diff
|
From: uazo <uazo@users.noreply.github.com>
|
||
|
Date: Wed, 28 Dec 2022 15:46:38 +0000
|
||
|
Subject: WIN enable pdf plugin
|
||
|
|
||
|
License: GPL-2.0-or-later - https://spdx.org/licenses/GPL-2.0-or-later.html
|
||
|
---
|
||
|
third_party/blink/renderer/core/frame/local_frame.cc | 2 ++
|
||
|
1 file changed, 2 insertions(+)
|
||
|
|
||
|
diff --git a/third_party/blink/renderer/core/frame/local_frame.cc b/third_party/blink/renderer/core/frame/local_frame.cc
|
||
|
--- a/third_party/blink/renderer/core/frame/local_frame.cc
|
||
|
+++ b/third_party/blink/renderer/core/frame/local_frame.cc
|
||
|
@@ -2054,7 +2054,9 @@ WebContentSettingsClient* LocalFrame::GetContentSettingsClient() {
|
||
|
}
|
||
|
|
||
|
PluginData* LocalFrame::GetPluginData() const {
|
||
|
+ if (!Loader().AllowPlugins())
|
||
|
return nullptr;
|
||
|
+ return GetPage()->GetPluginData();
|
||
|
}
|
||
|
|
||
|
void LocalFrame::SetAdTrackerForTesting(AdTracker* ad_tracker) {
|
||
|
--
|
||
|
2.25.1
|