Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
e
os
Browser
Commits
ee3e4bad
Commit
ee3e4bad
authored
Jul 29, 2021
by
Aayush Gupta
Browse files
Merge tag '91.0.4472.158' of
https://github.com/bromite/bromite
into backlog_3405-all-upstream
parents
74cd449d
71ec2c54
Pipeline
#127254
passed with stages
in 387 minutes and 9 seconds
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.md
View file @
ee3e4bad
# 91.0.4472.158
*
added x64 releases
# 91.0.4472.146
*
removed flags for device motion/orientation (fixes https://github.com/bromite/bromite/issues/1204)
*
prevent crash on download on API level 21 (fixes https://github.com/bromite/bromite/issues/1184)
...
...
build/RELEASE
View file @
ee3e4bad
91.0.4472.1
46
91.0.4472.1
58
build/patches/API-level-21-prevent-crash-on-download.patch
View file @
ee3e4bad
...
...
@@ -18,14 +18,14 @@ diff --git a/components/background_task_scheduler/internal/android/java/src/org/
persistableBundle.putString(key, null);
} else if (obj instanceof Boolean) {
- persistableBundle.putBoolean(key, (Boolean) obj);
+ if Build.VERSION.SDK_INT == Build.VERSION_CODES.LOLLIPOP {
+ if
(
Build.VERSION.SDK_INT == Build.VERSION_CODES.LOLLIPOP
)
{
+ failedKeys.add(key);
+ } else {
+ persistableBundle.putBoolean(key, (Boolean) obj);
+ }
} else if (obj instanceof boolean[]) {
- persistableBundle.putBooleanArray(key, (boolean[]) obj);
+ if Build.VERSION.SDK_INT == Build.VERSION_CODES.LOLLIPOP {
+ if
(
Build.VERSION.SDK_INT == Build.VERSION_CODES.LOLLIPOP
)
{
+ failedKeys.add(key);
+ } else {
+ persistableBundle.putBooleanArray(key, (boolean[]) obj);
...
...
build/patches/Add-vibration-flag.patch
View file @
ee3e4bad
...
...
@@ -6,15 +6,14 @@ Subject: Add vibration flag
chrome/browser/about_flags.cc | 4 ++++
chrome/browser/flag_descriptions.cc | 3 +++
chrome/browser/flag_descriptions.h | 3 +++
.../internal/BundleToPersistableBundleConverter.java | 4 ++--
content/child/runtime_features.cc | 1 +
content/public/common/content_features.cc | 3 +++
content/public/common/content_features.h | 2 ++
third_party/blink/public/platform/web_runtime_features.h | 1 +
.../blink/renderer/modules/vibration/vibration_controller.cc |
4 +
+++
.../blink/renderer/modules/vibration/vibration_controller.cc |
3
+++
.../blink/renderer/platform/exported/web_runtime_features.cc | 4 ++++
.../blink/renderer/platform/runtime_enabled_features.json5 | 4 ++++
1
1
files changed,
31
insertions(+)
, 2 deletions(-)
1
0
files changed,
28
insertions(+)
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
--- a/chrome/browser/about_flags.cc
...
...
@@ -56,25 +55,6 @@ diff --git a/chrome/browser/flag_descriptions.h b/chrome/browser/flag_descriptio
#if defined(OS_CHROMEOS)
extern const char kDeprecateLowUsageCodecsName[];
extern const char kDeprecateLowUsageCodecsDescription[];
diff --git a/components/background_task_scheduler/internal/android/java/src/org/chromium/components/background_task_scheduler/internal/BundleToPersistableBundleConverter.java b/components/background_task_scheduler/internal/android/java/src/org/chromium/components/background_task_scheduler/internal/BundleToPersistableBundleConverter.java
--- a/components/background_task_scheduler/internal/android/java/src/org/chromium/components/background_task_scheduler/internal/BundleToPersistableBundleConverter.java
+++ b/components/background_task_scheduler/internal/android/java/src/org/chromium/components/background_task_scheduler/internal/BundleToPersistableBundleConverter.java
@@ -85,13 +85,13 @@
class BundleToPersistableBundleConverter {
if (obj == null) {
persistableBundle.putString(key, null);
} else if (obj instanceof Boolean) {
- if Build.VERSION.SDK_INT == Build.VERSION_CODES.LOLLIPOP {
+ if (Build.VERSION.SDK_INT == Build.VERSION_CODES.LOLLIPOP) {
failedKeys.add(key);
} else {
persistableBundle.putBoolean(key, (Boolean) obj);
}
} else if (obj instanceof boolean[]) {
- if Build.VERSION.SDK_INT == Build.VERSION_CODES.LOLLIPOP {
+ if (Build.VERSION.SDK_INT == Build.VERSION_CODES.LOLLIPOP) {
failedKeys.add(key);
} else {
persistableBundle.putBooleanArray(key, (boolean[]) obj);
diff --git a/content/child/runtime_features.cc b/content/child/runtime_features.cc
--- a/content/child/runtime_features.cc
+++ b/content/child/runtime_features.cc
...
...
@@ -133,13 +113,12 @@ diff --git a/third_party/blink/renderer/modules/vibration/vibration_controller.c
// Maximum number of entries in a vibration pattern.
const unsigned kVibrationPatternLengthMax = 99;
@@ -142,6 +143,
9
@@
bool VibrationController::vibrate(Navigator& navigator,
@@ -142,6 +143,
8
@@
bool VibrationController::vibrate(Navigator& navigator,
// reference to |window| or |navigator| was retained in another window.
if (!navigator.DomWindow())
return false;
+ if (!RuntimeEnabledFeatures::VibrationEnabled())
+ return false;
+ }
return From(navigator).Vibrate(pattern);
}
...
...
build/patches/Automated-domain-substitution.patch
View file @
ee3e4bad
...
...
@@ -30381,7 +30381,7 @@ diff --git a/third_party/blink/renderer/modules/payments/skip_to_gpay_utils.cc b
diff --git a/third_party/blink/renderer/modules/vibration/vibration_controller.cc b/third_party/blink/renderer/modules/vibration/vibration_controller.cc
--- a/third_party/blink/renderer/modules/vibration/vibration_controller.cc
+++ b/third_party/blink/renderer/modules/vibration/vibration_controller.cc
@@ -1
80
,12 +1
80
,12 @@ bool VibrationController::Vibrate(const VibrationPattern& pattern) {
@@ -1
79
,12 +1
79
,12 @@ bool VibrationController::Vibrate(const VibrationPattern& pattern) {
message =
"Blocked call to navigator.vibrate inside a cross-origin "
"iframe because the frame has never been activated by the user: "
...
...
@@ -33383,7 +33383,7 @@ diff --git a/third_party/libusb/src/libusb/os/windows_usb.c b/third_party/libusb
diff --git a/third_party/libxslt/chromium/roll.py b/third_party/libxslt/chromium/roll.py
--- a/third_party/libxslt/chromium/roll.py
+++ b/third_party/libxslt/chromium/roll.py
@@ -24
0
,7 +24
0
,7 @@ def patch_config():
@@ -24
1
,7 +24
1
,7 @@ def patch_config():
sed_in_place('config.h', 's/#define HAVE_MKTIME 1//')
sed_in_place('config.log',
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment