forked from ungoogled-software/ungoogled-chromium-macos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update ungoogled-chromium to 80.0.3987.87-1
- Loading branch information
Showing
16 changed files
with
87 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ author: Michael Gilbert <[email protected]> | |
|
||
--- a/BUILD.gn | ||
+++ b/BUILD.gn | ||
@@ -67,8 +67,6 @@ group("gn_all") { | ||
@@ -68,8 +68,6 @@ group("gn_all") { | ||
"//base:base_perftests", | ||
"//base:base_unittests", | ||
"//base/util:base_util_unittests", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ author: Michael Gilbert <[email protected]> | |
|
||
--- a/build/config/compiler/BUILD.gn | ||
+++ b/build/config/compiler/BUILD.gn | ||
@@ -401,7 +401,7 @@ config("compiler") { | ||
@@ -406,7 +406,7 @@ config("compiler") { | ||
if (!using_sanitizer) { | ||
ldflags += [ | ||
"-Wl,-z,defs", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,19 +3,18 @@ author: Michael Gilbert <[email protected]> | |
|
||
--- a/content/shell/BUILD.gn | ||
+++ b/content/shell/BUILD.gn | ||
@@ -297,11 +297,7 @@ jumbo_static_library("content_shell_lib" | ||
@@ -300,10 +300,7 @@ jumbo_static_library("content_shell_lib" | ||
"//content/public/common", | ||
"//content/public/common:service_names", | ||
"//content/shell/test_runner:test_runner", | ||
- "//content/test:content_test_mojo_bindings", | ||
- "//content/test:mojo_web_test_bindings", | ||
- "//content/test:mojo_web_test_old_names_bindings", | ||
"//content/test:test_support", | ||
- "//content/test:web_test_support", | ||
"//device/bluetooth", | ||
"//device/bluetooth:fake_bluetooth", | ||
"//device/bluetooth:mocks", | ||
@@ -361,7 +357,7 @@ jumbo_static_library("content_shell_lib" | ||
@@ -363,7 +360,7 @@ jumbo_static_library("content_shell_lib" | ||
} | ||
|
||
# Annoyingly, this target and web_test_support have circular includes. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,30 +15,3 @@ author: Michael Gilbert <[email protected]> | |
+} | ||
|
||
#endif // CHROME_BROWSER_APPS_PLATFORM_APPS_API_SYNC_FILE_SYSTEM_EXTENSION_SYNC_EVENT_OBSERVER_H_ | ||
--- a/chrome/browser/ui/views/confirm_bubble_views.cc | ||
+++ b/chrome/browser/ui/views/confirm_bubble_views.cc | ||
@@ -25,6 +25,7 @@ | ||
#include "ui/views/style/typography.h" | ||
#include "ui/views/widget/widget.h" | ||
|
||
+namespace confirm_bubble_views { | ||
namespace { | ||
|
||
std::unique_ptr<views::View> CreateExtraView(views::ButtonListener* listener) { | ||
@@ -36,6 +37,7 @@ std::unique_ptr<views::View> CreateExtra | ||
} | ||
|
||
} // namespace | ||
+} // namespace confirm_bubble_views | ||
|
||
ConfirmBubbleViews::ConfirmBubbleViews( | ||
std::unique_ptr<ConfirmBubbleModel> model) | ||
@@ -46,7 +48,7 @@ ConfirmBubbleViews::ConfirmBubbleViews( | ||
DialogDelegate::set_button_label( | ||
ui::DIALOG_BUTTON_CANCEL, | ||
model_->GetButtonLabel(ConfirmBubbleModel::BUTTON_CANCEL)); | ||
- help_button_ = DialogDelegate::SetExtraView(::CreateExtraView(this)); | ||
+ help_button_ = DialogDelegate::SetExtraView(confirm_bubble_views::CreateExtraView(this)); | ||
|
||
set_margins(ChromeLayoutProvider::Get()->GetDialogInsetsForContentType( | ||
views::TEXT, views::TEXT)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ author: Michael Gilbert <[email protected]> | |
filter_->CopyMem16x16(mb_src, stride_src, mb_dst, stride_dst); | ||
--- a/gpu/command_buffer/service/gles2_cmd_decoder.cc | ||
+++ b/gpu/command_buffer/service/gles2_cmd_decoder.cc | ||
@@ -16052,7 +16052,8 @@ bool GLES2DecoderImpl::GetUniformSetup(G | ||
@@ -16381,7 +16381,8 @@ bool GLES2DecoderImpl::GetUniformSetup(G | ||
} | ||
uint32_t checked_size = 0; | ||
if (!SizedResult<T>::ComputeSize(num_elements).AssignIfValid(&checked_size)) { | ||
|
@@ -26,7 +26,7 @@ author: Michael Gilbert <[email protected]> | |
if (!result) { | ||
--- a/content/browser/renderer_host/render_widget_host_view_base.cc | ||
+++ b/content/browser/renderer_host/render_widget_host_view_base.cc | ||
@@ -308,15 +308,16 @@ void RenderWidgetHostViewBase::SetBackgr | ||
@@ -307,15 +307,16 @@ void RenderWidgetHostViewBase::SetBackgr | ||
if (default_background_color_ == color) | ||
return; | ||
|
||
|
@@ -51,10 +51,10 @@ author: Michael Gilbert <[email protected]> | |
} | ||
--- a/third_party/blink/renderer/core/html/parser/html_tree_builder.cc | ||
+++ b/third_party/blink/renderer/core/html/parser/html_tree_builder.cc | ||
@@ -939,7 +939,7 @@ void HTMLTreeBuilder::ProcessStartTagFor | ||
@@ -978,7 +978,7 @@ void HTMLTreeBuilder::ProcessStartTagFor | ||
} | ||
if (token->GetName() == kColTag) { | ||
ProcessFakeStartTag(kColgroupTag); | ||
if (token->GetName() == html_names::kColTag) { | ||
ProcessFakeStartTag(html_names::kColgroupTag); | ||
- DCHECK(kInColumnGroupMode); | ||
+ DCHECK_EQ(GetInsertionMode(), kInColumnGroupMode); | ||
ProcessStartTag(token); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ author: Michael Gilbert <[email protected]> | |
} // namespace IPC | ||
--- a/content/browser/web_package/signed_exchange_handler.cc | ||
+++ b/content/browser/web_package/signed_exchange_handler.cc | ||
@@ -611,7 +611,7 @@ void SignedExchangeHandler::OnVerifyCert | ||
@@ -607,7 +607,7 @@ void SignedExchangeHandler::OnVerifyCert | ||
error_message = base::StringPrintf( | ||
"CT verification failed. result: %s, policy compliance: %d", | ||
net::ErrorToShortString(error_code).c_str(), | ||
|
@@ -25,7 +25,7 @@ author: Michael Gilbert <[email protected]> | |
error_message = | ||
--- a/third_party/blink/renderer/modules/cache_storage/inspector_cache_storage_agent.cc | ||
+++ b/third_party/blink/renderer/modules/cache_storage/inspector_cache_storage_agent.cc | ||
@@ -450,7 +450,7 @@ class CachedResponseFileReaderLoaderClie | ||
@@ -453,7 +453,7 @@ class CachedResponseFileReaderLoaderClie | ||
|
||
void DidFail(FileErrorCode error) override { | ||
callback_->sendFailure(ProtocolResponse::Error(String::Format( | ||
|
@@ -34,14 +34,3 @@ author: Michael Gilbert <[email protected]> | |
dispose(); | ||
} | ||
|
||
--- a/net/proxy_resolution/proxy_resolver_v8_tracing.cc | ||
+++ b/net/proxy_resolution/proxy_resolver_v8_tracing.cc | ||
@@ -837,7 +837,7 @@ void Job::SaveDnsToLocalCache(const std: | ||
|
||
std::string Job::MakeDnsCacheKey(const std::string& host, | ||
ProxyResolveDnsOperation op) { | ||
- return base::StringPrintf("%d:%s", op, host.c_str()); | ||
+ return base::StringPrintf("%d:%s", static_cast<int>(op), host.c_str()); | ||
} | ||
|
||
void Job::HandleAlertOrError(bool is_alert, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- a/third_party/node/node.py | ||
+++ b/third_party/node/node.py | ||
@@ -10,11 +10,12 @@ import sys | ||
|
||
|
||
def GetBinaryPath(): | ||
- return os_path.join(os_path.dirname(__file__), *{ | ||
- 'Darwin': ('mac', 'node-darwin-x64', 'bin', 'node'), | ||
- 'Linux': ('linux', 'node-linux-x64', 'bin', 'node'), | ||
- 'Windows': ('win', 'node.exe'), | ||
- }[platform.system()]) | ||
+ return subprocess.check_output(["which", "node"]).strip() | ||
+# return os_path.join(os_path.dirname(__file__), *{ | ||
+# 'Darwin': ('mac', 'node-darwin-x64', 'bin', 'node'), | ||
+# 'Linux': ('linux', 'node-linux-x64', 'bin', 'node'), | ||
+# 'Windows': ('win', 'node.exe'), | ||
+# }[platform.system()]) | ||
|
||
|
||
def RunNode(cmd_parts, stdout=None): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.