Release 88.0.4324.141
This commit is contained in:
parent
5f22cda333
commit
cc06b37ef7
5 changed files with 24242 additions and 90 deletions
|
@ -1,5 +1,9 @@
|
|||
# 88.0.4324.95
|
||||
# 88.0.4324.141
|
||||
* fix bookmarks not opening (thanks to @uazo, fixes https://github.com/bromite/bromite/issues/891)
|
||||
* fix proxy page not loading (fixes https://github.com/bromite/bromite/issues/890)
|
||||
* ignore managed state for secure DNS (fixes https://github.com/bromite/bromite/issues/832)
|
||||
|
||||
# 88.0.4324.95
|
||||
* fix broken recent tabs behaviour (fixes https://github.com/bromite/bromite/issues/886)
|
||||
* re-introduce flags for number of raster threads (fixes https://github.com/bromite/bromite/issues/875)
|
||||
* avoid initializing histogram data for the WebView (https://github.com/bromite/bromite/issues/873)
|
||||
|
|
|
@ -34,6 +34,7 @@ symbol_level=1
|
|||
target_os="android"
|
||||
use_debug_fission=true
|
||||
use_errorprone_java_compiler=false
|
||||
use_gnome_keyring=false
|
||||
use_official_google_api_keys=false
|
||||
use_openh264=true
|
||||
use_sysroot=false
|
||||
|
|
|
@ -238,7 +238,7 @@ diff --git a/chrome/android/java/src/org/chromium/chrome/browser/bookmarks/Bookm
|
|||
/**
|
||||
* Synchronously gets a list of bookmarks that match the specified search query.
|
||||
* @param query Keyword used for searching bookmarks.
|
||||
@@ -1005,6 +1048,24 @@ public class BookmarkBridge {
|
||||
@@ -1006,6 +1049,24 @@ public class BookmarkBridge {
|
||||
depthList.add(depth);
|
||||
}
|
||||
|
||||
|
@ -263,7 +263,7 @@ diff --git a/chrome/android/java/src/org/chromium/chrome/browser/bookmarks/Bookm
|
|||
private static List<Pair<Integer, Integer>> createPairsList(int[] left, int[] right) {
|
||||
List<Pair<Integer, Integer>> pairList = new ArrayList<Pair<Integer, Integer>>();
|
||||
for (int i = 0; i < left.length; i++) {
|
||||
@@ -1072,6 +1133,8 @@ public class BookmarkBridge {
|
||||
@@ -1073,6 +1134,8 @@ public class BookmarkBridge {
|
||||
int getChildCount(long nativeBookmarkBridge, BookmarkBridge caller, long id, int type);
|
||||
void getChildIDs(long nativeBookmarkBridge, BookmarkBridge caller, long id, int type,
|
||||
List<BookmarkId> bookmarksList);
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -42,7 +42,7 @@ diff --git a/chrome/browser/privacy/secure_dns_bridge.cc b/chrome/browser/privac
|
|||
- ->GetSecureDnsConfiguration(
|
||||
- true /* force_check_parental_controls_for_automatic_mode */)
|
||||
- .management_mode());
|
||||
+ return static_cast<int>(ManagementMode::kNoOverride);
|
||||
+ return static_cast<int>(SecureDnsConfig::ManagementMode::kNoOverride);
|
||||
}
|
||||
|
||||
static void JNI_SecureDnsBridge_UpdateDropdownHistograms(
|
||||
|
|
Loading…
Add table
Reference in a new issue