Commit Graph
67869 Commits
Author SHA1 Message Date
Szilard Szaloki a894785eb7 Downloads rust-toolchain-aux. 2025-03-03 11:04:16 -07:00
Brandon-T bdc1075254 [iOS] - Change AboutHomeHandler to use a proper background colour format (#27833) 2025-02-27 12:27:33 -05:00
Kyle Hickinson 1f2ba134c5 [iOS] Prepare CWVWebView web embedder for use in iOS (#26957) 2025-02-27 12:01:40 -05:00
brave-builds aeddc95a23 1.78.3 2025-02-27 16:28:50 +00:00
StephenHeaps 62c5910cd1 fix(iOS): Increase timeout for webkit in window origin unit test (#27844)
Increase timeout for webkit in testWindowOriginURL.
2025-02-27 17:01:26 +01:00
Simon Hong 835541284f Merge pull request #27841 from brave/fix_resize_cursor_side_panel
Fixed cursor is not changed to resize when hovered to sidebar resize area
2025-02-27 21:37:44 +09:00
brave-builds fdc8ea8d98 1.78.2 2025-02-27 12:03:09 +00:00
cypt4 c29c0a3ce2 [ZCash] Fix ZCashShieldSyncServiceTest::ScanBlocks (#27842)
[ZCash] Fix ZCashShieldSyncServiceTest::ScanBlocks
Resolves https://github.com/brave/brave-browser/issues/44253
2025-02-27 12:25:34 +01:00
Simon Hong f9d9a72c47 Fixed cursor is not changed to resize when hovered to sidebar resize area
fix https://github.com/brave/brave-browser/issues/43507

On macOS, previous cursor is not cleared when mouse goes out.
So, we can see resize cursor only once. To fix, clear current cursor
manually. Widget doesn't change its current cursor if it's same with
requested one.
2025-02-27 16:07:34 +09:00
Douglas Daniel 2593444b78 fix(wallet): Show Meld Opt In on Android (#27837) 2025-02-26 23:46:35 -06:00
Pavel Beloborodov 6e99529527 Updated text on Private Window banner. (#27816) 2025-02-27 07:46:58 +07:00
Kamil Jozwiak 0026c9fd9e Merge pull request #27821 from brave/cr134.0.6998.x
Update from Chromium 134.0.6998.24 to Chromium 134.0.6998.39
2025-02-26 19:42:57 -05:00
brave-builds d535da5c65 1.78.1 2025-02-27 00:05:40 +00:00
Jay Harris e208f4f640 Fix build failure on iOS caused by incorrect deps (#27829) 2025-02-26 23:38:17 +01:00
Nuo Xu 62a5090615 fix(iOS): Upload one source strings file to Crowdin per release version (#27831)
we are now uploading one source strings file to Crowdin per release version
2025-02-26 14:34:51 -08:00
cdesouza-chromium 1f8aaca4f1 [CodeHealth] Removing unused ffmpeg patcher (#27818)
There was some patching being done to `ffmpeg` in the past, but this has
been abandoned since `cr124` was merged.

This PR removes the unused patcher, which was generating warnings
whenever `update_patches` was being run.

Resolves https://github.com/brave/brave-browser/issues/44245
2025-02-26 20:00:19 +00:00
Artem Samoilenko 94273f6ddf [Android] Fixes for bytecode tests 2025-02-26 19:48:56 +00:00
Artem Samoilenko 4176d4014a [Android] Remove base chrome layout
Chromium change:
https://chromium.googlesource.com/chromium/src/+/76fac7530c580e7183de4aa7ecd34b837e38fb17

Fix incorrect anchor placement for Omnibox Suggestions Dropdown

The placement of the Anchor view for the Omnibox Suggestions Dropdown
was being computed based on a view with a different on-screen origin
(different (0,0) coordinates) than the view hosting the dropdown.
This mismatch caused visible gaps in multiple scenarios.

This change ensures that the parent view, which hosts both the Omnibox
Suggestions Dropdown and the anchor view, is used for positioning.
This approach eliminates the current issue and prevents similar
alignment problems in the future.

The change directly fixes the problem with Edge To Edge Everywhere.
2025-02-26 19:48:56 +00:00
Claudio DeSouza 435c879bd4 Updated strings for Chromium 134.0.6998.39. 2025-02-26 19:48:56 +00:00
Claudio DeSouza e7ed3ee00b Update patches from Chromium 134.0.6998.24 to Chromium 134.0.6998.39. 2025-02-26 19:48:56 +00:00
Claudio DeSouza 3facba8ff7 Update from Chromium 134.0.6998.24 to Chromium 134.0.6998.39. 2025-02-26 19:48:56 +00:00
brave-builds 7905eb8ff2 Branch migration - master branch (#27828)
Update Nightly channel to: 1.78.0
2025-02-26 19:23:19 +00:00
Brandon-T c95d92a97c [iOS] - Add exemption list for NightMode (#27798) 2025-02-26 12:09:59 -05:00
Deep Pandya 0f008b2765 Set brave as default for private mode in all regions for new users (#27769) 2025-02-26 18:02:04 +01:00
brave-builds 77362e98a8 1.77.69 2025-02-26 16:02:42 +00:00
Douglas Daniel 37ada21777 fix(wallet): Don't Show Sync Warning for Zero Blocks Behind (#27811)
fix(wallet): Dont Show Sync Warning for Zero Blocks Behind
2025-02-26 09:37:19 -06:00
Deep Pandya 70dd1effbd Change WDP card position before p3a (#27810) 2025-02-26 10:05:27 -05:00
Simon Hong a426fcdf80 Merge pull request #27775 from brave/split_view_border
Fixed split view border is not visible
2025-02-26 23:16:51 +09:00
cdesouza-chromium 49ffee34a1 [CodeHealth] Simplifying json parsing - pt.4 (#27805)
This PR simplifies JSON reading in several places by:

    - Using `base::JSONReader::ReadDict`
    - Using `base::JSONReader::ReadList`
    - Using `base::test::ParseJson*`

This changes aim to make the checks around the parsing and its
expectations simpler to read.

This PR also introduces patch for `base::JSONReader::ReadList` which is
only available in M135.

Chromium change:
https://chromium.googlesource.com/chromium/src/+/cb3669146301529c0c364a0478372fc46ddf514a

commit cb3669146301529c0c364a0478372fc46ddf514a
Author: Claudio DeSouza <cdesouza@chromium.org>
Date:   Wed Feb 19 16:51:29 2025 -0800

    [base] Adding `JSONReader::ReadList`

    This class already provides `ReadDict`, which has proven its usefulness
    in general. This change adds the corresponding implementation for
    `base::Value::Dict`.

    Bug: 40912723
2025-02-26 12:51:52 +00:00
Simon Hong 7db91b978e Use same radius for contents and focus border corners 2025-02-26 21:22:10 +09:00
cdesouza-chromium 9f33c9569e [RELAND][CodeHealth] Use cxx20's T::contains pt.2 (#27786)
In `cxx20`, there is a new function in associative containers called
`contains`, which should be used as a replacement to `base::Contains`.

This reland makes use of a `base::flat_set<ContentGroup>` in one test,
as this was causing build failures on x86 builds, as the compiler would
not abide to evaluate `MakeFixedFlatSet` as `constexpr`.

Resolves https://github.com/brave/brave-browser/issues/44063
2025-02-26 12:20:07 +00:00
brave-builds 88fa990fa9 1.77.68 2025-02-26 12:16:22 +00:00
cypt4 de982f2567 [ZCash] Disable ZCashShieldSyncServiceTest::ScanBlocks on MacOs (#27815)
Resolves https://github.com/brave/brave-browser/issues/44241
2025-02-26 16:01:34 +04:00
Anton Paymyshev 93d1d4aaee Remove caching dependent on features state (#27813)
Remove caching dependendent on features state
2025-02-26 04:30:17 -03:00
Simon Hong ec036136dd Updated split view menu button shapes 2025-02-26 16:09:40 +09:00
Simon Hong b7fd2871c2 Fixed split view border is not visible
fix https://github.com/brave/brave-browser/issues/44146
2025-02-26 13:44:21 +09:00
Darnell Andries 209532a95e Merge pull request #27770 from brave/update-selectors
Update lol_html, adblock and kuchikiki
2025-02-25 20:33:30 -08:00
Terry Mancey 05f57272dd [ads] Fix new tab takeover not appearing for Rewards users (#27809) 2025-02-26 01:32:01 -03:00
Anton Paymyshev 42b8dfd9e7 Cardano accounts (#27772) 2025-02-26 10:12:00 +07:00
Darnell Andries 540bbe6fe9 Merge pull request #27662 from brave/wdp-switch-scraper
Vendor Rust scraper
2025-02-25 18:24:29 -08:00
Darnell Andries de09c28063 Merge pull request #27719 from brave/update-html5ever
Update html5ever/markup5ever for speedreader/kuchikiki
2025-02-25 18:24:12 -08:00
Jay Harris 344f64279f [AI Chat]: Follow up for comments on #27220 (#27752) 2025-02-26 14:39:49 +13:00
brave-builds 3458f3500c 1.77.67 2025-02-26 00:04:52 +00:00
Darnell Andries e17d3036ba Update adblock, kuchikiki, lol_html 2025-02-25 15:57:48 -08:00
Darnell Andries 54d8e7e342 Use Rust scraper in document_extractor 2025-02-25 15:47:25 -08:00
Darnell Andries d42cfa254b Vendor Rust scraper library 2025-02-25 15:41:14 -08:00
Darnell Andries 20ec1ca7d8 Update html5ever/markup5ever for speedreader/kuchikiki 2025-02-25 15:37:44 -08:00
Jay Harris 4dd97a662b [AI Chat]: Remove unused constant (#27790) 2025-02-25 19:26:48 -03:00
Mikhail ecb2c7a756 [Perf infra] Update SB during online profile rebase (#27793)
* Update SB during online profile rebase
* don't check WPR for use_live_sites
2025-02-25 19:22:41 -03:00
brave-builds 3c85819d4e 1.77.66 2025-02-25 19:59:13 +00:00