mirror of
https://github.com/Alex313031/thorium.git
synced 2025-01-09 11:27:32 -03:00
fixes
This commit is contained in:
parent
6dbdd4f523
commit
db5d393ecf
6 changed files with 14 additions and 11 deletions
3
TODO.md
3
TODO.md
|
@ -34,5 +34,8 @@ Thorium Remote Desktop > Chrome Remote Desktop
|
|||
ThoriumOS Flex > ThoriumOS
|
||||
made possible by Thorium > Chromium
|
||||
Experiments > Thorium Experiments
|
||||
Aw, Snap! > Aw, #@%!, this tab's process has gone bye bye...
|
||||
|
||||
- Add GPC patch
|
||||
|
||||
- Restore JXL support on Android.
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
{"force-high-contrast",
|
||||
"Enable High Contrast Mode",
|
||||
"Enables high contrast mode for all Thorium instances.",
|
||||
kOsAll, SINGLE_VALUE_TYPE("force-high-contrast")},
|
||||
kOsAll, SINGLE_VALUE_TYPE(switches::kForceHighContrast)},
|
||||
|
||||
#if BUILDFLAG(IS_WIN)
|
||||
{"disable-aero",
|
||||
|
@ -56,12 +56,12 @@
|
|||
"Switch to the left/right tab if a scroll wheel event happens over the tabstrip, or the empty space beside the tabstrip.",
|
||||
kOsDesktop, MULTI_VALUE_TYPE(kScrollEventChangesTab)},
|
||||
|
||||
#if BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)
|
||||
{"middle-click-autoscroll",
|
||||
"Middle Button Autoscroll",
|
||||
"Enables autoscrolling when the middle mouse button is pressed.",
|
||||
kOsDesktop, SINGLE_VALUE_TYPE("middle-click-autoscroll")},
|
||||
#endif // BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)
|
||||
//#if BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)
|
||||
// {"middle-click-autoscroll",
|
||||
// "Middle Click Autoscroll",
|
||||
// "Enables autoscrolling when the middle mouse button is pressed.",
|
||||
// kOsDesktop, SINGLE_VALUE_TYPE(blink::features::kMiddleClickAutoscroll)},
|
||||
//#endif // BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)
|
||||
|
||||
{"autoplay-policy",
|
||||
"Disable/Enable AutoPlay",
|
||||
|
|
|
@ -2925,7 +2925,7 @@ bool Browser::CanCloseWithMultipleTabs() {
|
|||
|
||||
// Figure out how many windows are open total
|
||||
int total_window_count = 0;
|
||||
for (auto* browser : *BrowserList::GetInstance()) {
|
||||
for (Browser* browser : *BrowserList::GetInstance()) {
|
||||
// Don't count this browser window or any other in the process of closing.
|
||||
// Window closing may be delayed, and windows that are in the process of
|
||||
// closing don't count against our totals.
|
||||
|
|
|
@ -33,7 +33,7 @@ BASE_FEATURE(kAllowEyeDropperWGCScreenCapture,
|
|||
// Enables icon in titlebar for web apps.
|
||||
BASE_FEATURE(kWebAppIconInTitlebar,
|
||||
"WebAppIconInTitlebar",
|
||||
base::FEATURE_DISABLED_BY_DEFAULT);
|
||||
base::FEATURE_ENABLED_BY_DEFAULT);
|
||||
|
||||
// Enables Chrome Labs menu in the toolbar. See https://crbug.com/1145666
|
||||
BASE_FEATURE(kChromeLabs, "ChromeLabs", base::FEATURE_ENABLED_BY_DEFAULT);
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<!-- Sad Tab Strings -->
|
||||
<message name="IDS_SAD_TAB_TITLE" desc="The title of the sad tab page that is shown when a tab crashes. This is intended to be a humorous exclamation of dismay." formatter_data="android_java">
|
||||
Aw, Snap!
|
||||
Aw, #@%!, this tab's process has gone bye bye...
|
||||
</message>
|
||||
<message name="IDS_SAD_TAB_MESSAGE" desc="The message displayed on the sad tab page." formatter_data="android_java">
|
||||
Something went wrong while displaying this webpage.
|
||||
|
|
|
@ -1717,7 +1717,7 @@ BASE_FEATURE(kLibaomUseChromeThreads,
|
|||
// Allows decoding of theora / vp3 content.
|
||||
BASE_FEATURE(kTheoraVideoCodec,
|
||||
"TheoraVideoCodec",
|
||||
base::FEATURE_DISABLED_BY_DEFAULT);
|
||||
base::FEATURE_ENABLED_BY_DEFAULT);
|
||||
|
||||
#if BUILDFLAG(IS_CHROMEOS)
|
||||
// Allows demuxing of AVI and decoding of MPEG4 streams. These should not be
|
||||
|
|
Loading…
Reference in a new issue