[AUTO][FILECONTROL] - version 141.0.7390.111
This commit is contained in:
committed by
github-actions[bot]
parent
5cf1c61c79
commit
a679a6763b
@@ -1 +1 @@
|
||||
141.0.7390.55
|
||||
141.0.7390.111
|
||||
|
||||
@@ -1143,6 +1143,10 @@ constexpr char kDesksLacrosProfileIdList[] =
|
||||
"ash.desks.desks_lacros_profile_id_list";
|
||||
#endif // BUILDFLAG(IS_CHROMEOS)
|
||||
|
||||
// Deprecated 09/2025.
|
||||
constexpr char kLensOverlayEduActionChipShownCount[] =
|
||||
"lens.edu_action_chip.shown_count";
|
||||
|
||||
// Register local state used only for migration (clearing or moving to a new
|
||||
// key).
|
||||
void RegisterLocalStatePrefsForMigration(PrefRegistrySimple* registry) {
|
||||
@@ -1648,6 +1652,9 @@ void RegisterProfilePrefsForMigration(
|
||||
// Deprecated 08/2025.
|
||||
registry->RegisterListPref(kDesksLacrosProfileIdList);
|
||||
#endif // BUILDFLAG(IS_CHROMEOS)
|
||||
|
||||
// Deprecated 09/2025.
|
||||
registry->RegisterIntegerPref(kLensOverlayEduActionChipShownCount, 0);
|
||||
}
|
||||
|
||||
} // namespace
|
||||
@@ -2993,6 +3000,9 @@ void MigrateObsoleteProfilePrefs(PrefService* profile_prefs,
|
||||
profile_prefs->ClearPref(kDesksLacrosProfileIdList);
|
||||
#endif // BUILDFLAG(IS_CHROMEOS)
|
||||
|
||||
// Added 09/2025.
|
||||
profile_prefs->ClearPref(kLensOverlayEduActionChipShownCount);
|
||||
|
||||
// Please don't delete the following line. It is used by PRESUBMIT.py.
|
||||
// END_MIGRATE_OBSOLETE_PROFILE_PREFS
|
||||
|
||||
|
||||
@@ -1630,9 +1630,11 @@ void ChromeContentRendererClient::AppendContentSecurityPolicy(
|
||||
|
||||
DCHECK(csp);
|
||||
GURL gurl(url);
|
||||
const extensions::Extension* extension =
|
||||
extensions::RendererExtensionRegistry::Get()->GetExtensionOrAppByURL(
|
||||
gurl);
|
||||
// Use a scoped_refptr to keep the extension alive, since this code can be
|
||||
// executed on a worker thread. See https://crbug.com/443038597.
|
||||
scoped_refptr<const extensions::Extension> extension =
|
||||
extensions::RendererExtensionRegistry::Get()
|
||||
->GetRefCountedExtensionOrAppByURL(gurl);
|
||||
if (!extension)
|
||||
return;
|
||||
|
||||
|
||||
+2
-11
@@ -1088,16 +1088,6 @@
|
||||
name: "ConsiderSubOrSuperScriptAncestorAlignForCaretSelection",
|
||||
status: "stable"
|
||||
},
|
||||
{
|
||||
// See https://crbug.com/426067493 for details.
|
||||
name: "ConsiderUpstreamPositionForFindingNextLine",
|
||||
status: "stable",
|
||||
},
|
||||
{
|
||||
// See https://crbug.com/40679713 for details.
|
||||
name: "ConsiderUpstreamPositionForFindingPreviousLine",
|
||||
status: "stable",
|
||||
},
|
||||
{
|
||||
name: "ContactsManager",
|
||||
status: {"Android": "stable", "default": "test"},
|
||||
@@ -5822,7 +5812,8 @@
|
||||
},
|
||||
{
|
||||
name: "WidthAndHeightAsPresentationAttributesOnNestedSvg",
|
||||
status: "stable",
|
||||
// Disabled due to web compat issues, see https://crbug.com/449170647.
|
||||
status: "experimental",
|
||||
},
|
||||
{
|
||||
name: "WidthAndHeightStylePropertiesOnUseAndSymbol",
|
||||
|
||||
-1
@@ -7519,7 +7519,6 @@ interface Request
|
||||
getter referrer
|
||||
getter referrerPolicy
|
||||
getter signal
|
||||
getter targetAddressSpace
|
||||
getter url
|
||||
method arrayBuffer
|
||||
method blob
|
||||
|
||||
Reference in New Issue
Block a user