| Commit-Queue | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
5 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: chrome/browser/flag_descriptions.cc
Insertions: 8, Deletions: 8.
@@ -2703,6 +2703,14 @@
"(i.e., have the same title and the same hostname) of another tile with "
"higher score.";
+#if !BUILDFLAG(IS_ANDROID)
+const char kMulticastInDirectSocketsName[] = "Multicast in Direct Sockets API";
+const char kMulticastInDirectSocketsDescription[] =
+ "Enables access Multicast in Direct Sockets API. See "
+ "https://github.com/explainers-by-googlers/multicast-in-direct-sockets for "
+ "details.";
+#endif // !BUILDFLAG(IS_ANDROID)
+
const char kCanvas2DLayersName[] =
"Enables canvas 2D methods BeginLayer and EndLayer";
const char kCanvas2DLayersDescription[] =
@@ -7418,14 +7426,6 @@
"Enables the Quick Settings Calendar to display Google Calendar events for "
"up to 10 of the user's calendars.";
-#if !BUILDFLAG(IS_ANDROID)
-const char kMulticastInDirectSocketsName[] = "Multicast in Direct Sockets API";
-const char kMulticastInDirectSocketsDescription[] =
- "Enables access Multicast in Direct Sockets API. See "
- "https://github.com/explainers-by-googlers/multicast-in-direct-sockets for "
- "details.";
-#endif // !BUILDFLAG(IS_ANDROID)
-
#if BUILDFLAG(IS_CHROMEOS)
const char kMultiCaptureUsageIndicatorUpdateName[] =
"Use reworked multi capture usage indicators";
```
```
The name of the file: chrome/browser/flag_descriptions.h
Insertions: 5, Deletions: 5.
@@ -1579,6 +1579,11 @@
extern const char kMostVisitedTilesVisualDeduplicationName[];
extern const char kMostVisitedTilesVisualDeduplicationDescription[];
+#if !BUILDFLAG(IS_ANDROID)
+extern const char kMulticastInDirectSocketsName[];
+extern const char kMulticastInDirectSocketsDescription[];
+#endif // !BUILDFLAG(IS_ANDROID)
+
extern const char kCanvas2DLayersName[];
extern const char kCanvas2DLayersDescription[];
@@ -4273,11 +4278,6 @@
extern const char kMultiCalendarSupportName[];
extern const char kMultiCalendarSupportDescription[];
-#if !BUILDFLAG(IS_ANDROID)
-extern const char kMulticastInDirectSocketsName[];
-extern const char kMulticastInDirectSocketsDescription[];
-#endif // !BUILDFLAG(IS_ANDROID)
-
extern const char kMultiCaptureUsageIndicatorUpdateName[];
extern const char kMultiCaptureUsageIndicatorUpdateDescription[];
```
feature flag for multicast direct sockets
Runtime blink flag is added to runtime_enabled_features.json5 and to
chrome://flags For more info on what is a multicast
https://github.com/explainers-by-googlers/Multicast-in-Direct-Sockets
Intent to prototype:
https://groups.google.com/a/chromium.org/g/blink-dev/c/ADV4FZtN4nE
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |