Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump chromium to 122.0.6236.2 (main) #40871

Merged
merged 27 commits into from
Jan 11, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
cee9bfb
chore: bump chromium in DEPS to 122.0.6223.0
electron-roller[bot] Jan 3, 2024
6497884
5129828: Removes special cases for selenium-atoms dependencies.
codebytere Jan 3, 2024
4969e65
chore: fixup patch indices
codebytere Jan 3, 2024
03fc015
5139789: Deduplicate BrowserContext's ResourceContext
codebytere Jan 3, 2024
dbed55e
5148579: Simplify SelectFileDialog::Listener
codebytere Jan 3, 2024
eeb21b1
5134038: Code Health: Use string_view in base::i18n::BreakIterator::S…
codebytere Jan 3, 2024
473986b
5137427: Code Health: Use string_view in SpellCheck::SpellCheckWord
codebytere Jan 3, 2024
38d63be
[libcxx] adds ranges::fold_left_with_iter and ranges::fold_left
codebytere Jan 3, 2024
4e13717
chore: bump chromium in DEPS to 122.0.6224.0
electron-roller[bot] Jan 3, 2024
e671674
5154766: [Refresh 2023] [GTK] Fix gap above toolbar with fractional s…
codebytere Jan 3, 2024
49c999e
chore: fixup patch indices
codebytere Jan 3, 2024
e1e9504
5094458: Remove extra CGColorSpace parameters from skia and ui helpers
codebytere Jan 3, 2024
537f005
chore: bump chromium in DEPS to 122.0.6226.0
electron-roller[bot] Jan 4, 2024
4378034
chore: update patches
patchup[bot] Jan 4, 2024
b56d433
chore: bump chromium in DEPS to 122.0.6227.0
electron-roller[bot] Jan 4, 2024
b48da0f
chore: update patches
patchup[bot] Jan 4, 2024
3258d25
chore: bump chromium in DEPS to 122.0.6228.0
electron-roller[bot] Jan 5, 2024
c50e325
chore: update patches
patchup[bot] Jan 5, 2024
d754b15
chore: bump chromium in DEPS to 122.0.6230.0
electron-roller[bot] Jan 6, 2024
39f6445
chore: bump chromium in DEPS to 122.0.6232.0
electron-roller[bot] Jan 7, 2024
893e892
chore: bump chromium in DEPS to 122.0.6234.0
electron-roller[bot] Jan 8, 2024
40be72d
chore: bump chromium in DEPS to 122.0.6236.2
electron-roller[bot] Jan 9, 2024
b5d2c66
chore: update patches
MarshallOfSound Jan 10, 2024
b8fd72f
fix: remove --disable-color-correct-renderering
MarshallOfSound Jan 10, 2024
82cee7e
chore: add WEB_PRINTING to content permission converter
MarshallOfSound Jan 10, 2024
81d5f64
chore: Views is now vec<raw_ptr> instead of raw<T*>
MarshallOfSound Jan 10, 2024
a0341b7
spec: add Iterator to global intrinsics
MarshallOfSound Jan 11, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
5094458: Remove extra CGColorSpace parameters from skia and ui helpers
  • Loading branch information
codebytere authored and MarshallOfSound committed Jan 10, 2024
commit e1e9504c35545dc784a58eebbf16962e04ac783f
3 changes: 1 addition & 2 deletions shell/browser/notifications/mac/cocoa_notification.mm
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@
}

if (!options.icon.drawsNothing()) {
NSImage* image = skia::SkBitmapToNSImageWithColorSpace(
options.icon, base::mac::GetGenericRGBColorSpace());
NSImage* image = skia::SkBitmapToNSImage(options.icon);
[notification_ setContentImage:image];
}

Expand Down
3 changes: 1 addition & 2 deletions shell/browser/ui/message_box_mac.mm
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,7 @@
}

if (!settings.icon.isNull()) {
NSImage* image = skia::SkBitmapToNSImageWithColorSpace(
*settings.icon.bitmap(), base::mac::GetGenericRGBColorSpace());
NSImage* image = skia::SkBitmapToNSImage(*settings.icon.bitmap());
[alert setIcon:image];
}

Expand Down