1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633 8634 8635
|
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/flag_descriptions.h"
#include "build/build_config.h"
#include "flag_descriptions.h"
#include "media/gpu/buildflags.h"
#include "pdf/buildflags.h"
#include "skia/buildflags.h"
// Keep in identical order as the header file, see the comment at the top
// for formatting rules.
namespace flag_descriptions {
const char kAccelerated2dCanvasName[] = "Accelerated 2D canvas";
const char kAccelerated2dCanvasDescription[] =
"Enables the use of the GPU to perform 2d canvas rendering instead of "
"using software rendering.";
const char kAdjustCanCreateCanvas2DResourceProviderName[] =
"Adjust CanCreateCanvas2DResourceProvider()";
const char kAdjustCanCreateCanvas2DResourceProviderDescription[] =
"Changes CanvasRenderingContxt2D::CanCreateCanvas2DResourceProvider() "
"to check for provider recreation rather than bridge recreation";
const char kAiSettingsPageEnterpriseDisabledName[] =
"AI settings page enterprise disabled UI";
const char kAiSettingsPageEnterpriseDisabledDescription[] =
"Enables settings UI for AI features that are disabled by enterprise "
"policy.";
const char kCanvasHibernationName[] = "Hibernation for 2D canvas";
const char kCanvasHibernationDescription[] =
"Enables canvas hibernation for 2D canvas.";
#if !BUILDFLAG(IS_ANDROID)
const char kCapturedSurfaceControlName[] = "Captured Surface Control";
const char kCapturedSurfaceControlDescription[] =
"Enables an API that allows an application to control scroll and zoom on "
"the tab which it is capturing.";
const char kCrossTabElementCaptureName[] = "Element Capture cross-tab";
const char kCrossTabElementCaptureDescription[] =
"Allows the Element Capture API to be used cross-tab. (Only has an effect "
"if Element Capture is generally enabled.)";
const char kCrossTabRegionCaptureName[] = "Region Capture cross-tab";
const char kCrossTabRegionCaptureDescription[] =
"Allows the Region Capture API to be used cross-tab. (Only has an effect "
"if Region Capture is generally enabled.)";
#endif // !BUILDFLAG(IS_ANDROID)
const char kAcceleratedVideoDecodeName[] = "Hardware-accelerated video decode";
const char kAcceleratedVideoDecodeDescription[] =
"Hardware-accelerated video decode where available.";
const char kAcceleratedVideoEncodeName[] = "Hardware-accelerated video encode";
const char kAcceleratedVideoEncodeDescription[] =
"Hardware-accelerated video encode where available.";
const char kAlignSurfaceLayerImplToPixelGridName[] =
"Align SurfaceLayerImpls to pixel grid";
const char kAlignSurfaceLayerImplToPixelGridDescription[] =
"Align SurfaceLayerImpl compositor textures to pixel grid. This is "
"important when an iframe is rendered cross-process to its parent, "
"and fails to align with the pixel grid (e.g. when the parent frame "
"has a non-integral scale factor). Failure to align to the pixel grid "
"can result in the iframe's text becoming blurry. SurfaceLayerImpl also "
"is used for <canvas>, which may also benefit from the alignment.";
const char kAlignWakeUpsName[] = "Align delayed wake ups at 125 Hz";
const char kAlignWakeUpsDescription[] =
"Run most delayed tasks with a non-zero delay (including DOM Timers) on a "
"periodic 125Hz tick, instead of as soon as their delay has passed.";
const char kAllowInsecureLocalhostName[] =
"Allow invalid certificates for resources loaded from localhost.";
const char kAllowInsecureLocalhostDescription[] =
"Allows requests to localhost over HTTPS even when an invalid certificate "
"is presented.";
#if BUILDFLAG(ENABLE_EXTENSIONS)
const char kAllowLegacyMV2ExtensionsName[] =
"Allow legacy extension manifest versions";
const char kAllowLegacyMV2ExtensionsDescription[] =
"Allows extensions with legacy (unsupported) manifest versions to be loaded"
" as unpacked extensions. This should only be used for maintaining legacy "
"extensions and will be removed in the future.";
#endif
#if BUILDFLAG(IS_ANDROID)
const char kAllowTabClosingUponMinimizationName[] =
"Allow tab to be closed during minimization";
const char kAllowTabClosingUponMinimizationDescription[] =
"Utilize Android 16's new API to allow tab to be closed during minimization"
" triggered by back press.";
const char kAndroidAdaptiveFrameRateName[] =
"Android Adaptive Refresh Rate features";
const char kAndroidAdaptiveFrameRateDescription[] =
"Enable adaptive refresh rate features on supported devices. Feature "
"include lowering frame rate for low speed scroll. Has no effect if device "
"does not support adaptive refresh rate.";
#endif
const char kAndroidAppIntegrationName[] = "Integrate with Android App Search";
const char kAndroidAppIntegrationDescription[] =
"If enabled, allows Chrome to integrate with the Android App Search.";
const char kAndroidAppIntegrationModuleName[] =
"Integrate with Android App Search and shows a notice card";
const char kAndroidAppIntegrationModuleDescription[] =
"If enabled, allows Chrome to show a notice card on the magic stack for "
"Android App Search integration";
const char kAndroidAppIntegrationV2Name[] =
"Integrate with Android App Search V2";
const char kAndroidAppIntegrationV2Description[] =
"If enabled, allows Chrome to integrate with the Android App Search "
"directly without using internal library.";
const char kNewContentForCheckerboardedScrollsName[] =
"Change scrolling scheduling to reduce checkerboarding";
const char kNewContentForCheckerboardedScrollsDescription[] =
"If enabled, scrolling that would generate blank frames will now "
"prioritize the new content over scrolling with the intention of "
"decreasing the amount of checkerboarded frames.";
#if BUILDFLAG(IS_ANDROID)
const char kNewTabPageCustomizationName[] = "Customize the new tab page";
const char kNewTabPageCustomizationDescription[] =
"If enabled, allows users to customize the new tab page";
const char kNewTabPageCustomizationToolbarButtonName[] =
"New tab page customization toolbar button";
const char kNewTabPageCustomizationToolbarButtonDescription[] =
"Add the new tab page customization button on the toolbar (mobile only).";
#endif // BUILDFLAG(IS_ANDROID)
const char kAndroidAppIntegrationWithFaviconName[] =
"Integrate with Android App Search with favicons";
const char kAndroidAppIntegrationWithFaviconDescription[] =
"If enabled, allows Chrome to integrate with the Android App Search with "
"favicons.";
const char kAndroidAppIntegrationMultiDataSourceName[] =
"Integrate with Android App Search with multiple data sources.";
const char kAndroidAppIntegrationMultiDataSourceDescription[] =
"If enabled, allows Chrome to integrate with the Android App Search with "
"multiple data sources, e.g. custom Tabs.";
#if BUILDFLAG(IS_ANDROID)
const char kAndroidAppearanceSettingsName[] = "Appearance Settings";
const char kAndroidAppearanceSettingsDescription[] =
"Enables the Appearance Settings preference screen.";
#endif // BUILDFLAG(IS_ANDROID)
const char kAndroidBcivBottomControlsName[] =
"Browser controls in viz for bottom controls";
const char kAndroidBcivBottomControlsDescription[] =
"Let viz move bottom browser controls when scrolling. If this flag is "
"enabled, AndroidBrowserControlsInViz must also be enabled.";
#if BUILDFLAG(IS_ANDROID)
const char kAndroidBookmarkBarName[] = "Bookmark Bar";
const char kAndroidBookmarkBarDescription[] =
"Enables the bookmark bar which provides users with bookmark access from "
"top chrome. Note that device form factor restrictions also apply.";
#endif // BUILDFLAG(IS_ANDROID)
const char kAndroidBottomToolbarName[] = "Bottom Toolbar";
const char kAndroidBottomToolbarDescription[] =
"If enabled, displays the toolbar at the bottom.";
const char kAndroidBrowserControlsInVizName[] =
"Android Browser Controls in Viz";
const char kAndroidBrowserControlsInVizDescription[] =
"Let viz move browser controls when scrolling. For now, this applies only "
"to top controls.";
#if BUILDFLAG(IS_ANDROID)
const char kAndroidKeyboardA11yName[] =
"Keyboard focus and navigation on Android";
const char kAndroidKeyboardA11yDescription[] =
"Improves keyboard focus indication and keyboard navigation (including "
"keyboard shortcuts to move keyboard focus to different parts of the UI, "
"such as the tab strip, toolbar, and bookmarks bar.";
#endif // BUILDFLAG(IS_ANDROID)
#if BUILDFLAG(IS_ANDROID)
const char kAndroidMetaClickHistoryNavigationName[] =
"Allows use of meta keys on forward/back history navigation arrows";
const char kAndroidMetaClickHistoryNavigationDescription[] =
"Allows use of meta keys (ctrl+shift+click to open in new focused tab, "
"ctrl+click to open in new background tab, shift+click to open in new "
"window) on forward/back history navigation arrows";
#endif // BUILDFLAG(IS_ANDROID)
#if BUILDFLAG(IS_ANDROID)
const char kAndroidNativePagesInNewTabName[] =
"Open downloads, history and bookmarks in new tab";
const char kAndroidNativePagesInNewTabDescription[] =
"Open downloads, history, bookmarks in new tab instead of clobbering "
"existing tab";
#endif // BUILDFLAG(IS_ANDROID)
#if BUILDFLAG(IS_ANDROID)
const char kAndroidProgressBarVisualUpdateName[] =
"Enable updated progress bar";
const char kAndroidProgressBarVisualUpdateDescription[] =
"Enable the new updated progress bar";
#endif // BUILDFLAG(IS_ANDROID)
#if BUILDFLAG(IS_ANDROID)
const char kAndroidSmsOtpFillingName[] = "Enable SMS OTP filling";
const char kAndroidSmsOtpFillingDescription[] =
"Enables filling of OTPs received via SMS on Android";
#endif // BUILDFLAG(IS_ANDROID)
#if BUILDFLAG(IS_ANDROID)
const char kAndroidWebAppLaunchHandler[] = "Android Web App Launch Handler";
const char kAndroidWebAppLaunchHandlerDescription[] =
"Enables support of launch_handler and file_handlers that allows web app "
"developers to control how it's launched — for example if it uses an "
"existing window or creates a new one, and to specify types of files a web "
"app can handle.";
#endif // BUILDFLAG(IS_ANDROID)
#if BUILDFLAG(IS_CHROMEOS)
const char kIgnoreDeviceFlexArcEnabledPolicyName[] =
"Ignore VPN Apps Enabling on ChromeOS Flex";
const char kIgnoreDeviceFlexArcEnabledPolicyDescription[] =
"Allows users to disable VPN app enabling on ChromeOS Flex devices.";
const char kAnnotatorModeName[] = "Enable annotator tool";
const char kAnnotatorModeDescription[] =
"Enables the tool for annotating across the OS.";
#endif // BUILDFLAG(IS_CHROMEOS)
const char kAriaElementReflectionName[] = "Enable ARIA element reflection";
const char kAriaElementReflectionDescription[] =
"Enable setting ARIA relationship attributes that reference other elements "
"directly without an IDREF";
const char kAutomaticUsbDetachName[] =
"Automatically detach USB kernel drivers";
const char kAutomaticUsbDetachDescription[] =
"Automatically detach kernel drivers when a USB interface is busy.";
const char kAuxiliarySearchDonationName[] = "Auxiliary Search Donation";
const char kAuxiliarySearchDonationDescription[] =
"If enabled, override Auxiliary Search donation cap.";
const char kBackgroundResourceFetchName[] = "Background Resource Fetch";
const char kBackgroundResourceFetchDescription[] =
"Process resource requests in a background thread inside Blink.";
const char kByDateHistoryInSidePanelName[] = "By Date History in Side Panel";
const char kByDateHistoryInSidePanelDescription[] =
"If enabled, shows the 'By Date' History in Side Panel";
#if BUILDFLAG(IS_ANDROID)
const char kBiometricAuthIdentityCheckName[] =
"Enables android identity check for eligible features";
const char kBiometricAuthIdentityCheckDescription[] =
"The feature makes biometric reauthentication mandatory before passwords "
"filling or before other actions that are or should be protected by "
"biometric checks.";
#endif // BUILDFLAG(IS_ANDROID)
#if !BUILDFLAG(IS_ANDROID)
const char kBookmarksTreeViewName[] = "Top Chrome Bookmarks Tree View";
const char kBookmarksTreeViewDescription[] =
"Show the bookmarks side panel in a tree view while in compact mode.";
#endif
const char kBundledSecuritySettingsName[] = "Bundled Security Settings";
const char kBundledSecuritySettingsDescription[] =
"Enables new Bundled Security Settings UI on chrome://settings/security. "
"This new UI bundles all security settings into either an enhanced or "
"standard bundle which should simplify the security settings page and also "
"help simplify the user's decision.";
const char kCertVerificationNetworkTimeName[] =
"Network Time for Certificate Verification";
const char kCertVerificationNetworkTimeDescription[] =
"Use time fetched from the network for certificate verification decisions. "
"If certificate verification fails with the network time, it will fall back"
" to system time.";
#if BUILDFLAG(IS_ANDROID)
const char kChangeUnfocusedPriorityName[] = "Change Unfocused Priority";
const char kChangeUnfocusedPriorityDescription[] =
"Lower process priority for processes with only unfocused windows, "
"allowing them to be discarded sooner.";
#endif
const char kClassifyUrlOnProcessResponseEventName[] =
"Classify Url on process response event";
const char kClassifyUrlOnProcessResponseEventDescription[] =
"Alters the behavior of a supervised user navigation throttle so that the"
"decision whether to proceed or cancel is made when the response is ready"
"to be rendered, rather than before the request (or any redirect)"
"is issued.";
const char kClickToCallName[] = "Click-To-Call";
const char kClickToCallDescription[] = "Enable the click-to-call feature.";
const char kClipboardMaximumAgeName[] = "Clipboard maximum age";
const char kClipboardMaximumAgeDescription[] =
"Limit the maximum age for recent clipboard content";
const char kComputePressureRateObfuscationMitigationName[] =
"Enable mitigation algorithm for rate obfuscation in compute pressure";
const char kComputePressureRateObfuscationMitigationDescription[] =
"Rate Obfuscation Mitigation is used to avoid fingerprinting attacks. Its "
"usage introduces some timing penalties to the compute pressure results."
"This mitigation might introduce slight precision errors."
"When disabled this helps to test how predictable and accurate compute "
"pressure is, but the Compute Pressure API can be susceptible to "
"fingerprinting attacks.";
const char kComputePressureBreakCalibrationMitigationName[] =
"Enable mitigation algorithm to break calibration attempt in compute "
"pressure";
const char kComputePressureBreakCalibrationMitigationDescription[] =
"In a calibration process an attacker tries to manipulate the CPU so that "
"Compute Pressure API would report a transition into a certain pressure "
"state with the highest probability in response to the pressure exerted "
"by the fabricated workload."
"Break Calibration Mitigation is used to avoid calibration attempts by "
"introducing some randomness in the result of the platform collector."
"This mitigation might introduce slight precision errors."
"When disabled this helps to test how predictable and accurate compute "
"pressure is, but the Compute Pressure API can be susceptible to "
"calibration attempts.";
const char kContainerTypeNoLayoutContainmentName[] =
"Enables the container-type property to have no layout containment";
const char kContainerTypeNoLayoutContainmentDescription[] =
"The container-type property was recently changed to not add layout "
"containment, this allows users to temporarily disable this change.";
const char kContentSettingsPartitioningName[] = "Content Settings Partitioning";
const char kContentSettingsPartitioningDescription[] =
"Partition content settings by StoragePartitions";
const char kCopyImageFilenameToClipboardName[] =
"Copy image filename to clipboard.";
const char kCopyImageFilenameToClipboardDescription[] =
"Whether to write filename to the clipboard when copying image downloads.";
#if BUILDFLAG(IS_ANDROID)
const char kCredentialManagementThirdPartyWebApiRequestForwardingName[] =
"Credential Management Third Party Web API Request Forwarding";
const char kCredentialManagementThirdPartyWebApiRequestForwardingDescription[] =
"Forwards the requests from web pages that use the Credential Management "
"API to 3P password managers if 3P mode autofill is on.";
#endif // IS_ANDROID
#if BUILDFLAG(IS_CHROMEOS)
const char kCrosSwitcherName[] = "ChromeOS Switcher feature.";
const char kCrosSwitcherDescription[] =
"Enable/Disable ChromeOS Switcher feature.";
#endif // IS_CHROMEOS
const char kCssGamutMappingName[] = "CSS Gamut Mapping";
const char kCssGamutMappingDescription[] =
"Enable experimental CSS gamut mapping implementation.";
const char kCssMasonryLayoutName[] = "CSS Masonry Layout";
const char kCssMasonryLayoutDescription[] =
"Enable experimental CSS Masonry Layout implementation. Simple layouts "
"with masonry in the block direction are supported. Subgrid, "
"fragmentation, and out-of-flow items are not supported yet. The syntax to "
"use CSS Masonry is `display: masonry` together with grid properties (i.e. "
"`grid-column`, `grid-row`, etc.). More details on masonry syntax can be "
"found at https://www.w3.org/TR/css-grid-3/#masonry-model.";
const char kCssTextBoxTrimName[] = "CSS text-box-trim";
const char kCssTextBoxTrimDescription[] =
"Enable experimental CSS text-box-trim property.";
const char kCustomizeChromeSidePanelExtensionsCardName[] =
"Customize Chrome Side Panel Extension Card";
const char kCustomizeChromeSidePanelExtensionsCardDescription[] =
"If enabled, shows an extension card within the Customize Chrome Side "
"Panel for access to the Chrome Web Store extensions.";
const char kCustomizeChromeWallpaperSearchName[] =
"Customize Chrome Wallpaper Search";
const char kCustomizeChromeWallpaperSearchDescription[] =
"Enables wallpaper search in Customize Chrome Side Panel.";
const char kCustomizeChromeWallpaperSearchButtonName[] =
"Customize Chrome Wallpaper Search Button";
const char kCustomizeChromeWallpaperSearchButtonDescription[] =
"Enables entry point on Customize Chrome Side Panel's Appearance page for "
"Wallpaper Search.";
const char kCustomizeChromeWallpaperSearchInspirationCardName[] =
"Customize Chrome Wallpaper Search Inspiration Card";
const char kCustomizeChromeWallpaperSearchInspirationCardDescription[] =
"Shows inspiration card in Customize Chrome Side Panel Wallpaper Search. "
"Requires #customize-chrome-wallpaper-search to be enabled too.";
const char kDataSharingName[] = "Data Sharing";
const char kDataSharingDescription[] =
"Enabled all Data Sharing related UI and features.";
const char kDataSharingJoinOnlyName[] = "Data Sharing Join Only";
const char kDataSharingJoinOnlyDescription[] =
"Enabled Data Sharing Joining flow related UI and features.";
const char kDataSharingNonProductionEnvironmentName[] =
"Data Sharing server environment";
const char kDataSharingNonProductionEnvironmentDescription[] =
"Sets data sharing server environment.";
const char kDbdRevampDesktopName[] = "Revamped Delete Browsing Data dialog";
const char kDbdRevampDesktopDescription[] =
"Enables a revamped Delete Browsing Data dialog on Desktop. This includes "
"UI changes and removal of the bulk password deletion option from the "
"dialog.";
const char kDisableFacilitatedPaymentsMerchantAllowlistName[] =
"Disable the merchant allowlist check for facilitated payments";
const char kDisableFacilitatedPaymentsMerchantAllowlistDescription[] =
"When enabled, disable the merchant allowlist check for facilitated "
"payments, so that merchants that are not on the allowlist can also be "
"tested for the supported features.";
const char kHdrAgtmName[] = "Adaptive global tone mapping";
const char kHdrAgtmDescription[] =
"Enables parsing and rendering of adaptive global tone mapping (AGTM) aka "
"SMTPE ST 2094-50 HDR metadata";
const char kHistorySyncAlternativeIllustrationName[] =
"History Sync Alternative Illustration";
const char kHistorySyncAlternativeIllustrationDescription[] =
"Enables history sync alternative illustration.";
const char kLeftClickOpensTabGroupBubbleName[] =
"Left Click to Open TabGroup Editor Bubble";
const char kLeftClickOpensTabGroupBubbleDescription[] =
"Swaps the mouse action for opening a tab group editor bubble to left "
"click";
const char kDeprecateUnloadName[] = "Deprecate the unload event";
const char kDeprecateUnloadDescription[] =
"Controls the default for Permissions-Policy unload. If enabled, unload "
"handlers are deprecated and will not receive the unload event unless a "
"Permissions-Policy to enable them has been explicitly set. If disabled, "
"unload handlers will continue to receive the unload event unless "
"explicitly disabled by Permissions-Policy, even during the gradual "
"rollout of their deprecation.";
#if !BUILDFLAG(IS_ANDROID)
const char kDevToolsAutomaticWorkspaceFoldersName[] =
"DevTools Automatic Workspace Folders";
const char kDevToolsAutomaticWorkspaceFoldersDescription[] =
"When this and the DevTools Project Settings flags are turned on, DevTools "
"will automatically add workspace folders based on a workspace "
"configuration "
"in the project settings.";
#endif // !BUILDFLAG(IS_ANDROID)
const char kDevToolsPrivacyUIName[] = "DevTools Privacy UI";
const char kDevToolsPrivacyUIDescription[] =
"Enables the Privacy UI in the current 'Security' panel in DevTools.";
#if !BUILDFLAG(IS_ANDROID)
const char kDevToolsProjectSettingsName[] = "DevTools Project Settings";
const char kDevToolsProjectSettingsDescription[] =
"If enabled, DevTools will try to fetch project settings in the "
"form of a `com.chrome.devtools.json` file from a well-known URI "
"on local debugging targets.";
#endif // !BUILDFLAG(IS_ANDROID)
#if !BUILDFLAG(IS_ANDROID)
const char kDevToolsCSSValueTracingName[] = "DevTools CSS Value Tracing";
const char kDevToolsCSSValueTracingDescription[] =
"Enables the CSS Value Tracing UI in the elements panel.";
#endif // !BUILDFLAG(IS_ANDROID)
const char kForceStartupSigninPromoName[] = "Force Start-up Signin Promo";
const char kForceStartupSigninPromoDescription[] =
"If enabled, the full screen signin promo will be forced to show up at "
"Chrome start-up.";
const char kFwupdDeveloperModeName[] = "Enable fwupd developer mode";
const char kFwupdDeveloperModeDescription[] =
"Allows display and installation in UI of unauthenticated firmware by "
"disabling all checks.";
const char kTangibleSyncName[] = "Tangible Sync";
const char kTangibleSyncDescription[] =
"Enables the tangible sync when a user starts the sync consent flow";
#if BUILDFLAG(IS_ANDROID)
const char kDisableInstanceLimitName[] = "Disable Instance Limit";
const char kDisableInstanceLimitDescription[] =
"Disable limit on number of app instances allowed (current limit is 5).";
const char kDisplayEdgeToEdgeFullscreenName[] =
"Enable Display Edge to Edge Fullscreen";
const char kDisplayEdgeToEdgeFullscreenDescription[] =
"Enable Display Edge to Edge Fullscreen when Chrome on Android is running "
"in a windowing mode.";
const char kClearInstanceInfoWhenClosedIntentionallyName[] =
"Clear Instance Info When Closed Intentionally";
const char kClearInstanceInfoWhenClosedIntentionallyDescription[] =
"When enabled, permanently cleanup and remove the browser instance when a "
"window is explicitly closed by the user (eg: via the Close button).";
#endif
const char kEnableBenchmarkingName[] = "Enable benchmarking";
const char kEnableBenchmarkingDescription[] =
"Sets all features to a fixed state; that is, disables randomization for "
"feature states. If '(Default Feature States)' is selected, sets all "
"features to their default state. If '(Match Field Trial Testing Config)' "
"is selected, sets all features to the state configured in the field trial "
"testing config. This is used by developers and testers "
"to diagnose whether an observed problem is caused by a non-default "
"base::Feature configuration. This flag is automatically reset "
"after 3 restarts and will be off from the 4th restart. On the 3rd "
"restart, the flag will appear to be off but the effect is still active.";
const char kEnableBenchmarkingChoiceDisabled[] = "Disabled";
const char kEnableBenchmarkingChoiceDefaultFeatureStates[] =
"Default Feature States";
const char kEnableBenchmarkingChoiceMatchFieldTrialTestingConfig[] =
"Match Field Trial Testing Config";
const char kEnableBookmarksSelectedTypeOnSigninForTestingName[] =
"Enable bookmarks selected type on sign-in for testing";
const char kEnableBookmarksSelectedTypeOnSigninForTestingDescription[] =
"Test-only flag to help with the development of "
"sync-enable-bookmarks-in-transport-mode. Enables the bookmarks "
"UserSelectableType upon sign-in";
const char kPreinstalledWebAppAlwaysMigrateCalculatorName[] =
"Preinstalled web app always migrate - Calculator";
const char kPreinstalledWebAppAlwaysMigrateCalculatorDescription[] =
"Whether the calculator web app preinstall should always attempt to migrate"
" the Calculator Chrome app if it is detected as present.";
const char kPreloadingOnPerformancePageName[] =
"Preloading Settings on Performance Page";
const char kPreloadingOnPerformancePageDescription[] =
"Moves preloading settings to the performance page.";
const char kPrerender2Name[] = "Prerendering";
const char kPrerender2Description[] =
"If enabled, browser features and the speculation rules API can trigger "
"prerendering. If disabled, all prerendering APIs still exist, but a "
"prerender will never successfully take place.";
const char kEnableDrDcName[] =
"Enables Display Compositor to use a new gpu thread.";
const char kEnableDrDcDescription[] =
"When enabled, chrome uses 2 gpu threads instead of 1. "
" Display compositor uses new dr-dc gpu thread and all other clients "
"(raster, webgl, video) "
" continues using the gpu main thread.";
const char kEnableSnackbarInSettingsName[] = "Snackbar for settings ";
const char kEnableSnackbarInSettingsDescription[] =
"Enables a snack bar that is shown to users after they save the "
"setting that controls whether a user gets signed in to Chrome when "
"signing in to Google Services.";
const char kEnablePendingModePasswordsPromoName[] =
"Pending Mode Passwords Promo";
const char kEnablePendingModePasswordsPromoDescription[] =
"Enables an autofill promo on passwords when the user is is pending state. "
"The promo prompts the user to signin to access passwords saved in their "
"account";
const char kTextBasedAudioDescriptionName[] = "Enable audio descriptions.";
const char kTextBasedAudioDescriptionDescription[] =
"When enabled, HTML5 video elements with a 'descriptions' WebVTT track "
"will speak the audio descriptions aloud as the video plays.";
const char kUseAndroidStagingSmdsName[] = "Use Android staging SM-DS";
const char kUseAndroidStagingSmdsDescription[] =
"Use the Android staging address when fetching pending eSIM profiles.";
const char kUseFrameIntervalDeciderName[] =
"Use rewritten display FrameIntervalDecider";
const char kUseFrameIntervalDeciderDescription[] =
"Rewrite is meant to preserve existing behavior and enable new features.";
const char kUseSharedImagesForPepperVideoName[] =
"Use SharedImages for PPAPI Video";
const char kUseSharedImagesForPepperVideoDescription[] =
"Enables use of SharedImages for textures that are used by PPAPI "
"VideoDecoder";
const char kUseStorkSmdsServerAddressName[] = "Use Stork SM-DS address";
const char kUseStorkSmdsServerAddressDescription[] =
"Use the Stork SM-DS address to fetch pending eSIM profiles managed by the "
"Stork prod server. Note that Stork profiles can be created with an EID at "
"go/stork-profile, and managed at go/stork-batch > View Profiles. Also "
"note that an test eUICC card is required to use this feature, usually "
"that requires the kCellularUseSecond flag to be enabled. Go to "
"go/cros-connectivity > Dev Tips for more instructions.";
const char kUseWallpaperStagingUrlName[] = "Use Wallpaper staging URL";
const char kUseWallpaperStagingUrlDescription[] =
"Use the staging server as part of the Wallpaper App to verify "
"additions/removals of wallpapers.";
const char kUseMessagesStagingUrlName[] = "Use Messages staging URL";
const char kUseMessagesStagingUrlDescription[] =
"Use the staging server as part of the \"Messages\" feature under "
"\"Connected Devices\" settings.";
const char kUseCustomMessagesDomainName[] = "Use custom Messages domain";
const char kUseCustomMessagesDomainDescription[] =
"Use a custom URL as part of the \"Messages\" feature under "
"\"Connected Devices\" settings.";
const char kUseDMSAAForTilesName[] = "Use DMSAA for tiles";
const char kUseDMSAAForTilesDescription[] =
"Switches skia to use DMSAA instead of MSAA for tile raster";
const char kIsolatedSandboxedIframesName[] = "Isolated sandboxed iframes";
const char kIsolatedSandboxedIframesDescription[] =
"When enabled, applies process isolation to iframes with the 'sandbox' "
"attribute and without the 'allow-same-origin' permission set on that "
"attribute. This also applies to documents with a similar CSP sandbox "
"header, even in the main frame. The affected sandboxed documents can be "
"grouped into processes based on their URL's site or origin. The default "
"grouping when enabled is per-site.";
const char kIsPaintableChecksResourceProviderInsteadOfBridgeName[] =
"CanvasRenderingContext2D::IsPaintable() adjustment";
const char kIsPaintableChecksResourceProviderInsteadOfBridgeDescription[] =
"Has CanvasRenderingContext2D::IsPaintable() check for the existence of "
"the resource provider rather than the bridge";
#if BUILDFLAG(IS_ANDROID)
const char kAutofillDeprecateAccessibilityApiName[] =
"Suppress Autofill Using the Android Accessibility API";
const char kAutofillDeprecateAccessibilityApiDescription[] =
"When enabled, Chrome suppresses calls to the Android Accessibility API for"
" Autofill purposes. Chrome Autofill is not affected by this flag. To use"
" other Autofill services, enable #enable-autofill-virtual-view-structure.";
#endif // BUILDFLAG(IS_ANDROID)
const char kAutofillEnableAllowlistForBmoCardCategoryBenefitsName[] =
"Enable allowlist for showing category benefits for BMO cards";
const char kAutofillEnableAllowlistForBmoCardCategoryBenefitsDescription[] =
"When enabled, card category benefits offered by BMO will be shown in "
"Autofill suggestions on the allowlisted merchant websites.";
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || \
BUILDFLAG(IS_CHROMEOS)
const char kAutofillEnableAmountExtractionAllowlistDesktopName[] =
"Enable loading and querying the checkout amount extraction allowlist on "
"Chrome Desktop";
const char kAutofillEnableAmountExtractionAllowlistDesktopDescription[] =
"When enabled, Chrome will have the ability to load and query the "
"allowlist for checkout amount extraction, which will be used to check if "
"the current URL is eligible for products that use the checkout amount "
"extraction algorithm.";
const char kAutofillEnableAmountExtractionDesktopName[] =
"Enable checkout amount extraction on Chrome desktop";
const char kAutofillEnableAmountExtractionDesktopDescription[] =
"When enabled, Chrome will extract the checkout amount from the checkout "
"page of the allowlisted merchant websites.";
const char kAutofillEnableAmountExtractionDesktopLoggingName[] =
"Enable amount extraction logging on Chrome desktop";
const char kAutofillEnableAmountExtractionDesktopLoggingDescription[] =
"Enables logging of the result of checkout amount extraction on desktop. "
"This flag will allow amount extraction to run on any website when a CC "
"form is clicked.";
#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) ||
// BUILDFLAG(IS_CHROMEOS)
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || \
BUILDFLAG(IS_CHROMEOS)
const char kAutofillEnableBuyNowPayLaterName[] =
"Enable buy now pay later on Autofill";
const char kAutofillEnableBuyNowPayLaterDescription[] =
"When enabled, users will have the option to pay with buy now pay later on "
"specific merchant webpages.";
const char kAutofillEnableBuyNowPayLaterSyncingName[] =
"Enable syncing buy now pay later user data.";
const char kAutofillEnableBuyNowPayLaterSyncingDescription[] =
"When enabled, Chrome will sync user data related to buy now pay later.";
#endif
const char kAutofillEnableCvcStorageAndFillingName[] =
"Enable CVC storage and filling for payments autofill";
const char kAutofillEnableCvcStorageAndFillingDescription[] =
"When enabled, we will store CVC for both local and server credit cards. "
"This will also allow the users to autofill their CVCs on checkout pages.";
const char kAutofillEnableCvcStorageAndFillingEnhancementName[] =
"Enable CVC storage and filling enhancement for payments autofill";
const char kAutofillEnableCvcStorageAndFillingEnhancementDescription[] =
"When enabled, will enhance CVV storage project. Provide better "
"suggestion, resolve conflict with COF project and add logging.";
const char kAutofillEnableCvcStorageAndFillingStandaloneFormEnhancementName[] =
"Enable CVC storage and filling standalone form enhancement for payments "
"autofill";
const char
kAutofillEnableCvcStorageAndFillingStandaloneFormEnhancementDescription[] =
"When enabled, this will enhance the CVV storage project. The "
"enhancement will enable CVV storage suggestions for standalone CVC "
"fields.";
const char kAutofillEnableFpanRiskBasedAuthenticationName[] =
"Enable risk-based authentication for FPAN retrieval";
const char kAutofillEnableFpanRiskBasedAuthenticationDescription[] =
"When enabled, server card retrieval will begin with a risk-based check "
"instead of jumping straight to CVC or biometric auth.";
const char kIPHAutofillCreditCardBenefitFeatureName[] =
"Enable Card Benefits in-product help bubble";
const char kIPHAutofillCreditCardBenefitFeatureDescription[] =
"Enables In-Product-Help that appears when at least one autofill credit "
"card suggestion includes card benefits.";
const char kAutofillEnableCardBenefitsForAmericanExpressName[] =
"Enable showing card benefits for American Express cards";
const char kAutofillEnableCardBenefitsForAmericanExpressDescription[] =
"When enabled, card benefits offered by American Express will be shown in "
"Autofill suggestions.";
const char kAutofillEnableCardBenefitsForBmoName[] =
"Enable showing card benefits for BMO cards";
const char kAutofillEnableCardBenefitsForBmoDescription[] =
"When enabled, card benefits offered by BMO will be shown in Autofill "
"suggestions.";
const char kAutofillEnableCardBenefitsIphName[] =
"Enable showing in-process help UI for card benefits";
const char kAutofillEnableCardBenefitsIphDescription[] =
"When enabled, in-process help UI will be shown for Autofill card "
"suggestions with benefits.";
const char kAutofillEnableCardBenefitsSyncName[] =
"Enable syncing card benefits";
const char kAutofillEnableCardBenefitsSyncDescription[] =
"When enabled, card benefits offered by issuers will be synced from the "
"Payments server.";
const char kAutofillEnableCardInfoRuntimeRetrievalName[] =
"Enable retrieval of card info(with CVC) from issuer for enrolled cards";
const char kAutofillEnableCardInfoRuntimeRetrievalDescription[] =
"When enabled, runtime retrieval of CVC along with card number and expiry "
"from issuer for enrolled cards will be enabled during form fill.";
const char kAutofillEnableFlatRateCardBenefitsFromCurinosName[] =
"Enable showing flat rate card benefits sourced from Curinos";
const char kAutofillEnableFlatRateCardBenefitsFromCurinosDescription[] =
"When enabled, flat rate card benefits sourced from Curinos will be shown "
"in Autofill suggestions.";
const char kAutofillEnableLogFormEventsToAllParsedFormTypesName[] =
"Enable logging form events to all parsed form on a web page.";
const char kAutofillEnableLogFormEventsToAllParsedFormTypesDescription[] =
"When enabled, a form event will log to all of the parsed forms of the "
"same type on a webpage. This means credit card form events will log to "
"all credit card form types and address form events will log to all "
"address form types.";
const char kAutofillEnableLoyaltyCardsFillingName[] =
"Enable Autofill support for filling loyalty cards";
const char kAutofillEnableLoyaltyCardsFillingDescription[] =
"When enabled, Autofill will offer support for filling the user's loyalty "
"cards stored in Google Wallet.";
const char
kAutofillEnableMultipleRequestInVirtualCardDownstreamEnrollmentName[] =
"Enable multiple server request support for virtual card downstream "
"enrollment";
const char
kAutofillEnableMultipleRequestInVirtualCardDownstreamEnrollmentDescription
[] = "When enabled, Chrome will be able to send preflight call for "
"enrollment earlier in the flow with the multiple server request "
"support.";
const char kAutofillEnableNewFopDisplayDesktopName[] =
"Enable Autofill new FOP display on Desktop";
const char kAutofillEnableNewFopDisplayDesktopDescription[] =
"When enabled, updates payment method Autofill suggestions and settings "
"UI.";
const char kAutofillEnableOffersInClankKeyboardAccessoryName[] =
"Enable Autofill offers in keyboard accessory";
const char kAutofillEnableOffersInClankKeyboardAccessoryDescription[] =
"When enabled, offers will be displayed in the keyboard accessory when "
"available.";
#if BUILDFLAG(IS_ANDROID)
const char kAutofillEnablePaymentSettingsCardPromoAndScanCardName[] =
"Use the new card promo and allow for card scanning in the payment "
"settings page";
const char kAutofillEnablePaymentSettingsCardPromoAndScanCardDescription[] =
"When enabled, the new card promo UX will be shown on the payment "
"settings page and the option for card scans will be available on the add "
"card page.";
const char kAutofillEnablePaymentSettingsServerCardSaveName[] =
"Save new credit cards in the payment settings page to the Google Payments "
"server";
const char kAutofillEnablePaymentSettingsServerCardSaveDescription[] =
"When enabled, new credit cards added in the payment settings page will be "
"saved to the Google Payments server. The card will be saved locally "
"if the server save fails.";
#endif
const char kAutofillEnablePrefetchingRiskDataForRetrievalName[] =
"Enable prefetching of risk data during payments autofill retrieval";
const char kAutofillEnablePrefetchingRiskDataForRetrievalDescription[] =
"When enabled, risk data is prefetched during payments autofill flows "
"to reduce user-perceived latency.";
const char kAutofillEnableRankingFormulaAddressProfilesName[] =
"Enable new Autofill suggestion ranking formula for profiles";
const char kAutofillEnableRankingFormulaAddressProfilesDescription[] =
"When enabled, Autofill will use a new ranking formula to rank Autofill "
"profile suggestions.";
const char kAutofillEnableRankingFormulaCreditCardsName[] =
"Enable new Autofill suggestion ranking formula for credit cards";
const char kAutofillEnableRankingFormulaCreditCardsDescription[] =
"When enabled, Autofill will use a new ranking formula to rank Autofill "
"credit card suggestions.";
const char kAutofillEnableSaveAndFillName[] = "Enable Save and Fill";
const char kAutofillEnableSaveAndFillDescription[] =
"When enabled, show an option to offer saving and filling a credit card "
"with a single click when users don't have any cards saved in Autofill.";
#if BUILDFLAG(IS_ANDROID)
const char kAutofillEnableShowSaveCardSecurelyMessageName[] =
"Enable updated credit card upload UI messaging";
const char kAutofillEnableShowSaveCardSecurelyMessageDescription[] =
"When enabled, credit card upload messaging will match what is "
"shown on Desktop.";
const char kAutofillEnableSyncingOfPixBankAccountsName[] =
"Sync Pix bank accounts from Google Payments";
const char kAutofillEnableSyncingOfPixBankAccountsDescription[] =
"When enabled, Pix bank accounts are synced from Google Payments backend. "
"These bank account will show up in Chrome settings.";
#endif // BUILDFLAG(IS_ANDROID)
const char kAutofillEnableVcn3dsAuthenticationName[] =
"Enable 3DS authentication for virtual cards";
const char kAutofillEnableVcn3dsAuthenticationDescription[] =
"When enabled, Chrome will trigger 3DS authentication during a virtual "
"card retrieval if a challenge is required, 3DS authentication is "
"available for the card, and FIDO is not.";
const char kAutofillImprovedLabelsName[] =
"Autofill suggestions with improved labels";
const char kAutofillImprovedLabelsDescription[] =
"When enabled, the autofill suggestion labels are more more descriptive "
"and relevant.";
const char kAutofillMoreProminentPopupName[] = "More prominent Autofill popup";
const char kAutofillMoreProminentPopupDescription[] =
"If enabled Autofill's popup becomes more prominent, i.e. its shadow "
"becomes more emphasized, position is also updated";
const char kAutofillPaymentsFieldSwappingName[] =
"Swap credit card suggestions";
const char kAutofillPaymentsFieldSwappingDescription[] =
"When enabled, swapping autofilled payment suggestions would result"
"in overriding all of the payments fields with the swapped profile data";
const char kAutofillSharedStorageServerCardDataName[] =
"Enable storing autofill server card data in the shared storage database";
const char kAutofillSharedStorageServerCardDataDescription[] =
"When enabled, the cached server credit card data from autofill will be "
"pushed into the shared storage database for the payments origin.";
#if BUILDFLAG(IS_ANDROID)
const char kAutofillSyncEwalletAccountsName[] =
"Sync eWallet accounts from Google Payments";
const char kAutofillSyncEwalletAccountsDescription[] =
"When enabled, eWallet accounts are synced from the Google Payments "
"servers and displayed on the payment methods settings page.";
#endif // BUILDFLAG(IS_ANDROID)
const char kAutofillUnmaskCardRequestTimeoutName[] =
"Timeout for the credit card unmask request";
const char kAutofillUnmaskCardRequestTimeoutDescription[] =
"When enabled, sets a client-side timeout on the Autofill credit card "
"unmask request. Upon timeout, the client will terminate the current "
"unmask server call, which may or may not terminate the ongoing unmask UI.";
const char kAutofillUploadCardRequestTimeoutName[] =
"Timeout for the credit card upload request";
const char kAutofillUploadCardRequestTimeoutDescription[] =
"When enabled, sets a client-side timeout on the Autofill credit card "
"upload request. Upon timeout, the client will terminate the upload UI, "
"but the request may still succeed server-side.";
const char kAutofillVcnEnrollRequestTimeoutName[] =
"Timeout for the credit card VCN enrollment request";
const char kAutofillVcnEnrollRequestTimeoutDescription[] =
"When enabled, sets a client-side timeout on the Autofill credit card "
"VCN enrollment request. Upon timeout, the client will terminate the VCN "
"enrollment UI, but the request may still succeed server-side.";
const char kAutofillVcnEnrollStrikeExpiryTimeName[] =
"Expiry duration for VCN enrollment strikes";
const char kAutofillVcnEnrollStrikeExpiryTimeDescription[] =
"When enabled, changes the amount of time required for VCN enrollment "
"prompt strikes to expire.";
const char kAutofillVirtualViewStructureAndroidName[] =
"Enable the setting to provide a virtual view structure for Autofill";
const char kAutofillVirtualViewStructureAndroidDescription[] =
"When enabled, a setting allows to switch to using Android Autofill. Chrome"
" then provides a virtual view structure but no own suggestions.";
const char kAutoPictureInPictureForVideoPlaybackName[] =
"Auto picture in picture for video playback";
const char kAutoPictureInPictureForVideoPlaybackDescription[] =
"Enables auto picture in picture for video playback";
const char kBackForwardCacheName[] = "Back-forward cache";
const char kBackForwardCacheDescription[] =
"If enabled, caches eligible pages after cross-site navigations."
"To enable caching pages on same-site navigations too, choose 'enabled "
"same-site support'.";
const char kBackForwardTransitionsName[] = "Back-forward visual transitions";
const char kBackForwardTransitionsDescription[] =
"If enabled, adds animated gesture transitions for back/forward session "
"history navigations. NOTE: enable "
"increment-local-surface-id-for-mainframe-same-doc-navigation to enable "
"the transition on same-doc navigations.";
const char kBiometricReauthForPasswordFillingName[] =
"Biometric reauth for password filling";
const char kBiometricReauthForPasswordFillingDescription[] =
"Enables biometric"
"re-authentication before password filling";
const char kBindCookiesToPortName[] =
"Bind cookies to their setting origin's port";
const char kBindCookiesToPortDescription[] =
"If enabled, cookies will only be accessible by origins with the same port "
"as the one that originally set the cookie.";
const char kBindCookiesToSchemeName[] =
"Bind cookies to their setting origin's scheme";
const char kBindCookiesToSchemeDescription[] =
"If enabled, cookies will only be accessible by origins with the same "
"scheme as the one that originally set the cookie";
const char kBackgroundListeningName[] = "BackgroundListening";
const char kBackgroundListeningDescription[] =
"Enables the new media player features optimized for background listening.";
const char kBlockCrossPartitionBlobUrlFetchingName[] =
"Block Cross Partition Blob URL Fetching";
const char kBlockCrossPartitionBlobUrlFetchingDescription[] =
"Blocks fetching of cross-partitioned Blob URL.";
const char kBorealisBigGlName[] = "Borealis Big GL";
const char kBorealisBigGlDescription[] = "Enable Big GL when running Borealis.";
const char kBorealisDGPUName[] = "Borealis dGPU";
const char kBorealisDGPUDescription[] = "Enable dGPU when running Borealis.";
const char kBorealisEnableUnsupportedHardwareName[] =
"Borealis Enable Unsupported Hardware";
const char kBorealisEnableUnsupportedHardwareDescription[] =
"Allow Borealis to run on hardware that does not meet the minimum spec "
"requirements. Be aware: Games may crash, or perform below expectations.";
const char kBorealisForceBetaClientName[] = "Borealis Force Beta Client";
const char kBorealisForceBetaClientDescription[] =
"Force the client to run its beta version.";
const char kBorealisForceDoubleScaleName[] = "Borealis Force Double Scale";
const char kBorealisForceDoubleScaleDescription[] =
"Force the client to run in 2x visual zoom. the scale client by DPI flag "
"needs to be off for this to take effect.";
const char kBorealisLinuxModeName[] = "Borealis Linux Mode";
const char kBorealisLinuxModeDescription[] =
"Do not run ChromeOS-specific code in the client.";
// For UX reasons we prefer "enabled", but that is used internally to refer to
// whether borealis is installed or not, so the name of the variable is a bit
// different to the user-facing name.
const char kBorealisPermittedName[] = "Borealis Enabled";
const char kBorealisPermittedDescription[] =
"Allows Borealis to run on your device. Borealis may still be blocked for "
"other reasons, including: administrator settings, device hardware "
"capabilities, or other security measures.";
const char kBorealisProvisionName[] = "Borealis Provision";
const char kBorealisProvisionDescription[] =
"Uses the experimental 'provision' option when mounting borealis stateful. "
"The feature causes allocations on thinly provisioned storage, such as "
"sparse vm images, to be passed to the underlying storage layers. "
"Resulting in allocations in the Borealis being backed by physical "
"storage.";
const char kBorealisScaleClientByDPIName[] = "Borealis Scale Client By DPI";
const char kBorealisScaleClientByDPIDescription[] =
"Enable scaling the Steam client according to device DPI. "
"If enabled this will override the force double scale flag.";
const char kBorealisZinkGlDriverName[] = "Borealis Zink GL Driver";
const char kBorealisZinkGlDriverDescription[] =
"Enables zink driver for GL rendering in Borealis. Can be enabled for "
"recommended GL apps only or for all GL apps. Defaults to recommended.";
const char kBypassAppBannerEngagementChecksName[] =
"Bypass user engagement checks";
const char kBypassAppBannerEngagementChecksDescription[] =
"Bypasses user engagement checks for displaying app banners, such as "
"requiring that users have visited the site before and that the banner "
"hasn't been shown recently. This allows developers to test that other "
"eligibility requirements for showing app banners, such as having a "
"manifest, are met.";
#if BUILDFLAG(IS_ANDROID)
const char kSearchInCCTName[] = "Search in Chrome Custom Tabs";
const char kSearchInCCTDescription[] =
"Permits apps to create searchable and "
"navigable custom tabs.";
const char kSearchInCCTAlternateTapHandlingName[] =
"Search in Chrome Custom Tabs Alternate Tap Handling";
const char kSearchInCCTAlternateTapHandlingDescription[] =
"Search in Chrome Custom Tabs Alternate Tap Handling";
const char kSettingsSingleActivityName[] =
"Use SingleActivity mode in Chrome settings";
const char kSettingsSingleActivityDescription[] =
"On transition of the page, instead of stacking a new Activity as a task, "
"reuse the Activity and switch the contained fragment.";
#endif // BUILDFLAG(IS_ANDROID)
const char kSeparateWebAppShortcutBadgeIconName[] =
"Separate Web App Shortcut Badge Icon";
const char kSeparateWebAppShortcutBadgeIconDescription[] =
"The shortcut app badge is painted in the UI instead of being part of the "
"shortcut app icon, and more effects are added for the icon.";
#if !BUILDFLAG(IS_ANDROID)
const char kSeparateLocalAndAccountSearchEnginesName[] =
"Separate local and account search engines";
const char kSeparateLocalAndAccountSearchEnginesDescription[] =
"Keeps the local and the account search engines separate. If the user "
"signs out or sync is turned off, the account search engines are removed "
"while the pre-existing/local search engines are left behind.";
const char kSeparateLocalAndAccountThemesName[] =
"Separate local and account themes";
const char kSeparateLocalAndAccountThemesDescription[] =
"Keeps the local and the account theme separate. If the user signs out or "
"sync is turned off, only the account theme is removed and the "
"pre-existing local theme is restored.";
#endif // !BUILDFLAG(IS_ANDROID)
#if !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_CHROMEOS)
const char kCameraMicEffectsName[] = "Camera and Mic Effects";
const char kCameraMicEffectsDescription[] =
"Enables effects for camera and mic streams.";
const char kCameraMicPreviewName[] = "Camera and Mic Preview";
const char kCameraMicPreviewDescription[] =
"Enables camera and mic preview in permission bubble and site settings.";
const char kGetUserMediaDeferredDeviceSettingsSelectionName[] =
"getUserMedia deferred device settings selection";
const char kGetUserMediaDeferredDeviceSettingsSelectionDescription[] =
"Enables deferring device settings selection for getUserMedia until after "
"the user grants permission.";
#endif
const char kClientSideDetectionBrandAndIntentForScamDetectionName[] =
"Client Side Detection Brand and Intent for Scam Detection";
const char kClientSideDetectionBrandAndIntentForScamDetectionDescription[] =
"Enables on device LLM output on pages to inquire for brand and intent of "
"the page.";
const char kClientSideDetectionShowScamVerdictWarningName[] =
"Client Side Detection Show Scam Verdict Warning";
const char kClientSideDetectionShowScamVerdictWarningDescription[] =
"Show warnings based on the scam verdict field in Client Side Detection "
"response.";
const char kClearCrossSiteCrossBrowsingContextGroupWindowNameName[] =
"Clear window name in top-level cross-site cross-browsing-context-group "
"navigation";
const char kClearCrossSiteCrossBrowsingContextGroupWindowNameDescription[] =
"Clear the preserved window.name property when it's a top-level cross-site "
"navigation that swaps BrowsingContextGroup.";
const char kClipboardContentsIdName[] = "Clipboard contentsId API";
const char kClipboardContentsIdDescription[] =
"Enables the API for getting a unique token of the system clipboard's "
"current state. For details, see "
"https://github.com/explainers-by-googlers/clipboard-contents-id";
const char kDevicePostureName[] = "Device Posture API";
const char kDevicePostureDescription[] =
"Enables Device Posture API (foldable devices)";
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) || \
BUILDFLAG(IS_CHROMEOS)
const char kDocumentPictureInPictureAnimateResizeName[] =
"Document Picture-in-Picture Animate Resize";
const char kDocumentPictureInPictureAnimateResizeDescription[] =
"Use an animation when programmatically resizing a document"
"picture-in-picture window";
const char kAudioDuckingName[] = "Audio Ducking";
const char kAudioDuckingDescription[] =
"Allows Chrome to duck (attenuate) "
"audio from other tabs.";
#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) ||
// BUILDFLAG(IS_CHROMEOS)
const char kViewportSegmentsName[] = "Viewport Segments API";
const char kViewportSegmentsDescription[] =
"Enable the viewport segment API, giving information about the logical "
"segments of the device (dual screen and foldable devices)";
const char kVisitedURLRankingServiceDeduplicationName[] =
"Visited URL ranking deduplication strategy";
const char kVisitedURLRankingServiceDeduplicationDescription[] =
"Enables visited url ranking service to use one of various deduplication "
"strategies.";
const char kVisitedURLRankingServiceHistoryVisibilityScoreFilterName[] =
"Enable visited URL aggregates visibility score based filtering";
const char kVisitedURLRankingServiceHistoryVisibilityScoreFilterDescription[] =
"Enables filtering of visited URL aggregates based on history URL "
"visibility scores.";
const char kDoubleBufferCompositingName[] = "Double buffered compositing";
const char kDoubleBufferCompositingDescription[] =
"Use double buffer for compositing (instead of triple-buffering). "
"Latency should be reduced in some cases. On the other hand, more skipped "
"frames are expected.";
const char kMagicBoostUpdateForQuickAnswersName[] =
"Magic Boost Update for Quick Answers";
const char kMagicBoostUpdateForQuickAnswersDescription[] =
"Enables to show the new Quick Answers card with chips in the revamped "
"Magic Boost opt-in flow";
const char kMediaPlaybackWhileNotVisiblePermissionPolicyName[] =
"media-playback-while-not-visible permission policy";
const char kMediaPlaybackWhileNotVisiblePermissionPolicyDescription[] =
"Enables the media-playback-while-not-visible permission policy. This "
"permission policy will pause any media being played by any disallowed "
"iframes which are not currently rendered. See"
"https://github.com/MicrosoftEdge/MSEdgeExplainers/blob/main/"
"IframeMediaPause/iframe_media_pausing.md for more information.";
const char kMediaSessionEnterPictureInPictureName[] =
"Media Session enterpictureinpicture action";
const char kMediaSessionEnterPictureInPictureDescription[] =
"Enables the 'enterpictureinpicture' MediaSessionAction to allow websites "
"to register an action handler for entering picture-in-picture.";
#if BUILDFLAG(IS_ANDROID)
const char kMvcUpdateViewWhenModelChangedName[] =
"MVC Update View when Model Changed";
const char kMvcUpdateViewWhenModelChangedDescription[] =
"Performance optimization to the MVC framework where a View is only "
"updated when the corresponding Model changes.";
const char kReloadTabUiResourcesIfChangedName[] =
"Reload Tab UIResources if changed";
const char kReloadTabUiResourcesIfChangedDescription[] =
"Performance optimization to the Tab Strip to reload UIResources when "
"producing a frame only if they have been re-rendered.";
#endif // !BUILDFLAG(IS_ANDROID)
const char kCodeBasedRBDName[] = "Code-based RBD";
const char kCodeBasedRBDDescription[] = "Enables the Code-based RBD.";
const char kCollaborationAutomotiveName[] = "Collaboration Automotive";
const char kCollaborationAutomotiveDescription[] =
"Enable the collaboration feature on automotive platforms.";
const char kCollaborationEntrepriseV2Name[] = "Collaboration Entreprise V2";
const char kCollaborationEntrepriseV2Description[] =
"Enables the collaboration feature for entreprise users within the same "
"domain.";
const char kCollaborationMessagingName[] = "Collaboration Messaging";
const char kCollaborationMessagingDescription[] =
"Enables the messaging framework within the collaboration feature, "
"including features such as recent activity, dirty dots, and description "
"action chips.";
const char kCollaborationSharedTabGroupAccountDataName[] =
"Shared Tab Group messaging sync";
const char kCollaborationSharedTabGroupAccountDataDescription[] =
"Enable the messaging sync backend for shared tab groups.";
const char kCompressionDictionaryTransportName[] =
"Compression dictionary transport";
const char kCompressionDictionaryTransportDescription[] =
"Enables compression dictionary transport features. Requires "
"chrome://flags/#enable-compression-dictionary-transport-backend to be "
"enabled.";
const char kCompressionDictionaryTransportBackendName[] =
"Compression dictionary transport backend";
const char kCompressionDictionaryTransportBackendDescription[] =
"Enables the backend of compression dictionary transport features. "
"Requires chrome://flags/#enable-compression-dictionary-transport to be "
"enabled for testing the feature.";
const char kCompressionDictionaryTransportOverHttp1Name[] =
"Compression dictionary transport over HTTP/1";
const char kCompressionDictionaryTransportOverHttp1Description[] =
"When this is enabled, Chromium can use stored shared dictionaries even "
"when the connection is using HTTP/1 for non-localhost requests.";
const char kCompressionDictionaryTransportOverHttp2Name[] =
"Compression dictionary transport over HTTP/2";
const char kCompressionDictionaryTransportOverHttp2Description[] =
"When this is enabled, Chromium can use stored shared dictionaries even "
"when the connection is using HTTP/2 for non-localhost requests.";
const char kCompressionDictionaryTransportRequireKnownRootCertName[] =
"Compression dictionary transport require known root cert";
const char kCompressionDictionaryTransportRequireKnownRootCertDescription[] =
"When this is enabled, Chromium can use stored shared dictionaries only "
"when the connection is using a well known root cert or when the server is "
"a localhost.";
#if BUILDFLAG(IS_ANDROID)
const char kContextMenuEmptySpaceName[] = "Context menu at empty space";
const char kContextMenuEmptySpaceDescription[] =
"When this is enabled, on right click (or equivalent gestures) at empty "
"space, a context menu containing page-related items will be shown.";
#endif // BUILDFLAG(IS_ANDROID)
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN)
const char kContextualCueingName[] = "Contextual cueing";
const char kContextualCueingDescription[] =
"Enables the contextual cueing system to support showing actions.";
const char kGlicZeroStateSuggestionsName[] = "Glic zero state suggestions";
const char kGlicZeroStateSuggestionsDescription[] =
"Enables zero state suggestions in Glic.";
const char kGlicActorName[] = "Glic actor";
const char kGlicActorDescription[] = "Enables the Glic actor.";
#endif // #if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN)
#if BUILDFLAG(IS_ANDROID)
const char kContextualSearchWithCredentialsForDebugName[] =
"Contextual Search within credentials for debug";
const char kContextualSearchWithCredentialsForDebugDescription[] =
"When this is enabled, if a user do the contextual search, the credentials "
"mode will be include.";
#endif // BUILDFLAG(IS_ANDROID)
const char kForceColorProfileSRGB[] = "sRGB";
const char kForceColorProfileP3[] = "Display P3 D65";
const char kForceColorProfileRec2020[] = "ITU-R BT.2020";
const char kForceColorProfileColorSpin[] = "Color spin with gamma 2.4";
const char kForceColorProfileSCRGBLinear[] =
"scRGB linear (HDR where available)";
const char kForceColorProfileHDR10[] = "HDR10 (HDR where available)";
const char kForceColorProfileName[] = "Force color profile";
const char kForceColorProfileDescription[] =
"Forces Chrome to use a specific color profile instead of the color "
"of the window's current monitor, as specified by the operating system.";
const char kDynamicColorGamutName[] = "Dynamic color gamut";
const char kDynamicColorGamutDescription[] =
"Displays in wide color when the content is wide. When the content is "
"not wide, displays sRGB";
const char kDarkenWebsitesCheckboxInThemesSettingName[] =
"Darken websites checkbox in themes setting";
const char kDarkenWebsitesCheckboxInThemesSettingDescription[] =
"Show a darken websites checkbox in themes settings when system default or "
"dark is selected. The checkbox can toggle the auto-darkening web contents "
"feature";
const char kDebugPackedAppName[] = "Debugging for packed apps";
const char kDebugPackedAppDescription[] =
"Enables debugging context menu options such as Inspect Element for packed "
"applications.";
const char kDebugShortcutsName[] = "Debugging keyboard shortcuts";
const char kDebugShortcutsDescription[] =
"Enables additional keyboard shortcuts that are useful for debugging Ash.";
const char kDisableProcessReuse[] = "Disable subframe process reuse";
const char kDisableProcessReuseDescription[] =
"Prevents out-of-process iframes from reusing compatible processes from "
"unrelated tabs. This is an experimental mode that will result in more "
"processes being created.";
const char kDisableSystemBlur[] = "Disable system blur";
const char kDisableSystemBlurDescription[] =
"Removes background blur from system UI";
const char kDisallowDocWrittenScriptsUiName[] =
"Block scripts loaded via document.write";
const char kDisallowDocWrittenScriptsUiDescription[] =
"Disallows fetches for third-party parser-blocking scripts inserted into "
"the main frame via document.write.";
const char kEnableAutoDisableAccessibilityName[] = "Auto-disable Accessibility";
const char kEnableAutoDisableAccessibilityDescription[] =
"When accessibility APIs are no longer being requested, automatically "
"disables accessibility. This might happen if an assistive technology is "
"turned off or if an extension which uses accessibility APIs no longer "
"needs them.";
const char kImageDescriptionsAlternateRoutingName[] =
"Use alternative route for image descriptions.";
const char kImageDescriptionsAlternateRoutingDescription[] =
"When adding automatic captions to images, use a different route to "
"acquire descriptions.";
const char kEnableAutofillAddressSavePromptName[] =
"Autofill Address Save Prompts";
const char kEnableAutofillAddressSavePromptDescription[] =
"Enable the Autofill address save prompts.";
const char kEnterpriseProfileBadgingForAvatarName[] =
"Enable enterprise profile badging on the avatar";
const char kEnterpriseProfileBadgingForAvatarDescription[] =
"Enable enterprise profile badging on the toolbar avatar";
const char kEnterpriseBadgingForNtpFooterName[] =
"Enable enterprise badging on the New Tab Page";
const char kEnterpriseBadgingForNtpFooterDescription[] =
"Enable enterprise profile badging in the footer on the New Tab Page. This "
"includes showing the enterprise logo and the management disclaimer";
const char kManagedProfileRequiredInterstitialName[] =
"Enable the managed profile required interstitial";
const char kManagedProfileRequiredInterstitialDescription[] =
"Enable the interstitial shown when a managed profile creation is "
"required.";
#if BUILDFLAG(IS_ANDROID)
const char kEnterpriseRealTimeUrlCheckOnAndroidName[] =
"Allow the enterprise real-time URL check";
const char kEnterpriseRealTimeUrlCheckOnAndroidDescription[] =
"Enables enterprise real-time URL checks if the "
"EnterpriseRealTimeUrlCheckMode policy is set.";
const char kEnterpriseUrlFilteringEventReportingOnAndroidName[] =
"Allow enterprise url filtering event reporting";
const char kEnterpriseUrlFilteringEventReportingOnAndroidDescription[] =
"Enables enterprise url filtering event reporting when the "
"OnSecurityEventEnterpriseConnector policy is turned on ";
const char kEnterpriseSecurityEventReportingOnAndroidName[] =
"Allow enterprise security event reporting";
const char kEnterpriseSecurityEventReportingOnAndroidDescription[] =
"Enables enterprise security event reporting when the "
"OnSecurityEventEnterpriseConnector policy is turned on ";
#endif
const char kEnableExperimentalCookieFeaturesName[] =
"Enable experimental cookie features";
const char kEnableExperimentalCookieFeaturesDescription[] =
"Enable new features that affect setting, sending, and managing cookies. "
"The enabled features are subject to change at any time.";
const char kEnableDelegatedCompositingName[] = "Enable delegated compositing";
const char kEnableDelegatedCompositingDescription[] =
"When enabled and applicable, the act of compositing is delegated to the "
"system compositor.";
#if BUILDFLAG(IS_ANDROID)
const char kEnablePixAccountLinkingName[] = "Enable Pix account linking";
const char kEnablePixAccountLinkingDescription[] =
"When enabled, users without linked Pix accounts will be prompted to link "
"their Pix accounts to Google Wallet.";
const char kEnablePixPaymentsName[] = "Enable Pix payments";
const char kEnablePixPaymentsDescription[] =
"When enabled, users will be offered to pay for Pix transactions using "
"their bank accounts stored with Google payments.";
const char kEnablePixPaymentsInLandscapeModeName[] =
"Enable Pix payments in landscape mode";
const char kEnablePixPaymentsInLandscapeModeDescription[] =
"When enabled, users using their devices in landscape mode also will be "
"offered to pay using their Pix accounts. Users using their devices in "
"portrait mode are always offered to pay using their Pix accounts.";
#endif // BUILDFLAG(IS_ANDROID)
const char kEnableRemovingAllThirdPartyCookiesName[] =
"Enable removing SameSite=None cookies";
const char kEnableRemovingAllThirdPartyCookiesDescription[] =
"Enables UI on chrome://settings/siteData to remove all third-party "
"cookies and site data.";
const char kDesktopPWAsAdditionalWindowingControlsName[] =
"Desktop PWA Additional Windowing Controls";
const char kDesktopPWAsAdditionalWindowingControlsDescription[] =
"Enable PWAs to: (1) manually recreate the minimize, maximize and restore "
"window functionalities, (2) set windows (non-/)resizable and (3) listen "
"to window's move events with respective APIs.";
const char kDesktopPWAsAppTitleName[] = "Desktop PWA Application Title";
const char kDesktopPWAsAppTitleDescription[] =
"Enable PWAs to set a custom title for their windows.";
const char kDesktopPWAsElidedExtensionsMenuName[] =
"Desktop PWAs elided extensions menu";
const char kDesktopPWAsElidedExtensionsMenuDescription[] =
"Moves the Extensions \"puzzle piece\" icon from the title bar into the "
"app menu for web app windows.";
const char kDesktopPWAsLaunchHandlerName[] = "Desktop PWA launch handler";
const char kDesktopPWAsLaunchHandlerDescription[] =
"Enable web app manifests to declare app launch behavior. Prototype "
"implementation of: "
"https://github.com/WICG/web-app-launch/blob/main/launch_handler.md";
const char kDesktopPWAsTabStripName[] = "Desktop PWA tab strips";
const char kDesktopPWAsTabStripDescription[] =
"Tabbed application mode - enables the `tabbed` display mode which allows "
"web apps to add a tab strip to their app.";
const char kDesktopPWAsTabStripSettingsName[] =
"Desktop PWA tab strips settings";
const char kDesktopPWAsTabStripSettingsDescription[] =
"Experimental UI for selecting whether a PWA should open in tabbed mode.";
const char kDesktopPWAsTabStripCustomizationsName[] =
"Desktop PWA tab strip customizations";
const char kDesktopPWAsTabStripCustomizationsDescription[] =
"Enable PWAs to customize their tab strip when in tabbed mode by adding "
"the `tab_strip` manifest field.";
const char kDesktopPWAsSubAppsName[] = "Desktop PWA Sub Apps";
const char kDesktopPWAsSubAppsDescription[] =
"Enable installed PWAs to create shortcuts by installing their sub apps. "
"Prototype implementation of: "
"https://github.com/ivansandrk/multi-apps/blob/main/explainer.md";
const char kDesktopPWAsSyncChangesName[] = "Desktop PWA sync changes";
const char kDesktopPWAsSyncChangesDescription[] =
"Changes the integration of desktop PWAs with sync such that apps that are "
"installed while sync is turned off will not be added to sync when sync is "
"enabled.";
const char kDesktopPWAsScopeExtensionsName[] = "Desktop PWA Scope Extensions";
const char kDesktopPWAsScopeExtensionsDescription[] =
"Enable web app manifests to declare scope extensions to extend app scope "
"to other origins. Prototype implementation of: "
"https://github.com/WICG/manifest-incubations/blob/gh-pages/"
"scope_extensions-explainer.md";
const char kDesktopPWAsBorderlessName[] = "Desktop PWA Borderless";
const char kDesktopPWAsBorderlessDescription[] =
"Enable web app manifests to declare borderless mode as a display "
"override. Prototype implementation of: go/borderless-mode.";
const char kEnableTLS13EarlyDataName[] = "TLS 1.3 Early Data";
const char kEnableTLS13EarlyDataDescription[] =
"This option enables TLS 1.3 Early Data, allowing GET requests to be sent "
"during the handshake when resuming a connection to a compatible TLS 1.3 "
"server.";
const char kAccessibilityAcceleratorName[] =
"Experimental Accessibility accelerator";
const char kAccessibilityAcceleratorDescription[] =
"This option enables the Accessibility accelerator.";
const char kAccessibilityDisableTouchpadName[] =
"Accessibility disable trackpad";
const char kAccessibilityDisableTouchpadDescription[] =
"Adds a setting that allows the user to disable the built-in trackpad.";
const char kAccessibilityFlashScreenFeatureName[] =
"Accessibility feature to flash the screen for each notification";
const char kAccessibilityFlashScreenFeatureDescription[] =
"Allows the user to use a feature which flashes the screen for each "
"notification.";
const char kAccessibilityServiceName[] = "Experimental Accessibility Service";
const char kAccessibilityServiceDescription[] =
"This option enables the experimental Accessibility Service and runs some "
"accessibility features in the service.";
const char kAccessibilityShakeToLocateName[] =
"Adds shake cursor to locate feature";
const char kAccessibilityShakeToLocateDescription[] =
"This option enables the experimental Accessibility feature to make the "
"mouse cursor more visible when a shake is detected.";
const char kExperimentalAccessibilityColorEnhancementSettingsName[] =
"Experimental Accessibility color enhancement settings";
const char kExperimentalAccessibilityColorEnhancementSettingsDescription[] =
"This option enables the experimental Accessibility color enhancement "
"settings found in the OS Accessibility settings.";
const char kAccessibilityChromeVoxPageMigrationName[] =
"ChromeVox Page Migration";
const char kAccessibilityChromeVoxPageMigrationDescription[] =
"This option enables ChromeVox page migration from extension options page "
"to a Chrome OS settings page.";
const char kAccessibilityReducedAnimationsName[] =
"Experimental Reduced Animations";
const char kAccessibilityReducedAnimationsDescription[] =
"This option enables the setting to limit movement on the screen.";
const char kAccessibilityReducedAnimationsInKioskName[] =
"Reduced Animations feature toggle available in Kiosk quick settings";
const char kAccessibilityReducedAnimationsInKioskDescription[] =
"This option enables the quick settings option to toggle reduced "
"animations.";
const char kAccessibilityFaceGazeName[] = "Experimental FaceGaze integration";
const char kAccessibilityFaceGazeDescription[] =
"This option enables the experimental FaceGaze ChromeOS integration";
const char kAccessibilityMagnifierFollowsChromeVoxName[] =
"Magnifier follows ChromeVox focus";
const char kAccessibilityMagnifierFollowsChromeVoxDescription[] =
"This option enables the fullscreen magnifier to follow ChromeVox's focus.";
const char kAccessibilityMouseKeysName[] = "Mouse Keys";
const char kAccessibilityMouseKeysDescription[] =
"This option enables you to control the mouse with the keyboard.";
const char kAccessibilityCaptionsOnBrailleDisplayName[] =
"Captions on Braille Display";
const char kAccessibilityCaptionsOnBrailleDisplayDescription[] =
"This option allows access to captions for media via a braille display.";
const char kNewMacNotificationAPIName[] =
"Determines which notification API to use on macOS devices";
const char kNewMacNotificationAPIDescription[] =
"Enables the usage of Apple's new notification API";
const char kEnableFencedFramesName[] = "Enable the <fencedframe> element.";
const char kEnableFencedFramesDescription[] =
"Fenced frames are an experimental web platform feature that allows "
"embedding an isolated top-level page. This requires "
"#privacy-sandbox-ads-apis to also be enabled. See "
"https://github.com/shivanigithub/fenced-frame";
const char kEnableFencedFramesDeveloperModeName[] =
"Enable the `FencedFrameConfig` constructor.";
const char kEnableFencedFramesDeveloperModeDescription[] =
"The `FencedFrameConfig` constructor allows you to test the <fencedframe> "
"element without running an ad auction, as you can manually supply a URL "
"to navigate the fenced frame to.";
const char kEnableFencedFramesM120FeaturesName[] =
"Enable the Fenced Frames M120 features";
const char kEnableFencedFramesM120FeaturesDescription[] =
"The Fenced Frames M120 features include: 1. Support leaving interest "
"group from ad components. 2. Allow automatic beacons to send at "
"navigation start.";
const char kEnableGamepadButtonAxisEventsName[] =
"Gamepad Button and Axis Events";
const char kEnableGamepadButtonAxisEventsDescription[] =
"Enables the ability to subscribe to changes in buttons and/or axes "
"on the gamepad object.";
const char kEnableGamepadMultitouchName[] = "Gamepad Multitouch";
const char kEnableGamepadMultitouchDescription[] =
"Enables the ability to receive input from multitouch surface "
"on the gamepad object.";
const char kEnableGpuServiceLoggingName[] = "Enable gpu service logging";
const char kEnableGpuServiceLoggingDescription[] =
"Enable printing the actual GL driver calls.";
#if !BUILDFLAG(IS_ANDROID)
#if !BUILDFLAG(IS_CHROMEOS)
const char kEnableIsolatedWebAppsName[] = "Enable Isolated Web Apps";
const char kEnableIsolatedWebAppsDescription[] =
"Enables experimental support for Isolated Web Apps. "
"See https://github.com/reillyeon/isolated-web-apps for more information.";
#endif // !BUILDFLAG(IS_CHROMEOS)
const char kDirectSocketsInServiceWorkersName[] =
"Direct Sockets API in Service Workers";
const char kDirectSocketsInServiceWorkersDescription[] =
"Enables access to the Direct Sockets API in service workers. See "
"https://github.com/WICG/direct-sockets for details.";
const char kDirectSocketsInSharedWorkersName[] =
"Direct Sockets API in Shared Workers";
const char kDirectSocketsInSharedWorkersDescription[] =
"Enables access to the Direct Sockets API in shared workers. See "
"https://github.com/WICG/direct-sockets for details.";
#if BUILDFLAG(IS_CHROMEOS)
const char kEnableIsolatedWebAppUnmanagedInstallName[] =
"Enable Isolated Web App unmanaged installation";
const char kEnableIsolatedWebAppUnmanagedInstallDescription[] =
"Enables the installation of Isolated Web Apps on devices that are not "
"managed by an enterprise.";
const char kEnableIsolatedWebAppManagedGuestSessionInstallName[] =
"Enable Isolated Web App installation in managed guest sessions";
const char kEnableIsolatedWebAppManagedGuestSessionInstallDescription[] =
"Enables the installation of Isolated Web Apps for users that are logged "
"into a managed guest session.";
#endif // BUILDFLAG(IS_CHROMEOS)
const char kEnableIsolatedWebAppAllowlistName[] =
"Enable an allowlist for Isolated Web Apps";
const char kEnableIsolatedWebAppAllowlistDescription[] =
"Enables an allowlist for Isolated Web Apps, restricting installation and "
"updates to only those apps that are allowlisted.";
const char kEnableIsolatedWebAppDevModeName[] =
"Enable Isolated Web App Developer Mode";
const char kEnableIsolatedWebAppDevModeDescription[] =
"Enables the installation of unverified Isolated Web Apps";
#if BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)
const char kEnableIwaKeyDistributionComponentName[] =
"Enable the Iwa Key Distribution component";
const char kEnableIwaKeyDistributionComponentDescription[] =
"Enables the Iwa Key Distribution component that supplies key rotation "
"data for Isolated Web Apps.";
#endif // BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)
const char kIwaKeyDistributionComponentExpCohortName[] =
"Experimental cohort for the Iwa Key Distribution component";
const char kIwaKeyDistributionComponentExpCohortDescription[] =
"Specifies the experimental cohort for the Iwa Key Distribution component.";
#endif // !BUILDFLAG(IS_ANDROID)
const char kEnableControlledFrameName[] = "Enable Controlled Frame";
const char kEnableControlledFrameDescription[] =
"Enables experimental support for Controlled Frame. See "
"https://github.com/WICG/controlled-frame/blob/main/EXPLAINER.md "
"for more information.";
const char kEnableFingerprintingProtectionBlocklistName[] =
"Enable Fingerprinting Protection Blocklist In Regular Browsing";
const char kEnableFingerprintingProtectionBlocklistDescription[] =
"Enable Fingerprinting Protection which may block fingerprinting "
"resources from loading in a 3p context. This flag applies only outside of "
"Incognito mode.";
const char kEnableFingerprintingProtectionBlocklistInIncognitoName[] =
"Enable Fingerprinting Protection Blocklist In Incognito";
const char kEnableFingerprintingProtectionBlocklistInIncognitoDescription[] =
"Enable Fingerprinting Protection which may block fingerprinting "
"resources from loading in a 3p context. This flag applies only in "
"Incognito mode.";
const char kEnableCanvasNoiseName[] =
"Enable noise for canvas readbacks in Incognito";
const char kEnableCanvasNoiseDescription[] =
"Enable noising pixels when the contents of a canvas are read back by a "
"script.";
const char kEnableSuspendStateMachineName[] = "Enable suspend state machine";
const char kEnableSuspendStateMachineDescription[] =
"Enables a fix for the suspend keyboard shortcut to more consistently "
"execute.";
const char kEnableInputDeviceSettingsSplitName[] =
"Enable input device settings split";
const char kEnableInputDeviceSettingsSplitDescription[] =
"Enable input device settings to be split per-device.";
const char kEnablePeripheralCustomizationName[] =
"Enable peripheral customization";
const char kEnablePeripheralCustomizationDescription[] =
"Enable peripheral customization to allow users to customize buttons on "
"their peripherals.";
const char kEnablePeripheralNotificationName[] =
"Enable peripheral notification";
const char kEnablePeripheralNotificationDescription[] =
"Enable peripheral notification to notify users when a input device is "
"connected to the user's Chromebook for the first time.";
const char kEnablePeripheralsLoggingName[] = "Enable peripherals logging";
const char kEnablePeripheralsLoggingDescription[] =
"Enable peripherals logging to get detailed logs of peripherals";
const char kExperimentalRgbKeyboardPatternsName[] =
"Enable experimental RGB Keyboard patterns support";
const char kExperimentalRgbKeyboardPatternsDescription[] =
"Enable experimental RGB Keyboard patterns support on supported devices.";
const char kClayBlockingDialogName[] = "Clay blocking dialog";
const char kClayBlockingDialogDescription[] =
"Enables the blocking dialog that directs users to complete their choice "
"of default apps (for Browser & Search) in Android.";
const char kEnableNetworkLoggingToFileName[] = "Enable network logging to file";
const char kEnableNetworkLoggingToFileDescription[] =
"Enables network logging to a file named netlog.json in the user data "
"directory. The file can be imported into chrome://net-internals.";
const char kDownloadNotificationServiceUnifiedAPIName[] =
"Migrate download notification service to use new API";
const char kDownloadNotificationServiceUnifiedAPIDescription[] =
"Migrate download notification service to use new unified API based on "
"offline item and native persistence";
const char kEnablePerfettoSystemTracingName[] =
"Enable Perfetto system tracing";
const char kEnablePerfettoSystemTracingDescription[] =
"When enabled, Chrome will attempt to connect to the system tracing "
"service";
const char kEnableWindowsGamingInputDataFetcherName[] =
"Enable Windows.Gaming.Input";
const char kEnableWindowsGamingInputDataFetcherDescription[] =
"Enable Windows.Gaming.Input by default to provide game controller "
"support on Windows 10 desktop.";
const char kPrivacyGuideAiSettingsName[] = "AI settings in Privacy Guide";
const char kPrivacyGuideAiSettingsDescription[] =
"Enables the AI settings linkout in the Privacy Guide completion card.";
const char kDeprecateAltClickName[] =
"Enable Alt+Click deprecation notifications";
const char kDeprecateAltClickDescription[] =
"Start providing notifications about Alt+Click deprecation and enable "
"Search+Click as an alternative.";
const char kExperimentalAccessibilityLanguageDetectionName[] =
"Experimental accessibility language detection";
const char kExperimentalAccessibilityLanguageDetectionDescription[] =
"Enable language detection for in-page content which is then exposed to "
"assistive technologies such as screen readers.";
const char kExperimentalAccessibilityLanguageDetectionDynamicName[] =
"Experimental accessibility language detection for dynamic content";
const char kExperimentalAccessibilityLanguageDetectionDynamicDescription[] =
"Enable language detection for dynamic content which is then exposed to "
"assistive technologies such as screen readers.";
#if BUILDFLAG(IS_ANDROID)
const char kFillRecoveryPasswordName[] = "Fill recovery password";
const char kFillRecoveryPasswordDescription[] =
"Offers the previously saved recovery password for filling if one exists.";
#endif // BUILDFLAG(IS_ANDROID)
const char kMemlogName[] = "Chrome heap profiler start mode.";
const char kMemlogDescription[] =
"Starts heap profiling service that records sampled memory allocation "
"profile having each sample attributed with a callstack. "
"The sampling resolution is controlled with --memlog-sampling-rate flag. "
"Recorded heap dumps can be obtained at chrome://tracing "
"[category:memory-infra] and chrome://memory-internals. This setting "
"controls which processes will be profiled since their start. To profile "
"any given process at a later time use chrome://memory-internals page.";
const char kMemlogModeMinimal[] = "Browser and GPU";
const char kMemlogModeAll[] = "All processes";
const char kMemlogModeAllRenderers[] = "All renderers";
const char kMemlogModeRendererSampling[] = "Single renderer";
const char kMemlogModeBrowser[] = "Browser only";
const char kMemlogModeGpu[] = "GPU only";
const char kMemlogSamplingRateName[] =
"Heap profiling sampling interval (in bytes).";
const char kMemlogSamplingRateDescription[] =
"Heap profiling service uses Poisson process to sample allocations. "
"Default value for the interval between samples is 1000000 (1MB). "
"This results in low noise for large and/or frequent allocations "
"[size * frequency >> 1MB]. This means that aggregate numbers [e.g. "
"total size of malloc-ed objects] and large and/or frequent allocations "
"can be trusted with high fidelity. "
"Lower intervals produce higher samples resolution, but come at a cost of "
"higher performance overhead.";
const char kMemlogSamplingRate10KB[] = "10KB";
const char kMemlogSamplingRate50KB[] = "50KB";
const char kMemlogSamplingRate100KB[] = "100KB";
const char kMemlogSamplingRate500KB[] = "500KB";
const char kMemlogSamplingRate1MB[] = "1MB";
const char kMemlogSamplingRate5MB[] = "5MB";
const char kMemlogStackModeName[] = "Heap profiling stack traces type.";
const char kMemlogStackModeDescription[] =
"By default heap profiling service records native stacks. "
"A post-processing step is required to symbolize the stacks. "
"'Native with thread names' adds the thread name as the first frame of "
"each native stack. It's also possible to record a pseudo stack using "
"trace events as identifiers. It's also possible to do a mix of both.";
const char kMemlogStackModeNative[] = "Native";
const char kMemlogStackModeNativeWithThreadNames[] = "Native with thread names";
const char kMirrorBackForwardGesturesInRTLName[] =
"Mirror back forward gestures in RTL";
const char kMirrorBackForwardGesturesInRTLDescription[] =
"When the OS UI language is right-to-left, the back-forward gesture "
"directions are flipped so that the left edge is considered forward and "
"right is considered back.";
const char kEnableLazyLoadImageForInvisiblePageName[] =
"Enable lazy load image for invisible page";
const char kEnableLazyLoadImageForInvisiblePageDescription[] =
"Respect the loading = lazy attribute for images even on invisible pages.";
const char kEnableSiteSearchAllowUserOverridePolicyName[] =
"Enable allow_user_override field for SiteSearchSettings policy";
const char kEnableSiteSearchAllowUserOverridePolicyDescription[] =
"Enable the field that allows organizations to set a Site Search engine "
"that can be overridden by the user.";
const char kEnableLensStandaloneFlagId[] = "enable-lens-standalone";
const char kEnableLensStandaloneName[] = "Enable Lens features in Chrome.";
const char kEnableLensStandaloneDescription[] =
"Enables Lens image and region search to learn about the visual content "
"you see while you browse and shop on the web.";
const char kEnableManagedConfigurationWebApiName[] =
"Enable Managed Configuration Web API";
const char kEnableManagedConfigurationWebApiDescription[] =
"Allows website to access a managed configuration provided by the device "
"administrator for the origin.";
const char kEnablePixelCanvasRecordingName[] = "Enable pixel canvas recording";
const char kEnablePixelCanvasRecordingDescription[] =
"Pixel canvas recording allows the compositor to raster contents aligned "
"with the pixel and improves text rendering. This should be enabled when a "
"device is using fractional scale factor.";
const char kEnableProcessPerSiteUpToMainFrameThresholdName[] =
"Enable ProcessPerSite up to main frame threshold";
const char kEnableProcessPerSiteUpToMainFrameThresholdDescription[] =
"Proactively reuses same-site renderer processes to host multiple main "
"frames, up to a certain threshold.";
#if BUILDFLAG(IS_CHROMEOS)
const char kEnablePrintingMarginsAndScale[] =
"Enable printing margins and scale support in chrome.printing API.";
const char kEnablePrintingMarginsAndScaleDescription[] =
"Allows extensions to specify margins and scale in chrome.printing API "
"based on supported values provided by the printer.";
#endif // BUILDFLAG(IS_CHROMEOS)
const char kBoundaryEventDispatchTracksNodeRemovalName[] =
"Boundary Event Dispatch Tracks Node Removal";
const char kBoundaryEventDispatchTracksNodeRemovalDescription[] =
"Mouse and Pointer boundary event dispatch (i.e. dispatch of enter, leave, "
"over, out events) tracks DOM node removal to fix event pairing on "
"ancestor nodes.";
const char kEnableCssSelectorFragmentAnchorName[] =
"Enables CSS selector fragment anchors";
const char kEnableCssSelectorFragmentAnchorDescription[] =
"Similar to text directives, CSS selector directives can be specified "
"in a url which is to be scrolled into view and highlighted.";
const char kEnableImprovedGuestProfileMenuName[] =
"Enables new design for guest and incognito profile menu";
const char kEnableImprovedGuestProfileMenuDescription[] =
"The design is in line with the regular profiles. The illustration is "
"removed.";
const char kRetailCouponsName[] = "Enable to fetch for retail coupons";
const char kRetailCouponsDescription[] =
"Allow to fetch retail coupons for consented users";
#if !BUILDFLAG(IS_ANDROID)
const char kEnablePreferencesAccountStorageName[] =
"Enable the account data storage for preferences for syncing users";
const char kEnablePreferencesAccountStorageDescription[] =
"Enables storing preferences in a second, Gaia-account-scoped storage for "
"syncing users";
#endif // !BUILDFLAG(IS_ANDROID)
const char kEnableResamplingScrollEventsExperimentalPredictionName[] =
"Enable experimental prediction for scroll events";
const char kEnableResamplingScrollEventsExperimentalPredictionDescription[] =
"Predicts the scroll amount after the vsync time to more closely match "
"when the frame is visible.";
const char kEnableWebAppUpdateTokenParsingName[] =
"Enable update token parsing";
const char kEnableWebAppUpdateTokenParsingDescription[] =
"Enables app updates to be detected through a change in the update token "
"field in the manifest";
const char kEnableZeroCopyTabCaptureName[] = "Zero-copy tab capture";
const char kEnableZeroCopyTabCaptureDescription[] =
"Enable zero-copy content tab for getDisplayMedia() APIs.";
const char kExperimentalWebAssemblyFeaturesName[] = "Experimental WebAssembly";
const char kExperimentalWebAssemblyFeaturesDescription[] =
"Enable web pages to use experimental WebAssembly features.";
const char kExperimentalWebAssemblyJSPIName[] =
"Experimental WebAssembly JavaScript Promise Integration (JSPI)";
const char kExperimentalWebAssemblyJSPIDescription[] =
"Enable web pages to use experimental WebAssembly JavaScript Promise "
"Integration (JSPI) "
"API.";
const char kEnableUnrestrictedUsbName[] =
"Enable Isolated Web Apps to bypass USB restrictions";
const char kEnableUnrestrictedUsbDescription[] =
"When enabled, allows Isolated Web Apps to access blocklisted "
"devices and protected interfaces through WebUSB API.";
const char kEnableWasmBaselineName[] = "WebAssembly baseline compiler";
const char kEnableWasmBaselineDescription[] =
"Enables WebAssembly baseline compilation and tier up.";
const char kEnableWasmLazyCompilationName[] = "WebAssembly lazy compilation";
const char kEnableWasmLazyCompilationDescription[] =
"Enables lazy (JIT on first call) compilation of WebAssembly modules.";
const char kEnableWasmGarbageCollectionName[] =
"WebAssembly Garbage Collection";
const char kEnableWasmGarbageCollectionDescription[] =
"Enables the experimental Garbage Collection (GC) extensions to "
"WebAssembly.";
const char kEnableWasmRelaxedSimdName[] = "WebAssembly Relaxed SIMD";
const char kEnableWasmRelaxedSimdDescription[] =
"Enables the use of WebAssembly vector operations with relaxed semantics";
const char kEnableWasmStringrefName[] = "WebAssembly Stringref";
const char kEnableWasmStringrefDescription[] =
"Enables the experimental stringref (reference-typed strings) extensions "
"to WebAssembly.";
const char kEnableWasmTieringName[] = "WebAssembly tiering";
const char kEnableWasmTieringDescription[] =
"Enables tiered compilation of WebAssembly (will tier up to TurboFan if "
"#enable-webassembly-baseline is enabled).";
const char kExperimentalWebPlatformFeaturesName[] =
"Experimental Web Platform features";
const char kExperimentalWebPlatformFeaturesDescription[] =
"Enables experimental Web Platform features that are in development.";
const char kSafeBrowsingLocalListsUseSBv5Name[] =
"Safe Browsing Local Lists use v5 API";
const char kSafeBrowsingLocalListsUseSBv5Description[] =
"Fetch and check local lists using the Safe Browsing v5 API instead of the "
"v4 Update API.";
#if BUILDFLAG(ENABLE_EXTENSIONS)
const char kEnableWebHidInWebViewName[] = "Web HID in WebView";
const char kEnableWebHidInWebViewDescription[] =
"Enable WebViews to access Web HID upon embedder's permission.";
const char kExperimentalOmniboxLabsName[] =
"Enable extension permission omnibox.directInput";
const char kExperimentalOmniboxLabsDescription[] =
"Allows extensions to request permission omnibox.directInput, which "
"enables unscoped mode in the Omnibox";
const char kExtensionAiDataCollectionName[] =
"Enables AI Data collection via extension";
const char kExtensionAiDataCollectionDescription[] =
"Enables an extension API to allow specific extensions to collect data "
"from browser process. This data may contain profile specific information "
" and may be otherwise unavailable to an extension.";
const char kExtensionsCollapseMainMenuName[] = "Collapse Extensions Submenu";
const char kExtensionsCollapseMainMenuDescription[] =
"Enables a mode where if the current profile has no extensions, the "
"extensions submenu in the application menu is replaced by a single item, "
"e.g. \"Explore Extensions\".";
const char kExtensionsMenuAccessControlName[] =
"Extensions Menu Access Control";
const char kExtensionsMenuAccessControlDescription[] =
"Enables a redesigned extensions menu that allows the user to control "
"extensions site access.";
const char kIPHExtensionsMenuFeatureName[] = "IPH Extensions Menu";
const char kIPHExtensionsMenuFeatureDescription[] =
"Enables In-Product-Help that appears when at least one extension has "
"access to the current page. This feature is gated by "
"extensions-menu-access-control.";
const char kIPHExtensionsRequestAccessButtonFeatureName[] =
"IPH Extensions Request Access Button Feature";
const char kIPHExtensionsRequestAccessButtonFeatureDescription[] =
"Enables In-Product-Help that appears when at least one extension is "
"requesting access to the current page. This feature is gated by "
"extensions-menu-access-control.";
const char kExtensionManifestV2DeprecationWarningName[] =
"Extension Manifest V2 Deprecation Warning Stage";
const char kExtensionManifestV2DeprecationWarningDescription[] =
"Displays a warning that affected MV2 extensions may no longer be "
"supported due to the Manifest V2 deprecation.";
const char kExtensionManifestV2DeprecationDisabledName[] =
"Extension Manifest V2 Deprecation Disabled Stage";
const char kExtensionManifestV2DeprecationDisabledDescription[] =
"Displays a warning that affected MV2 extensions were turned off due to "
"the Manifest V2 deprecation.";
const char kExtensionManifestV2DeprecationUnsupportedName[] =
"Extension Manifest V2 Deprecation Unsupported Stage";
const char kExtensionManifestV2DeprecationUnsupportedDescription[] =
"Displays a warning that affected MV2 extensions were turned off due to "
"the Manifest V2 deprecation and cannot be re-enabled.";
const char kCWSInfoFastCheckName[] = "CWS Info Fast Check";
const char kCWSInfoFastCheckDescription[] =
"When enabled, Chrome checks and fetches metadata for installed extensions "
"more frequently.";
const char kExtensionDisableUnsupportedDeveloperName[] =
"Extension Disable Unsupported Developer";
const char kExtensionDisableUnsupportedDeveloperDescription[] =
"When enabled, disable unpacked extensions if developer mode is off.";
const char kExtensionTelemetryForEnterpriseName[] =
"Extension Telemetry for Enterprise";
const char kExtensionTelemetryForEnterpriseDescription[] =
"When enabled, the extension telemetry service collects signals and "
"generates reports to send for enterprise.";
const char kExtensionsToolbarZeroStateName[] = "Extensions Toolbar Zero State";
const char kExtensionsToolbarZeroStateDescription[] =
"When enabled, show an IPH to prompt users with zero extensions installed "
"to interact with the Extensions Toolbar Button. Upon the user clicking "
"the toolbar button, display a submenu that suggests exploring the Chrome "
"Web Store.";
const char kExtensionsToolbarZeroStateChoicesDisabled[] = "Disabled";
const char kExtensionsToolbarZeroStateVistWebStore[] = "Visit Chrome Web Store";
const char kExtensionsToolbarZeroStateExploreExtensionsByCategory[] =
"Explore CWS extensions by category";
#endif // BUILDFLAG(ENABLE_EXTENSIONS)
const char kExtensionsOnChromeUrlsName[] = "Extensions on chrome:// URLs";
const char kExtensionsOnChromeUrlsDescription[] =
"Enables running extensions on chrome:// URLs, where extensions explicitly "
"request this permission.";
const char kFractionalScrollOffsetsName[] = "Fractional Scroll Offsets";
const char kFractionalScrollOffsetsDescription[] =
"Enables fractional scroll offsets inside Blink, exposing non-integer "
"offsets to web APIs.";
const char kFedCmAlternativeIdentifiersName[] = "FedCmAlternativeIdentifiers";
const char kFedCmAlternativeIdentifiersDescription[] =
"Supports usernames and phone numbers as account identifiers.";
const char kFedCmAutofillName[] = "FedCmAutofill";
const char kFedCmAutofillDescription[] =
"Allows RPs to enhance autofill with FedCM.";
const char kFedCmCooldownOnIgnoreName[] = "FedCmCooldownOnIgnore";
const char kFedCmCooldownOnIgnoreDescription[] =
"Enables cooldown of the FedCM API in passive mode whenever the dialog is "
"ignored by the user.";
const char kFedCmDelegationName[] = "FedCM with delegation support";
const char kFedCmDelegationDescription[] =
"Enables IdPs to delegate presentation to the browser.";
const char kFedCmIdPRegistrationName[] = "FedCM with IdP Registration support";
const char kFedCmIdPRegistrationDescription[] =
"Enables RPs to get identity credentials from registered IdPs.";
const char kFedCmIframeOriginName[] = "FedCmIframeOrigin";
const char kFedCmIframeOriginDescription[] =
"Allows showing iframe origins in the FedCM UI, if requested by the IDP.";
const char kFedCmMetricsEndpointName[] = "FedCmMetricsEndpoint";
const char kFedCmMetricsEndpointDescription[] =
"Allows the FedCM API to send performance measurement to the metrics "
"endpoint on the identity provider side. Requires FedCM to be enabled.";
const char kFedCmLightweightModeName[] = "FedCmLightweightMode";
const char kFedCmLightweightModeDescription[] =
"Enables IdPs to store user profile information using the login status "
"API.";
const char kFedCmMultiIdpName[] = "FedCmMultiIdp";
const char kFedCmMultiIdpDescription[] =
"Allows the FedCM API to request multiple identity providers "
"simultaneously. Requires FedCM to be enabled as well.";
const char kFedCmShowFilteredAccountsName[] = "FedCmShowFilteredAccounts";
const char kFedCmShowFilteredAccountsDescription[] =
"Allows the FedCM API to show filtered accounts greyed out.";
const char kFedCmWithoutWellKnownEnforcementName[] =
"FedCmWithoutWellKnownEnforcement";
const char kFedCmWithoutWellKnownEnforcementDescription[] =
"Supports configURL that's not in the IdP's .well-known file.";
const char kFedCmSegmentationPlatformName[] = "FedCmSegmentationPlatform";
const char kFedCmSegmentationPlatformDescription[] =
"Enables the segmentation platform service to provide UI volume "
"recommendations to FedCM.";
const char kWebIdentityDigitalCredentialsName[] = "DigitalCredentials";
const char kWebIdentityDigitalCredentialsDescription[] =
"Enables the three-party verifier/holder/issuer identity model.";
const char kWebIdentityDigitalCredentialsCreationName[] =
"DigitalCredentialsCreation";
const char kWebIdentityDigitalCredentialsCreationDescription[] =
"Enables the Digital Credentials Creation API.";
const char kFileHandlingIconsName[] = "File Handling Icons";
const char kFileHandlingIconsDescription[] =
"Allows websites using the file handling API to also register file type "
"icons. See https://github.com/WICG/file-handling/blob/main/explainer.md "
"for more information.";
const char kFileSystemAccessPersistentPermissionUpdatedPageInfoName[] =
"Updated Page Info UI for the File System Access API Persistent "
"Permissions";
const char kFileSystemAccessPersistentPermissionUpdatedPageInfoDescription[] =
"Allows users to opt in to the updated Page Info UI component for the "
"File System Access persistent permissions feature.";
const char kFileSystemObserverName[] = "FileSystemObserver";
const char kFileSystemObserverDescription[] =
"Enables the FileSystemObserver interface, which allows websites to be "
"notified of changes to the file system. See "
"https://github.com/whatwg/fs/blob/main/proposals/FileSystemObserver.md "
"for more information.";
const char kDrawImmediatelyWhenInteractiveName[] =
"Enable Immediate Draw When Interactive";
const char kDrawImmediatelyWhenInteractiveDescription[] =
"Causes viz to activate and draw frames immediately during a touch "
"interaction or scroll.";
const char kAckOnSurfaceActivationWhenInteractiveName[] =
"Ack On Surface Activation When Interactive";
const char kAckOnSurfaceActivationWhenInteractiveDescription[] =
"If enabled, immediately send acks to clients when a viz surface "
"activates and when that surface is a dependency of an interactive frame "
"(i.e., when there is an active scroll or a touch interaction). This "
"effectively removes back-pressure in this case. This can result in "
"wasted work and contention, but should regularize the timing of client "
"rendering.";
const char kFluentOverlayScrollbarsName[] = "Fluent Overlay scrollbars.";
const char kFluentOverlayScrollbarsDescription[] =
"Stylizes scrollbars with Microsoft Fluent design and makes them overlay "
"over the web's content.";
const char kFluentScrollbarsName[] = "Fluent scrollbars.";
const char kFluentScrollbarsDescription[] =
"Stylizes scrollbars with Microsoft Fluent design.";
const char kKeyboardFocusableScrollersName[] =
"Enables keyboard focusable scrollers";
const char kKeyboardFocusableScrollersDescription[] =
"Scrollers without focusable children are keyboard-focusable by default.";
const char kFillOnAccountSelectName[] = "Fill passwords on account selection";
const char kFillOnAccountSelectDescription[] =
"Filling of passwords when an account is explicitly selected by the user "
"rather than autofilling credentials on page load.";
const char kForceTextDirectionName[] = "Force text direction";
const char kForceTextDirectionDescription[] =
"Explicitly force the per-character directionality of UI text to "
"left-to-right (LTR) or right-to-left (RTL) mode, overriding the default "
"direction of the character language.";
const char kForceDirectionLtr[] = "Left-to-right";
const char kForceDirectionRtl[] = "Right-to-left";
const char kForceUiDirectionName[] = "Force UI direction";
const char kForceUiDirectionDescription[] =
"Explicitly force the UI to left-to-right (LTR) or right-to-left (RTL) "
"mode, overriding the default direction of the UI language.";
const char kMediaRemotingWithoutFullscreenName[] =
"Media Remoting without videos in fullscreen mode";
const char kMediaRemotingWithoutFullscreenDescription[] =
"Starts Media Remoting from Global Media Controls without making the "
"videos fullscreen.";
const char kRemotePlaybackBackendName[] = "Remote Playback API implementation";
const char kRemotePlaybackBackendDescription[] =
"Enables the Remote Playback API implementation.";
#if !BUILDFLAG(IS_CHROMEOS)
const char kGlobalMediaControlsUpdatedUIName[] =
"Global Media Controls updated UI";
const char kGlobalMediaControlsUpdatedUIDescription[] =
"Show updated UI for Global Media Controls in all the non-CrOS desktop "
"platforms.";
#endif // !BUILDFLAG(IS_CHROMEOS)
const char kGoogleOneOfferFilesBannerName[] = "Google One offer Files banner";
const char kGoogleOneOfferFilesBannerDescription[] =
"Shows a Files banner about Google One offer.";
const char kObservableAPIName[] = "Observable API";
const char kObservableAPIDescription[] =
"A reactive programming primitive for ergonomically handling streams of "
"async data. See https://github.com/WICG/observable.";
const char kCastMessageLoggingName[] = "Enables logging of all Cast messages.";
const char kCastMessageLoggingDescription[] =
"Enables logging of all messages exchanged between websites, Chrome, "
"and Cast receivers in chrome://media-router-internals.";
const char kCastStreamingAv1Name[] =
"Enable AV1 video encoding for Cast Streaming";
const char kCastStreamingAv1Description[] =
"Offers the AV1 video codec when negotiating Cast Streaming, and uses AV1 "
"if selected for the session.";
const char kCastStreamingHardwareH264Name[] =
"Toggle hardware accelerated H.264 video encoding for Cast Streaming";
const char kCastStreamingHardwareH264Description[] =
"The default is to allow hardware H.264 encoding when recommended for the "
"platform. If enabled, hardware H.264 encoding will always be allowed when "
"supported by the platform. If disabled, hardware H.264 encoding will "
"never be used.";
const char kCastStreamingHardwareHevcName[] =
"Toggle hardware accelerated HEVC video encoding for Cast Streaming";
const char kCastStreamingHardwareHevcDescription[] =
"The default is to allow hardware HEVC encoding when recommended for the "
"platform. If enabled, hardware HEVC encoding will always be allowed when "
"supported by the platform. If disabled, hardware HEVC encoding will "
"never be used.";
const char kCastStreamingHardwareVp8Name[] =
"Toggle hardware accelerated VP8 video encoding for Cast Streaming";
const char kCastStreamingHardwareVp8Description[] =
"The default is to allow hardware VP8 encoding when recommended for the "
"platform. If enabled, hardware VP8 encoding will always be allowed when "
"supported by the platform (regardless of recommendation). If disabled, "
"hardware VP8 encoding will never be used.";
const char kCastStreamingHardwareVp9Name[] =
"Toggle hardware accelerated VP9 video encoding for Cast Streaming";
const char kCastStreamingHardwareVp9Description[] =
"The default is to allow hardware VP9 encoding when recommended for the "
"platform. If enabled, hardware VP9 encoding will always be allowed when "
"supported by the platform (regardless of recommendation). If disabled, "
"hardware VP9 encoding will never be used.";
const char kCastStreamingMediaVideoEncoderName[] =
"Toggles using the media::VideoEncoder implementation for Cast Streaming";
const char kCastStreamingMediaVideoEncoderDescription[] =
"When enabled, the media base VideoEncoder implementation is used instead "
"of the media cast implementation.";
const char kCastStreamingPerformanceOverlayName[] =
"Toggle a performance metrics overlay while Cast Streaming";
const char kCastStreamingPerformanceOverlayDescription[] =
"When enabled, a text overlay is rendered on top of each frame sent while "
"Cast Streaming that includes frame duration, resolution, timestamp, "
"low latency mode, capture duration, target playout delay, target bitrate, "
"and encoder utilization.";
const char kCastStreamingVp8Name[] =
"Enable VP8 video encoding for Cast Streaming";
const char kCastStreamingVp8Description[] =
"Offers the VP8 video codec when negotiating Cast Streaming, and uses VP8 "
"if selected for the session. If true, software VP8 encoding will be "
"offered and hardware VP8 encoding may be offered if enabled and available "
"on this platform. If false, software VP8 will not be offered and hardware "
"VP8 will only be offered if #cast-streaming-hardware-vp8 is explicitly "
"set to true.";
const char kCastStreamingVp9Name[] =
"Enable VP9 video encoding for Cast Streaming";
const char kCastStreamingVp9Description[] =
"Offers the VP9 video codec when negotiating Cast Streaming, and uses VP9 "
"if selected for the session.";
#if BUILDFLAG(IS_MAC)
const char kCastStreamingMacHardwareH264Name[] =
"Enable hardware H264 video encoding on for Cast Streaming on macOS";
const char kCastStreamingMacHardwareH264Description[] =
"Offers the H264 video codec when negotiating Cast Streaming, and uses "
"hardware-accelerated H264 encoding if selected for the session";
const char kUseNetworkFrameworkForLocalDiscoveryName[] =
"Use the Network Framework for local device discovery on Mac";
const char kUseNetworkFrameworkForLocalDiscoveryDescription[] =
"Use the Network Framework to replace the Bonjour API for local device "
"discovery on Mac.";
#endif
#if BUILDFLAG(IS_WIN)
const char kCastStreamingWinHardwareH264Name[] =
"Enable hardware H264 video encoding on for Cast Streaming on Windows";
const char kCastStreamingWinHardwareH264Description[] =
"Offers the H264 video codec when negotiating Cast Streaming, and uses "
"hardware-accelerated H264 encoding if selected for the session";
#endif
const char kCastEnableStreamingWithHiDPIName[] =
"HiDPI tab capture support for Cast Streaming";
const char kCastEnableStreamingWithHiDPIDescription[] =
"Enables HiDPI tab capture during Cast Streaming mirroring sessions. May "
"reduce performance on some platforms and also improve quality of video "
"frames.";
const char kChromeWebStoreNavigationThrottleName[] =
"Chrome Web Store navigation throttle";
const char kChromeWebStoreNavigationThrottleDescription[] =
"When enabled, passes DM Token to the Chrome Web Store.";
#if BUILDFLAG(IS_CHROMEOS)
const char kFlexFirmwareUpdateName[] = "ChromeOS Flex Firmware Updates";
const char kFlexFirmwareUpdateDescription[] =
"Allow firmware updates from LVFS to be installed on ChromeOS Flex.";
#endif
const char kGpuRasterizationName[] = "GPU rasterization";
const char kGpuRasterizationDescription[] = "Use GPU to rasterize web content.";
const char kContextualPageActionsName[] = "Contextual page actions";
const char kContextualPageActionsDescription[] =
"Enables contextual page action feature.";
const char kContextualPageActionsReaderModeName[] =
"Contextual page actions - reader mode";
const char kContextualPageActionsReaderModeDescription[] =
"Enables reader mode as a contextual page action.";
const char kContextualPageActionsShareModelName[] =
"Contextual page actions - share model";
const char kContextualPageActionsShareModelDescription[] =
"Enables share model data collection.";
const char kHappyEyeballsV3Name[] = "Happy Eyeballs Version 3";
const char kHappyEyeballsV3Description[] =
"Enables the Happy Eyeballs Version 3 algorithm. See "
"https://datatracker.ietf.org/doc/draft-pauly-v6ops-happy-eyeballs-v3/";
const char kHardwareMediaKeyHandling[] = "Hardware Media Key Handling";
const char kHardwareMediaKeyHandlingDescription[] =
"Enables using media keys to control the active media session. This "
"requires MediaSessionService to be enabled too";
const char kHeadlessTabModelName[] = "Headless tab model";
const char kHeadlessTabModelDescription[] =
"Enables loading and mutating tab models on Android without an activity";
const char kHeavyAdPrivacyMitigationsName[] = "Heavy ad privacy mitigations";
const char kHeavyAdPrivacyMitigationsDescription[] =
"Enables privacy mitigations for the heavy ad intervention. Disabling "
"this makes the intervention deterministic. Defaults to enabled.";
const char kHistoryEmbeddingsName[] = "History Embeddings";
const char kHistoryEmbeddingsDescription[] =
"When enabled, the history embeddings feature may operate.";
const char kHistoryEmbeddingsAnswersName[] = "History Embeddings Answers";
const char kHistoryEmbeddingsAnswersDescription[] =
"When enabled, the history embeddings feature may answer some queries. "
"Has no effect if the History Embeddings feature is disabled.";
const char kTabAudioMutingName[] = "Tab audio muting UI control";
const char kTabAudioMutingDescription[] =
"When enabled, the audio indicators in the tab strip double as tab audio "
"mute controls.";
const char kCrasProcessorWavDumpName[] = "Enable CrasProcessor WAVE file dumps";
const char kCrasProcessorWavDumpDescription[] =
"Make CrasProcessor produce WAVE file dumps for the audio processing "
"pipeline";
const char kPwaRestoreBackendName[] = "Enable the PWA Restore Backend";
const char kPwaRestoreBackendDescription[] =
"When enabled, PWA data will be sync to the backend, to support the PWA "
"Restore UI.";
const char kPwaRestoreUiName[] = "Enable the PWA Restore UI";
const char kPwaRestoreUiDescription[] =
"When enabled, the PWA Restore UI can be shown";
const char kPwaRestoreUiAtStartupName[] =
"Force-shows the PWA Restore UI at startup";
const char kPwaRestoreUiAtStartupDescription[] =
"When enabled, the PWA Restore UI will be forced to show on startup (even "
"if the PwaRestoreUi flag is disabled and there are no apps to restore)";
const char kStartSurfaceReturnTimeName[] = "Start surface return time";
const char kStartSurfaceReturnTimeDescription[] =
"Enable showing start surface at startup after specified time has elapsed";
const char kHttpsFirstBalancedModeName[] =
"Allow enabling Balanced Mode for HTTPS-First Mode.";
const char kHttpsFirstBalancedModeDescription[] =
"Enable tri-state HTTPS-First Mode setting in chrome://settings/security.";
const char kHttpsFirstDialogUiName[] = "Dialog UI for HTTPS-First Modes";
const char kHttpsFirstDialogUiDescription[] = "Use a dialog-based UI for HFM";
const char kHttpsFirstModeIncognitoName[] = "HTTPS-First Mode in Incognito";
const char kHttpsFirstModeIncognitoDescription[] =
"Enable HTTPS-First Mode in Incognito as default setting.";
const char kHttpsFirstModeIncognitoNewSettingsName[] =
"HTTPS-First Mode in Incognito new Settings UI";
const char kHttpsFirstModeIncognitoNewSettingsDescription[] =
"Enable new HTTPS-First Mode settings UI for HTTPS-First Mode in "
"Incognito. Must also enable #https-first-mode-incognito.";
const char kHttpsFirstModeV2ForEngagedSitesName[] =
"HTTPS-First Mode V2 For Engaged Sites";
const char kHttpsFirstModeV2ForEngagedSitesDescription[] =
"Enable Site-Engagement based HTTPS-First Mode. Shows HTTPS-First Mode "
"interstitial on sites whose HTTPS URLs have high Site Engagement scores. "
"Requires #https-upgrades feature to be enabled";
const char kHttpsFirstModeForTypicallySecureUsersName[] =
"HTTPS-First Mode For Typically Secure Users";
const char kHttpsFirstModeForTypicallySecureUsersDescription[] =
"Automatically enables HTTPS-First Mode if the user has a typically secure "
"browsing pattern.";
const char kHttpsUpgradesName[] = "HTTPS Upgrades";
const char kHttpsUpgradesDescription[] =
"Enable automatically upgrading all top-level navigations to HTTPS with "
"fast fallback to HTTP.";
const char kIgnoreGpuBlocklistName[] = "Override software rendering list";
const char kIgnoreGpuBlocklistDescription[] =
"Overrides the built-in software rendering list and enables "
"GPU-acceleration on unsupported system configurations.";
const char kIncrementLocalSurfaceIdForMainframeSameDocNavigationName[] =
"Increments LocalSurfaceId for main-frame same-doc navigations";
const char kIncrementLocalSurfaceIdForMainframeSameDocNavigationDescription[] =
"If enabled, every same-document navigations in the main-frame will also "
"increment the LocalSurfaceId.";
const char kIncognitoScreenshotName[] = "Incognito Screenshot";
const char kIncognitoScreenshotDescription[] =
"Enables Incognito screenshots on Android. It will also make Incognito "
"thumbnails visible.";
const char kIndexedDBDefaultDurabilityRelaxed[] =
"IndexedDB transactions relaxed durability by default";
const char kIndexedDBDefaultDurabilityRelaxedDescription[] =
"IDBTransaction \"readwrite\" transaction durability defaults to relaxed "
"when not specified";
const char kInstanceSwitcherV2Name[] = "Instance switcher v2";
const char kInstanceSwitcherV2Description[] =
"Enables the updated instance switcher dialog, that uses a new layout and "
"displays additional instance information like last access time and "
"active/inactive status.";
const char kInProductHelpDemoModeChoiceName[] = "In-Product Help Demo Mode";
const char kInProductHelpDemoModeChoiceDescription[] =
"Selects the In-Product Help demo mode.";
const char kInProductHelpSnoozeName[] = "In-Product Help Snooze";
const char kInProductHelpSnoozeDescription[] =
"Enables the snooze button on In-Product Help.";
#if BUILDFLAG(IS_ANDROID)
const char kInputOnVizName[] = "Enable InputOnViz";
const char kInputOnVizDescription[] =
"The Flag only has affect on Android V(15)+. It enables input on "
"web contents to be handled by Viz process in most scenarios.";
#endif
#if !BUILDFLAG(IS_ANDROID)
const char kUserEducationExperienceVersion2Name[] =
"User Education Experience Version 2";
const char kUserEducationExperienceVersion2Description[] =
"Enables enhancements to the User Education and In-Product Help systems "
"such as startup grace period, more sophisticated rate limiting, etc.";
#endif
const char kInstallIsolatedWebAppFromUrl[] =
"Install Isolated Web App from Proxy URL";
const char kInstallIsolatedWebAppFromUrlDescription[] =
"Installs a new developer mode Isolated Web App whose contents are hosted "
"at the provided HTTP(S) URL.";
const char kInstantHotspotRebrandName[] = "Instant Hotspot Improvements";
const char kInstantHotspotRebrandDescription[] =
"Enables Instant Hotspot rebrand/feature improvements.";
const char kInstantHotspotOnNearbyName[] = "Instant Hotspot on Nearby";
const char kInstantHotspotOnNearbyDescription[] =
"Switches Instant Hotspot to use Nearby Presence for device discovery, as "
"well as Nearby Connections for device communication.";
const char kIpProtectionProxyOptOutName[] = "Disable IP Protection Proxy";
const char kIpProtectionProxyOptOutDescription[] =
"When disabled, prevents use of the IP Protection proxy. This is intended "
"to help with diagnosing any issues that could be caused by the feature "
"being enabled. For the current status of this feature, see: "
"https://chromestatus.com/feature/5111460239245312";
const char kIpProtectionProxyOptOutChoiceDefault[] = "Default";
const char kIpProtectionProxyOptOutChoiceOptOut[] = "Disabled";
const char kInvalidateSearchEngineChoiceOnDeviceRestoreDetectionName[] =
"Invalidate search engine choice after the install detects it has been "
"transferred to a new device";
const char kInvalidateSearchEngineChoiceOnDeviceRestoreDetectionDescription[] =
"When enabled, search engine choices made on what we assume was a "
"different device will not be considered valid, leading to the choice "
"screen potentially retriggering.";
const char kAutomaticFullscreenContentSettingName[] =
"Automatic Fullscreen Content Setting";
const char kAutomaticFullscreenContentSettingDescription[] =
"Enables a new Automatic Fullscreen content setting that lets allowlisted "
"origins use the HTML Fullscreen API without transient activation.";
const char kJapaneseOSSettingsName[] = "Japanese OS Settings Page";
const char kJapaneseOSSettingsDescription[] =
"Enable OS Settings Page for Japanese input methods";
const char kJavascriptHarmonyName[] = "Experimental JavaScript";
const char kJavascriptHarmonyDescription[] =
"Enable web pages to use experimental JavaScript features.";
const char kJavascriptHarmonyShippingName[] =
"Latest stable JavaScript features";
const char kJavascriptHarmonyShippingDescription[] =
"Some web pages use legacy or non-standard JavaScript extensions that may "
"conflict with the latest JavaScript features. This flag allows disabling "
"support of those features for compatibility with such pages.";
const char kJourneysName[] = "History Journeys";
const char kJourneysDescription[] = "Enables the History Journeys UI.";
const char kJumpStartOmniboxName[] = "Jump-start Omnibox";
const char kJumpStartOmniboxDescription[] =
"Modifies cold- and warm start-up "
"process on low-end devices to reduce the time to active Omnibox, while "
"completing core systems initialization in the background.";
const char kExtractRelatedSearchesFromPrefetchedZPSResponseName[] =
"Extract Related Searches from Prefetched ZPS Response";
const char kExtractRelatedSearchesFromPrefetchedZPSResponseDescription[] =
"Enables page annotation logic to source related searches data from "
"prefetched ZPS responses";
const char kLanguageDetectionAPIName[] = "Language detection web platform API";
const char kLanguageDetectionAPIDescription[] =
"When enabled, JS can use the web platform's language detection API";
const char kLegacyTechReportTopLevelUrlName[] =
"Using top level navigation URL for legacy technology report";
const char kLegacyTechReportTopLevelUrlDescription[] =
"When a legacy technology report is triggered and uploaded for enterprise "
"users. By default, the URL of the report won't be same as the one in the "
"Omnibox if the event is detected in a sub-frame. Enable this flag will "
"allow browser trace back to the top level URL instead and populate the "
"Frame URL in the `frame_url` field on the API.";
const char kLensOverlayName[] = "Lens overlay";
const char kLensOverlayDescription[] =
"Enables Lens search via an overlay on any page.";
const char kLensOverlayImageContextMenuActionsName[] =
"Lens overlay image context menu actions";
const char kLensOverlayImageContextMenuActionsDescription[] =
"Enables image context menu actions in the Lens overlay.";
const char kLensOverlayOmniboxEntryPointName[] =
"Lens Overlay Omnibox entrypoint";
const char kLensOverlayOmniboxEntryPointDescription[] =
"Enables icon button for Lens entrypoint in the Omnibox.";
const char kLensOverlaySidePanelOpenInNewTabName[] =
"Lens overlay side panel open in new tab";
const char kLensOverlaySidePanelOpenInNewTabDescription[] =
"Enables open in new tab in the Lens overlay side panel.";
const char kLensOverlaySimplifiedSelectionName[] =
"Lens overlay simplified selection";
const char kLensOverlaySimplifiedSelectionDescription[] =
"Enables simplified selection in the Lens overlay.";
const char kLensOverlayTranslateButtonName[] = "Lens overlay translate button";
const char kLensOverlayTranslateButtonDescription[] =
"Enables translate button via the Lens overlay.";
const char kLensOverlayTranslateLanguagesName[] =
"More Lens overlay translate languages";
const char kLensOverlayTranslateLanguagesDescription[] =
"Enables more translate languages in the Lens Overlay.";
const char kLensOverlayLatencyOptimizationsName[] =
"Lens overlay latency optimizations";
const char kLensOverlayLatencyOptimizationsDescription[] =
"Enables latency optimizations for the Lens overlay.";
const char kLensSearchSidePanelNewFeedbackName[] =
"Lens side panel new feedback";
const char kLensSearchSidePanelNewFeedbackDescription[] =
"Enables a new feedback entry point in the Lens side panel.";
const char kLinkedServicesSettingName[] = "Linked Services Setting";
const char kLinkedServicesSettingDescription[] =
"Add Linked Services Setting to the Sync Settings page.";
const char kLogJsConsoleMessagesName[] =
"Log JS console messages in system logs";
const char kLogJsConsoleMessagesDescription[] =
"Enable logging JS console messages in system logs, please note that they "
"may contain PII.";
#if BUILDFLAG(IS_ANDROID)
const char kLoginDbDeprecationAndroidName[] =
"Deprecate the LoginDB on Android";
const char kLoginDbDeprecationAndroidDescription[] =
"When enabled, Chrome on Android stops using the LoginDB. This applies "
"only to users who haven't been migrated to the new Android backend."
"Existing passwords in the LoginDB can be accessed in an exported CSV when "
"the user chooses to do so.";
#endif // BUILDFLAG(IS_ANDROID)
#if BUILDFLAG(IS_CHROMEOS)
const char kMantisFeatureKeyName[] = "Secret key for Mantis feature.";
const char kMantisFeatureKeyDescription[] =
"Feature key to use the Mantis feature on ChromeOS.";
#endif // BUILDFLAG(IS_CHROMEOS)
const char kMediaRouterCastAllowAllIPsName[] =
"Connect to Cast devices on all IP addresses";
const char kMediaRouterCastAllowAllIPsDescription[] =
"Have the Media Router connect to Cast devices on all IP addresses, not "
"just RFC1918/RFC4193 private addresses.";
const char kMojoLinuxChannelSharedMemName[] =
"Enable Mojo Shared Memory Channel";
const char kMojoLinuxChannelSharedMemDescription[] =
"If enabled Mojo on Linux based platforms can use shared memory as an "
"alternate channel for most messages.";
#if BUILDFLAG(IS_ANDROID)
const char kMostVisitedTilesCustomizationName[] =
"Customize Most Visiteid Tiles";
const char kMostVisitedTilesCustomizationDescription[] =
"Adds long-click menu to fix the title and URL of a Most Visited Tile; "
"enables MVT reordering.";
#endif // BUILDFLAG(IS_ANDROID)
const char kMostVisitedTilesReselectName[] = "Most Visited Tiles Reselect";
const char kMostVisitedTilesReselectDescription[] =
"When MV tiles is clicked, scans for a tab with a matching URL. "
"If found, selects the tab and closes the NTP. Else opens into NTP.";
const char kMostVisitedTilesNewScoringName[] =
"Most Visited Tile: New scoring function";
const char kMostVisitedTilesNewScoringDescription[] =
"When showing MV tiles, use a new scoring function to compute the score of "
"each segment.";
const char kMostVisitedTilesVisualDeduplicationName[] =
"Most Visited Tile: Visual deduplication filter";
const char kMostVisitedTilesVisualDeduplicationDescription[] =
"When computing MV Tiles, remove tiles that are visual duplicates "
"(i.e., have the same title and the same hostname) of another tile with "
"higher score.";
const char kCanvas2DLayersName[] =
"Enables canvas 2D methods BeginLayer and EndLayer";
const char kCanvas2DLayersDescription[] =
"Enables the canvas 2D methods BeginLayer and EndLayer.";
const char kWebMachineLearningNeuralNetworkName[] = "Enables WebNN API";
const char kWebMachineLearningNeuralNetworkDescription[] =
"Enables the Web Machine Learning Neural Network (WebNN) API. Spec at "
"https://www.w3.org/TR/webnn/";
const char kExperimentalWebMachineLearningNeuralNetworkName[] =
"Enables experimental WebNN API features";
const char kExperimentalWebMachineLearningNeuralNetworkDescription[] =
"Enables additional, experimental features in Web Machine Learning Neural "
"Network (WebNN) API. Requires the \"WebNN API\" flag to be enabled.";
#if BUILDFLAG(IS_MAC)
const char kWebNNCoreMLName[] = "Core ML backend for WebNN";
const char kWebNNCoreMLDescription[] =
"Enables using Core ML for GPU and "
"NPU inference with the WebNN API. Disabling this flag enables a "
"fallback to TFLite.";
#endif // BUILDFLAG(IS_MAC)
#if BUILDFLAG(IS_WIN)
const char kWebNNDirectMLName[] = "DirectML backend for WebNN";
const char kWebNNDirectMLDescription[] =
"Enables using DirectML for GPU and "
"NPU inference with the WebNN API. Disabling this flag enables a "
"fallback to TFLite.";
const char kWebNNOnnxRuntimeName[] = "ONNX Runtime backend for WebNN";
const char kWebNNOnnxRuntimeDescription[] =
"Enables using ONNX Runtime for CPU, GPU and NPU inference with the WebNN "
"API. Disabling this flag enables a fallback to DirectML or TFLite.";
#endif // BUILDFLAG(IS_WIN)
const char kSystemProxyForSystemServicesName[] =
"Enable system-proxy for selected system services";
const char kSystemProxyForSystemServicesDescription[] =
"Enabling this flag will allow ChromeOS system service which require "
"network connectivity to use the system-proxy daemon for authentication to "
"remote HTTP web proxies.";
const char kSystemShortcutBehaviorName[] =
"Modifies the default behavior of system shortcuts.";
const char kSystemShortcutBehaviorDescription[] =
"This flag controls the default behavior of ChromeOS system shortcuts "
"(Launcher key shortcuts).";
#if BUILDFLAG(IS_ANDROID)
const char kNewEtc1EncoderName[] = "Enable new ETC1 encoder";
const char kNewEtc1EncoderDescription[] =
"Enables the new ETC1 encoder implementation for tab and back/forward "
"thumbnails.";
#endif
const char kNotebookLmAppPreinstallName[] = "NotebookLM app preload";
const char kNotebookLmAppPreinstallDescription[] =
"Preloads the NotebookLM app.";
const char kNotebookLmAppShelfPinName[] = "NotebookLM app shelf pin";
const char kNotebookLmAppShelfPinDescription[] =
"Pins the NotebookLM app preload to the shelf";
const char kNotebookLmAppShelfPinResetName[] = "NotebookLM app shelf pin reset";
const char kNotebookLmAppShelfPinResetDescription[] =
"Clears state relating to pinning the NotebookLM app preload to the shelf";
const char kNotificationSchedulerName[] = "Notification scheduler";
const char kNotificationSchedulerDescription[] =
"Enable notification scheduler feature.";
const char kNotificationSchedulerDebugOptionName[] =
"Notification scheduler debug options";
const char kNotificationSchedulerDebugOptionDescription[] =
"Enable debugging mode to override certain behavior of notification "
"scheduler system for easier manual testing.";
const char kNotificationSchedulerImmediateBackgroundTaskDescription[] =
"Show scheduled notification right away.";
const char kNotificationsSystemFlagName[] = "Enable system notifications.";
const char kNotificationsSystemFlagDescription[] =
"Enable support for using the system notification toasts and notification "
"center on platforms where these are available.";
const char kOmitCorsClientCertName[] =
"Omit TLS client certificates if credential mode disallows";
const char kOmitCorsClientCertDescription[] =
"Strictly conform the Fetch spec to omit TLS client certificates if "
"credential mode disallows. Without this flag enabled, Chrome will always "
"try sending client certificates regardless of the credential mode.";
const char kOmniboxAdaptiveSuggestionsCountName[] =
"Adaptive Omnibox Suggestions count";
const char kOmniboxAdaptiveSuggestionsCountDescription[] =
"Dynamically adjust number of presented Omnibox suggestions depending on "
"available space. When enabled, this feature will increase (or decrease) "
"amount of offered Omnibox suggestions to fill in the space between the "
"Omnibox and soft keyboard (if any). See also Max Autocomplete Matches "
"flag to adjust the limit of offered suggestions. The number of shown "
"suggestions will be no less than the platform default limit.";
const char kOmniboxAdjustIndentationName[] =
"Adjust Indentation for Omnibox Text and Suggestions";
const char kOmniboxAdjustIndentationDescription[] =
"Adjusts the indentation of the omnibox and the suggestions to eliminate "
"the visual shift when the popup opens.";
const char kOmniboxAnswerActionsName[] = "Answer Actions";
const char kOmniboxAnswerActionsDescription[] =
"Answer Actions attaches related Action Chips to Answer suggestions.";
const char kOmniboxAsyncViewInflationName[] = "Async Omnibox view inflation";
const char kOmniboxAsyncViewInflationDescription[] =
"Inflate Omnibox and Suggestions views off the UI thread.";
const char kOmniboxCalcProviderName[] = "Omnibox calc provider";
const char kOmniboxCalcProviderDescription[] =
"When enabled, suggests recent calculator results in the omnibox.";
const char kOmniboxDiagnosticsName[] = "Omnibox Diagnostics (restart twice)";
const char kOmniboxDiagnosticsDescription[] =
"Allows controlling various diagnostic facilities of the Omnibox component."
" Use sparingly, as this may produce significant amount of log output. "
" Restart twice when changing this option.";
const char kOmniboxDomainSuggestionsName[] = "Omnibox Domain Suggestions";
const char kOmniboxDomainSuggestionsDescription[] =
"If enabled, history URL suggestions from hosts visited often bypass the "
"per provider limit.";
const char kOmniboxForceAllowedToBeDefaultName[] =
"Omnibox Force Allowed To Be Default";
const char kOmniboxForceAllowedToBeDefaultDescription[] =
"If enabled, all omnibox suggestions pretend to be inlineable. This likely "
"has a bunch of problems.";
const char kOmniboxGroupingFrameworkZPSName[] =
"Omnibox Grouping Framework for ZPS";
const char kOmniboxGroupingFrameworkNonZPSName[] =
"Omnibox Grouping Framework for Typed Suggestions";
const char kOmniboxGroupingFrameworkDescription[] =
"Enables an alternative grouping implementation for omnibox "
"autocompletion.";
const char kOmniboxMobileParityUpdateName[] = "Omnibox Mobile parity update";
const char kOmniboxMobileParityUpdateDescription[] =
"When set, applies certain assets to match Desktop visuals and "
"descriptions";
const char kOmniboxMostVisitedTilesHorizontalRenderGroupName[] =
"Omnibox MV Tiles Horizontal Render Group";
const char kOmniboxMostVisitedTilesHorizontalRenderGroupDescription[] =
"Updates the logic constructing MV tiles to use horizontal render group. "
"No user-facing changes expected.";
const char kOmniboxNumNtpZpsRecentSearchesName[] =
"Omnibox: Recent Searches on new tab page ZPS";
const char kOmniboxNumNtpZpsRecentSearchesDescription[] =
"Controls presence/volume of Recent Searches shown in zero-prefix context "
"on the New Tab Page";
const char kOmniboxNumNtpZpsTrendingSearchesName[] =
"Omnibox: Trending Searches on new tab page ZPS";
const char kOmniboxNumNtpZpsTrendingSearchesDescription[] =
"Controls presence/volume of Trending Searches shown in zero-prefix "
"context on the New Tab Page";
const char kOmniboxNumSrpZpsRecentSearchesName[] =
"Omnibox: Recent Searches on the SRP ZPS";
const char kOmniboxNumSrpZpsRecentSearchesDescription[] =
"Controls presence/volume of Recent Searches shown in zero-prefix "
"context on the Search Results Page";
const char kOmniboxNumSrpZpsRelatedSearchesName[] =
"Omnibox: Related Searches on the SRP ZPS";
const char kOmniboxNumSrpZpsRelatedSearchesDescription[] =
"Controls presence/volume of Related Searches shown in zero-prefix "
"context on the Search Results Page";
const char kOmniboxNumWebZpsRecentSearchesName[] =
"Omnibox: Recent Searches on the web ZPS";
const char kOmniboxNumWebZpsRecentSearchesDescription[] =
"Controls presence/volume of Recent Searches shown in zero-prefix "
"context on the Web";
const char kOmniboxNumWebZpsRelatedSearchesName[] =
"Omnibox: Related Searches on the web ZPS";
const char kOmniboxNumWebZpsRelatedSearchesDescription[] =
"Controls presence/volume of Related Searches shown in zero-prefix "
"context on the Web";
const char kOmniboxNumWebZpsMostVisitedUrlsName[] =
"Omnibox: Most Visited URLs on the web ZPS";
const char kOmniboxNumWebZpsMostVisitedUrlsDescription[] =
"Controls presence/volume of Most Visited URLs shown in zero-prefix "
"context on the Web";
const char kOmniboxZeroSuggestPrefetchDebouncingName[] =
"Omnibox Zero Prefix Suggest Prefetch Request Debouncing";
const char kOmniboxZeroSuggestPrefetchDebouncingDescription[] =
"Enables the use of a request debouncer to throttle the volume of ZPS "
"prefetch requests issued to the remote Suggest service.";
const char kOmniboxZeroSuggestPrefetchingName[] =
"Omnibox Zero Prefix Suggestion Prefetching on NTP";
const char kOmniboxZeroSuggestPrefetchingDescription[] =
"Enables prefetching of the zero prefix suggestions for eligible users "
"on the New Tab page.";
const char kOmniboxZeroSuggestPrefetchingOnSRPName[] =
"Omnibox Zero Prefix Suggestion Prefetching on SRP";
const char kOmniboxZeroSuggestPrefetchingOnSRPDescription[] =
"Enables prefetching of the zero prefix suggestions for eligible users "
"on the Search Results page.";
const char kOmniboxZeroSuggestPrefetchingOnWebName[] =
"Omnibox Zero Prefix Suggestion Prefetching on the Web";
const char kOmniboxZeroSuggestPrefetchingOnWebDescription[] =
"Enables prefetching of the zero prefix suggestions for eligible users "
"on the Web (i.e. non-NTP and non-SRP URLs).";
const char kOmniboxZeroSuggestInMemoryCachingName[] =
"Omnibox Zero Prefix Suggestion in-memory caching";
const char kOmniboxZeroSuggestInMemoryCachingDescription[] =
"Enables in-memory caching of zero prefix suggestions.";
const char kOmniboxOnDeviceHeadSuggestionsName[] =
"Omnibox on device head suggestions (non-incognito only)";
const char kOmniboxOnDeviceHeadSuggestionsDescription[] =
"Google head non personalized search suggestions provided by a compact on "
"device model for non-incognito. Turn off this feature if you have other "
"apps running which affects local file access (e.g. anti-virus software) "
"and are experiencing searchbox typing lag.";
const char kOmniboxOnDeviceHeadSuggestionsIncognitoName[] =
"Omnibox on device head suggestions (incognito only)";
const char kOmniboxOnDeviceHeadSuggestionsIncognitoDescription[] =
"Google head non personalized search suggestions provided by a compact on "
"device model for incognito. Turn off this feature if you have other "
"apps running which affects local file access (e.g. anti-virus software) "
"and are experiencing searchbox typing lag.";
const char kOmniboxOnDeviceTailSuggestionsName[] =
"Omnibox on device tail suggestions";
const char kOmniboxOnDeviceTailSuggestionsDescription[] =
"Google tail non personalized search suggestions provided by a compact on "
"device model.";
const char kOmniboxRichAutocompletionPromisingName[] =
"Omnibox Rich Autocompletion Promising Combinations";
const char kOmniboxRichAutocompletionPromisingDescription[] =
"Allow autocompletion for titles and non-prefixes. Suggestions whose "
"titles or URLs contain the user input as a continuous chunk, but not "
"necessarily a prefix, can be the default suggestion. Otherwise, only "
"suggestions whose URLs are prefixed by the user input can be.";
const char kOmniboxLocalHistoryZeroSuggestBeyondNTPName[] =
"Allow local history zero-prefix suggestions beyond NTP";
const char kOmniboxLocalHistoryZeroSuggestBeyondNTPDescription[] =
"Enables local history zero-prefix suggestions in every context in which "
"the remote zero-prefix suggestions are enabled.";
const char kOmniboxMiaZps[] = "Omnibox Mia ZPS on NTP";
const char kOmniboxMiaZpsDescription[] =
"Enables Mia ZPS suggestions in NTP omnibox";
const char kOmniboxMlLogUrlScoringSignalsName[] =
"Log Omnibox URL Scoring Signals";
const char kOmniboxMlLogUrlScoringSignalsDescription[] =
"Enables Omnibox to log scoring signals of URL suggestions.";
const char kOmniboxMlUrlPiecewiseMappedSearchBlendingName[] =
"Omnibox ML Scoring with Piecewise Score Mapping";
const char kOmniboxMlUrlPiecewiseMappedSearchBlendingDescription[] =
"Specifies how to blend URL ML scores and search traditional scores using "
"a piecewise ML score mapping function.";
const char kOmniboxMlUrlScoreCachingName[] = "Omnibox ML URL Score Caching";
const char kOmniboxMlUrlScoreCachingDescription[] =
"Enables in-memory caching of ML URL scores.";
const char kOmniboxMlUrlScoringName[] = "Omnibox ML URL Scoring";
const char kOmniboxMlUrlScoringDescription[] =
"Enables ML-based relevance scoring for Omnibox URL Suggestions.";
const char kOmniboxMlUrlScoringModelName[] = "Omnibox URL Scoring Model";
const char kOmniboxMlUrlScoringModelDescription[] =
"Enables ML scoring model for Omnibox URL suggestions.";
const char kOmniboxMlUrlSearchBlendingName[] = "Omnibox ML URL Search Blending";
const char kOmniboxMlUrlSearchBlendingDescription[] =
"Specifies how to blend URL ML scores and search traditional scores.";
const char kOmniboxSuggestionAnswerMigrationName[] =
"Omnibox SuggestionAnswer Migration";
const char kOmniboxSuggestionAnswerMigrationDescription[] =
"Uses protos instead of SuggestionAnswer to hold answer data.";
const char kOmniboxShortcutBoostName[] = "Omnibox shortcut boosting";
const char kOmniboxShortcutBoostDescription[] =
"Promote shortcuts to be default when available.";
const char kOmniboxMaxZeroSuggestMatchesName[] =
"Omnibox Max Zero Suggest Matches";
const char kOmniboxMaxZeroSuggestMatchesDescription[] =
"Changes the maximum number of autocomplete matches displayed when zero "
"suggest is active (i.e. displaying suggestions without input).";
const char kOmniboxUIMaxAutocompleteMatchesName[] =
"Omnibox UI Max Autocomplete Matches";
const char kOmniboxUIMaxAutocompleteMatchesDescription[] =
"Changes the maximum number of autocomplete matches displayed in the "
"Omnibox UI.";
const char kOmniboxStarterPackExpansionName[] =
"Expansion pack for the Site search starter pack";
const char kOmniboxStarterPackExpansionDescription[] =
"Enables additional providers for the Site search starter pack feature";
const char kOmniboxStarterPackIPHName[] =
"IPH message for the Site search starter pack";
const char kOmniboxStarterPackIPHDescription[] =
"Enables an informational IPH message for the Site search starter pack "
"feature";
const char kOmniboxSearchAggregatorName[] = "Omnibox search aggregator";
const char kOmniboxSearchAggregatorDescription[] =
"Enables omnibox suggestions from the search aggregator provider";
const char kContextualSearchBoxUsesContextualSearchProviderName[] =
"Contextual search box uses contextual search provider";
const char kContextualSearchBoxUsesContextualSearchProviderDescription[] =
"Enables the contextual search box to use the ContextualSearchProvider "
"instead of the ZeroSuggestProvider as the source for suggestions.";
const char kContextualSearchOpenLensActionUsesThumbnailName[] =
"Contextual search open Lens action uses thumbnail";
const char kContextualSearchOpenLensActionUsesThumbnailDescription[] =
"Enables web content thumbnail image to override the Lens icon "
"for the omnibox entry point action match.";
const char kContextualSuggestionsAblateOthersWhenPresentName[] =
"Contextual suggestions ablate others when present";
const char kContextualSuggestionsAblateOthersWhenPresentDescription[] =
"Makes contextual search suggestions exclusive in zero suggest.";
const char kOmniboxContextualSearchOnFocusSuggestionsName[] =
"Omnibox contextual search on focus suggestions";
const char kOmniboxContextualSearchOnFocusSuggestionsDescription[] =
"Enables omnibox contextual search suggestions in zero prefix suggest.";
const char kOmniboxContextualSuggestionsName[] =
"Omnibox contextual suggestions";
const char kOmniboxContextualSuggestionsDescription[] =
"Enables omnibox contextual suggestions.";
const char kOmniboxFocusTriggersWebAndSRPZeroSuggestName[] =
"Omnibox on-focus suggestions on web and SRP";
const char kOmniboxFocusTriggersWebAndSRPZeroSuggestDescription[] =
"Enables zero-prefix suggestions on web and SRP when the omnibox is "
"focused, subject to the same conditions and restrictions as on-clobber "
"suggestions.";
const char kOmniboxHideSuggestionGroupHeadersName[] =
"Hide suggestion group headers in the Omnibox popup";
const char kOmniboxHideSuggestionGroupHeadersDescription[] =
"If enabled, suggestion group headers will be hidden in the Omnibox popup "
"(e.g. to minimize visual clutter in the zero-prefix state)";
const char kOmniboxUrlSuggestionsOnFocus[] =
"Omnibox on-focus URL suggestions on web and SRP";
const char kOmniboxUrlSuggestionsOnFocusDecription[] =
"Enables zero-prefix URL suggestions on web and SRP when the omnibox is "
"focused.";
const char kOmniboxShowPopupOnMouseReleasedName[] =
"Show omnibox suggestions popup on mouse released";
const char kOmniboxShowPopupOnMouseReleasedDescription[] =
"Enables delaying presentation of the omnibox suggestions popup until the "
"mouse is released.";
const char kOmniboxZpsSuggestionLimit[] =
"Omnibox suggestion limit for zero prefix suggestions";
const char kOmniboxZpsSuggestionLimitDescription[] =
"Enables limits on the total number of suggestions, as well as separate "
"limits for search and URL suggestions in the omnibox.";
const char kWebUIOmniboxPopupName[] = "WebUI Omnibox Popup";
const char kWebUIOmniboxPopupDescription[] =
"If enabled, shows the omnibox suggestions popup in WebUI.";
const char kOmniboxMaxURLMatchesName[] = "Omnibox Max URL Matches";
const char kOmniboxMaxURLMatchesDescription[] =
"The maximum number of URL matches to show, unless there are no "
"replacements.";
const char kOmniboxDynamicMaxAutocompleteName[] =
"Omnibox Dynamic Max Autocomplete";
const char kOmniboxDynamicMaxAutocompleteDescription[] =
"Configures the maximum number of autocomplete matches displayed in the "
"Omnibox UI dynamically based on the number of URL matches.";
const char kOnDeviceNotificationContentDetectionModelName[] =
"On device notification content detection model";
const char kOnDeviceNotificationContentDetectionModelDescription[] =
"Enables checking the on-device notification content detection model for "
"verdicts on how suspicious the notification content looks and logging "
"metrics based on the response.";
const char kOptimizationGuideDebugLogsName[] =
"Enable optimization guide debug logs";
const char kOptimizationGuideDebugLogsDescription[] =
"Enables the optimization guide to log and save debug messages that can be "
"shown in the internals page.";
const char kOptimizationGuideModelExecutionName[] =
"Enables optimization guide model execution";
const char kOptimizationGuideModelExecutionDescription[] =
"Enables the optimization guide to execute models.";
const char kOptimizationGuideEnableDogfoodLoggingName[] =
"Enable optimization guide dogfood logging";
const char kOptimizationGuideEnableDogfoodLoggingDescription[] =
"If this client is a Google-internal dogfood client, overrides enterprise "
"policy to enable model quality logs. Googlers: See "
"go/chrome-mqls-debug-logging for details.";
const char kOptimizationGuideOnDeviceModelName[] =
"Enables optimization guide on device";
const char kOptimizationGuideOnDeviceModelDescription[] =
"Enables the optimization guide to execute models on device.";
const char kOptimizationGuidePersonalizedFetchingName[] =
"Enable optimization guide personalized fetching";
const char kOptimizationGuidePersonalizedFetchingDescription[] =
"Enables the optimization guide to fetch personalized results, by "
"attaching Gaia.";
const char kOptimizationGuidePushNotificationName[] =
"Enable optimization guide push notifications";
const char kOptimizationGuidePushNotificationDescription[] =
"Enables the optimization guide to receive push notifications.";
const char kOrganicRepeatableQueriesName[] =
"Organic repeatable queries in Most Visited tiles";
const char kOrganicRepeatableQueriesDescription[] =
"Enables showing the most repeated queries, from the device browsing "
"history, organically among the most visited sites in the MV tiles.";
const char kOriginAgentClusterDefaultName[] =
"Origin-keyed Agent Clusters by default";
const char kOriginAgentClusterDefaultDescription[] =
"Select the default behaviour for the Origin-Agent-Cluster http header. "
"If enabled, an absent header will cause pages to be assigned to an "
"origin-keyed agent cluster, and to a site-keyed agent cluster when "
"disabled. Documents whose agent clusters are origin-keyed cannot set "
"document.domain to relax the same-origin policy.";
const char kOriginKeyedProcessesByDefaultName[] =
"Origin-keyed Processes by default";
const char kOriginKeyedProcessesByDefaultDescription[] =
"Enables origin-keyed process isolation for most pages (i.e., those "
"assigned to an origin-keyed agent cluster by default). This improves "
"security but also increases the number of processes created. Note: "
"enabling this feature also enables 'Origin-keyed Agent Clusters by "
"default'.";
const char kOverlayScrollbarsName[] = "Overlay Scrollbars";
const char kOverlayScrollbarsDescription[] =
"Enable the experimental overlay scrollbars implementation. You must also "
"enable threaded compositing to have the scrollbars animate.";
const char kOverlayStrategiesName[] = "Select HW overlay strategies";
const char kOverlayStrategiesDescription[] =
"Select strategies used to promote quads to HW overlays. Note that "
"strategies other than Default may break playback of protected content.";
const char kOverlayStrategiesDefault[] = "Default";
const char kOverlayStrategiesNone[] = "None";
const char kOverlayStrategiesUnoccludedFullscreen[] =
"Unoccluded fullscreen buffers (single-fullscreen)";
const char kOverlayStrategiesUnoccluded[] =
"Unoccluded buffers (single-fullscreen,single-on-top)";
const char kOverlayStrategiesOccludedAndUnoccluded[] =
"Occluded and unoccluded buffers "
"(single-fullscreen,single-on-top,underlay)";
const char kOverscrollHistoryNavigationName[] = "Overscroll history navigation";
const char kOverscrollHistoryNavigationDescription[] =
"History navigation in response to horizontal overscroll.";
const char kPageActionsMigrationName[] = "Page actions migration";
const char kPageActionsMigrationDescription[] =
"Enables a new internal framework for driving page actions behavior.";
const char kPageContentAnnotationsName[] = "Page content annotations";
const char kPageContentAnnotationsDescription[] =
"Enables page content to be annotated on-device.";
const char kPageContentAnnotationsPersistSalientImageMetadataName[] =
"Page content annotations - Persist salient image metadata";
const char kPageContentAnnotationsPersistSalientImageMetadataDescription[] =
"Enables salient image metadata per page load to be persisted on-device.";
const char kPageContentAnnotationsRemotePageMetadataName[] =
"Page content annotations - Remote page metadata";
const char kPageContentAnnotationsRemotePageMetadataDescription[] =
"Enables fetching of page load metadata to be persisted on-device.";
const char kPageEmbeddedPermissionControlName[] =
"Page embedded permission control (permission element)";
const char kPageEmbeddedPermissionControlDescription[] =
"Enables the Page Embedded Permission Control feature, which allows the "
"use of the HTML 'permission' element.";
const char kPageImageServiceOptimizationGuideSalientImagesName[] =
"Page Image Service - Optimization Guide Salient Images";
const char kPageImageServiceOptimizationGuideSalientImagesDescription[] =
"Enables the PageImageService fetching images from the Optimization Guide "
"Salient Images source.";
const char kPageImageServiceSuggestPoweredImagesName[] =
"Page Image Service - Suggest Powered Images";
const char kPageImageServiceSuggestPoweredImagesDescription[] =
"Enables the PageImageService fetching images from the Suggest source.";
const char kPageInfoAboutThisPagePersistentEntryName[] =
"AboutThisPage persistent SidePanel entry";
const char kPageInfoAboutThisPagePersistentEntryDescription[] =
"Registers a SidePanel entry on pageload if 'AboutThisPage' info is "
"available";
const char kPageInfoCookiesSubpageName[] = "Cookies subpage in page info";
const char kPageInfoCookiesSubpageDescription[] =
"Enable the Cookies subpage in page info for managing cookies and site "
"data.";
const char kPageInfoHideSiteSettingsName[] = "Page info hide site settings";
const char kPageInfoHideSiteSettingsDescription[] =
"Hides site settings row in the page info menu.";
const char kPageInfoHistoryDesktopName[] = "Page info history";
const char kPageInfoHistoryDesktopDescription[] =
"Enable a history section in the page info.";
const char kPageVisibilityPageContentAnnotationsName[] =
"Page visibility content annotations";
const char kPageVisibilityPageContentAnnotationsDescription[] =
"Enables annotating the page visibility model for each page load "
"on-device.";
const char kParallelDownloadingName[] = "Parallel downloading";
const char kParallelDownloadingDescription[] =
"Enable parallel downloading to accelerate download speed.";
const char kPartitionAllocMemoryTaggingName[] = "PartitionAlloc Memory Tagging";
const char kPartitionAllocMemoryTaggingDescription[] =
"Enable memory tagging in PartitionAlloc.";
const char kPartitionAllocWithAdvancedChecksName[] =
"PartitionAlloc with Advanced Checks";
const char kPartitionAllocWithAdvancedChecksDescription[] =
"Enables an extra security layer on PartitionAlloc.";
const char kPartitionVisitedLinkDatabaseName[] =
"Partition the Visited Link Database";
const char kPartitionVisitedLinkDatabaseDescription[] =
"Style links as visited only if they have been clicked from this top-level "
"site and frame origin before.";
const char kPartitionVisitedLinkDatabaseWithSelfLinksName[] =
"Partition the Visited Link Database, including 'self-links'";
const char kPartitionVisitedLinkDatabaseWithSelfLinksDescription[] =
"Style links as visited only if they have been clicked from this top-level "
"site and frame origin before. Additionally, style links pointing to the "
"same URL as the page it is displayed on, which have been :visited from "
"any top-level site and frame origin, if they are displayed in a top-level "
"frame or same-origin subframe.";
const char kPartitionedPopinsName[] = "Partitioned Popins";
const char kPartitionedPopinsDescription[] =
"Allows Partitioned Popins to be opened.";
const char kPasswordFormClientsideClassifierName[] =
"Clientside password form classifier.";
const char kPasswordFormClientsideClassifierDescription[] =
"Enable usage of new password form classifier on the client.";
const char kPasswordFormGroupedAffiliationsName[] =
"Grouped affiliation password suggestions";
const char kPasswordFormGroupedAffiliationsDescription[] =
"Enables offering credentials coming from grouped domains for "
"filling";
const char kPasswordManagerShowSuggestionsOnAutofocusName[] =
"Showing password suggestions on autofocused password forms";
const char kPasswordManagerShowSuggestionsOnAutofocusDescription[] =
"Enables showing password suggestions without requiring the user to "
"click on the already focused field if the field was autofocused on "
"the page load.";
const char kPasswordManualFallbackAvailableName[] = "Password manual fallback";
const char kPasswordManualFallbackAvailableDescription[] =
"Enables triggering password suggestions through the context menu";
const char kPasswordParsingOnSaveUsesPredictionsName[] =
"Use server predictions for password form parsing on saving";
const char kPasswordParsingOnSaveUsesPredictionsDescription[] =
"Take server prediction into account when parsing password forms "
"during saving.";
const char kPdfSearchifyName[] = "Make the text in PDF images interactable";
const char kPdfSearchifyDescription[] =
"Enables a feature which runs OCR on PDF images and makes the recognized "
"text searchable and editable.";
const char kPdfXfaFormsName[] = "PDF XFA support";
const char kPdfXfaFormsDescription[] =
"Enables support for XFA forms in PDFs. "
"Has no effect if Chrome was not built with XFA support.";
const char kAutoWebContentsDarkModeName[] = "Auto Dark Mode for Web Contents";
const char kAutoWebContentsDarkModeDescription[] =
"Automatically render all web contents using a dark theme.";
const char kForcedColorsName[] = "Forced Colors";
const char kForcedColorsDescription[] =
"Enables forced colors mode for web content.";
const char kLeftHandSideActivityIndicatorsName[] =
"Left-hand side activity indicators";
const char kLeftHandSideActivityIndicatorsDescription[] =
"Moves activity indicators to the left-hand side of location bar.";
#if !BUILDFLAG(IS_ANDROID)
const char kMerchantTrustName[] = "Merchant Trust";
const char kMerchantTrustDescription[] =
"Enables the merchant trust UI in page info.";
#endif
#if !BUILDFLAG(IS_ANDROID)
const char kPrivacyPolicyInsightsName[] = "Privacy Policy Insights";
const char kPrivacyPolicyInsightsDescription[] =
"Enables the privacy policy insights UI in page info.";
#endif
#if BUILDFLAG(IS_CHROMEOS)
const char kCrosSystemLevelPermissionBlockedWarningsName[] =
"Chrome OS block warnings";
const char kCrosSystemLevelPermissionBlockedWarningsDescription[] =
"Displays warnings in browser if camera, microphone or geolocation is "
"disabled in the OS.";
#endif
const char kPermissionsAIv1Name[] = "PermissionsAIv1";
const char kPermissionsAIv1Description[] =
"Use the Permission Predictions Service and the AIv1 model to surface "
"permission requests using a quieter UI when the likelihood of the user "
"granting the permission is predicted to be low. Requires `Make Searches "
"and Browsing Better` to be enabled.";
const char kPermissionsAIv3Name[] = "PermissionsAIv3";
const char kPermissionsAIv3Description[] =
"Use the Permission Predictions Service and the AIv3 model to surface "
"permission notification requests using a quieter UI when the likelihood "
"of the user granting the permission is predicted to be low. Requires "
"`Make Searches and Browsing Better` to be enabled.";
const char kPermissionsAIv3GeolocationName[] = "PermissionsAIv3Geolocation";
const char kPermissionsAIv3GeolocationDescription[] =
"Use the Permission Predictions Service and the AIv3 model to surface "
"permission geolocation requests using a quieter UI when the likelihood "
"of the user granting the permission is predicted to be low. Requires "
"`Make Searches and Browsing Better` to be enabled.";
const char kPermissionSiteSettingsRadioButtonName[] =
"Permission radio buttons in Site Settings";
const char kPermissionSiteSettingsRadioButtonDescription[] =
"Enables radio buttons for permissions in SiteSettings";
const char kReportNotificationContentDetectionDataName[] =
"Option to report notifications to Google";
const char kReportNotificationContentDetectionDataDescription[] =
"Enables reporting a notification's contents to Google, when the user taps "
"the `Report` button on the notification.";
const char kShowRelatedWebsiteSetsPermissionGrantsName[] =
"Show permission grants from Related Website Sets";
const char kShowRelatedWebsiteSetsPermissionGrantsDescription[] =
"Shows permission grants created by Related Website Sets in Chrome "
"Settings UI and Page Info Bubble, "
"default is hidden";
const char kShowWarningsForSuspiciousNotificationsName[] =
"Show Warnings for Suspicious Notifications";
const char kShowWarningsForSuspiciousNotificationsDescription[] =
"Enables replacing notification contents with a warning when the on-device "
"notification content detection model returns a suspicious verdict.";
const char kPowerBookmarkBackendName[] = "Power bookmark backend";
const char kPowerBookmarkBackendDescription[] =
"Enables storing additional metadata to support power bookmark features.";
const char kSpeculationRulesPrerenderingTargetHintName[] =
"Speculation Rules API target hint";
const char kSpeculationRulesPrerenderingTargetHintDescription[] =
"Enable target_hint param on Speculation Rules API for prerendering.";
const char kSubframeProcessReuseThresholds[] =
"Subframe process reuse thresholds";
const char kSubframeProcessReuseThresholdsDescription[] =
"Enable thresholds for subframe process reuse. When "
"out-of-process iframes attempt to reuse compatible processes from "
"unrelated tabs, process reuse will only be allowed if the process stays "
"below predefined thresholds (e.g., below a certain memory limit).";
const char kPrerender2EarlyDocumentLifecycleUpdateName[] =
"Prerender more document lifecycle phases";
const char kPrerender2EarlyDocumentLifecycleUpdateDescription[] =
"Allows prerendering pages to execute more lifecycle updates, such as "
"prepaint, before activation";
const char kTreesInVizName[] = "Trees in viz";
const char kTreesInVizDescription[] =
"Enables the renderer to send a CC LayerTree to the viz/gpu process "
"instead of a CompositorFrame. This allows viz to generate and submit "
"the CompositorFrame directly.";
const char kPrerender2ForNewTabPageAndroidName[] =
"Enable prerendering on New Tab Page Android";
const char kPrerender2ForNewTabPageAndroidDescription[] =
"Enables prerendering for navigations initiated by New Tab Page on Android";
const char kEnableOmniboxSearchPrefetchName[] = "Omnibox prefetch Search";
const char kEnableOmniboxSearchPrefetchDescription[] =
"Allows omnibox to prefetch likely search suggestions provided by the "
"Default Search Engine";
const char kEnableOmniboxClientSearchPrefetchName[] =
"Omnibox client prefetch Search";
const char kEnableOmniboxClientSearchPrefetchDescription[] =
"Allows omnibox to prefetch search suggestions provided by the Default "
"Search Engine that the client thinks are likely to be navigated. Requires "
"chrome://flags/#omnibox-search-prefetch";
const char kPriceChangeModuleName[] = "Price Change Module";
const char kPriceChangeModuleDescription[] =
"Show a module with price drops of open tabs on new tab page.";
const char kPrivacySandboxAdTopicsContentParityName[] =
"Privacy Sandbox Ad Topics Content Parity";
const char kPrivacySandboxAdTopicsContentParityDescription[] =
"Enables the Ad Topics card in the Privacy Guide to be displayed. This "
"flag also updates UI and text of the Ad Topics settings page and Topics "
"Consent Dialog. All of these changes are subject to regional "
"availability.";
const char kPrivacySandboxAdsApiUxEnhancementsName[] =
"Privacy Sandbox Ads API UX Enhancements";
const char kPrivacySandboxAdsApiUxEnhancementsDescription[] =
"Enables UI and text updates to the Privacy Sandbox Ads APIs Notice and "
"Consent UX, and settings pages to improve user comprehension";
const char kPrivacySandboxEnrollmentOverridesName[] =
"Privacy Sandbox Enrollment Overrides";
const char kPrivacySandboxEnrollmentOverridesDescription[] =
"Allows a list of sites to use Privacy Sandbox features without them being "
"enrolled and attested into the Privacy Sandbox experiment. See: "
"https://developer.chrome.com/en/docs/privacy-sandbox/enroll/";
const char kPrivacySandboxEqualizedPromptButtonsName[] =
"Privacy Sandbox Equalized Prompt Buttons";
const char kPrivacySandboxEqualizedPromptButtonsDescription[] =
"Enables equalized styling for the dismissal buttons on the Privacy "
"Sandbox Prompt.";
const char kPrivacySandboxInternalsName[] = "Privacy Sandbox Internals Page";
const char kPrivacySandboxInternalsDescription[] =
"Enables the chrome://privacy-sandbox-internals debugging page.";
const char kProtectedAudiencesConsentedDebugTokenName[] =
"Protected Audiences Consented Debug Token";
const char kProtectedAudiencesConsentedDebugTokenDescription[] =
"Enables Protected Audience Consented Debugging with the provided token. "
"Protected Audience auctions running on a Bidding and Auction API trusted "
"server with a matching token will be able to log information about the "
"auction to enable debugging. Note that this logging may include "
"information about the user's browsing history normally kept private.";
const char kPullToRefreshName[] = "Pull-to-refresh gesture";
const char kPullToRefreshDescription[] =
"Pull-to-refresh gesture in response to vertical overscroll.";
const char kPullToRefreshEnabledTouchscreen[] = "Enabled for touchscreen only";
const char kPwaUpdateDialogForAppIconName[] =
"Enable PWA install update dialog for icon changes";
const char kPwaUpdateDialogForAppIconDescription[] =
"Enable a confirmation dialog that shows up when a PWA changes its icon";
const char kRenderDocumentName[] = "Enable RenderDocument";
const char kRenderDocumentDescription[] =
"Enable swapping RenderFrameHosts on same-site navigations";
const char kRendererSideContentDecodingName[] =
"Renderer-side content decoding";
const char kRendererSideContentDecodingDescription[] =
"Enables renderer-side content decoding (decompression). When enabled, the "
"network service sends compressed HTTP response bodies to the renderer "
"process.";
const char kDeviceBoundSessionAccessObserverSharedRemoteName[] =
"Reduce device bound session access observer IPC";
const char kDeviceBoundSessionAccessObserverSharedRemoteDescription[] =
"Enables the optimization of reducing unnecessary IPC for cloning "
"DeviceBoundSessionAccessObserver.";
#if BUILDFLAG(IS_ANDROID)
const char kBackgroundCompactMessageName[] = "Enable Background Compaction";
const char kBackgroundCompactDescription[] =
"Compact memory for all tabs while chrome is backgrounded";
const char kRunningCompactMessageName[] = "Enable Running Compaction";
const char kRunningCompactDescription[] =
"Compact memory tabs that haven't been used in a while while chrome "
"is running.";
#endif
#if BUILDFLAG(SKIA_BUILD_RUST_PNG)
const char kRustyPngName[] = "Rust-based PNG image handling";
const char kRustyPngDescription[] =
"When enabled, uses Rust `png` crate to decode and encode PNG images.";
#endif
const char kQuicName[] = "Experimental QUIC protocol";
const char kQuicDescription[] = "Enable experimental QUIC protocol support.";
const char kQuickAppAccessTestUIName[] = "Internal test: quick app access";
const char kQuickAppAccessTestUIDescription[] =
"Show an app in the quick app access area at the start of the session";
const char kQuickDeleteAndroidSurveyName[] = "HaTS for Quick Delete on Android";
const char kQuickDeleteAndroidSurveyDescription[] =
"Enables HaTS survey for Quick Delete on Android.";
const char kQuickShareV2Name[] = "Quick Share v2";
const char kQuickShareV2Description[] =
"Enables Quick Share v2, which defaults Quick Share to 'Your Devices' "
"visibility, removes the 'Selected Contacts' visibility, removes the Quick "
"Share On/Off toggle.";
const char kSendTabToSelfIOSPushNotificationsName[] =
"Send tab to self iOS push notifications";
const char kSendTabToSelfIOSPushNotificationsDescription[] =
"Feature to allow users to send tabs to their iOS device through a system "
"push notification.";
#if BUILDFLAG(IS_ANDROID)
const char kSensitiveContentName[] =
"Redact sensitive content during screen sharing, screen recording, "
"and similar actions";
const char kSensitiveContentDescription[] =
"When enabled, if sensitive form fields (such as credit cards, passwords) "
"are present on the page, the entire content area is redacted during "
"screen sharing, screen recording, and similar actions. This feature "
"works only on Android V or above.";
const char kSensitiveContentWhileSwitchingTabsName[] =
"Redact sensitive content while switching tabs during screen sharing, "
"screen recording, and similar actions";
const char kSensitiveContentWhileSwitchingTabsDescription[] =
"When enabled, if a tab switching surface provides a preview of a tab that "
"contains sensitive content, the screen is redacted during screen sharing, "
"screen recording, and similar actions. This feature works only on Android "
"V or above, and if #sensitive-content is also enabled.";
#endif // BUILDFLAG(IS_ANDROID)
const char kSettingsAppNotificationSettingsName[] =
"Split notification permission settings";
const char kSettingsAppNotificationSettingsDescription[] =
"Remove per-app notification permissions settings from the quick settings "
"menu. Notification permission settings will be moved to the ChromeOS "
"settings app.";
const char kSyncPointGraphValidationName[] = "Sync point graph validation";
const char kSyncPointGraphValidationDescription[] =
"When enabled, replaces synchronous GPU sync point validation with graph "
"based validation";
const char kRecordWebAppDebugInfoName[] = "Record web app debug info";
const char kRecordWebAppDebugInfoDescription[] =
"Enables recording additional web app related debugging data to be "
"displayed in: chrome://web-app-internals";
#if BUILDFLAG(IS_MAC)
const char kReduceIPAddressChangeNotificationName[] =
"Reduce IP address change notification";
const char kReduceIPAddressChangeNotificationDescription[] =
"Reduce the frequency of IP address change notifications that result in "
"TCP and QUIC connection resets.";
#endif // BUILDFLAG(IS_MAC)
const char kReduceAcceptLanguageHTTPName[] =
"Reduce Accept-Language request header only";
const char kReduceAcceptLanguageHTTPDescription[] =
"Reduce the amount of information available in the Accept-Language request "
"header only. chrome://flags/#reduce-accept-language overrides this flag, "
"and if enabled, the changes will take effect for Javascript as well. See "
"https://github.com/explainers-by-googlers/reduce-accept-language for more "
"information.";
const char kReduceAcceptLanguageName[] =
"Reduce Accept-Language request header and JavaScript navigator.languages.";
const char kReduceAcceptLanguageDescription[] =
"Reduce the amount of information in the Accept-Language request header "
"and JavaScript navigator.languages. Enabling this flag overrides the "
"behavior of chrome://flags/#reduce-accept-language-http, which by itself "
"only reduces the Accept-Language request header when enabled. For more "
"information, see "
"https://github.com/explainers-by-googlers/reduce-accept-language.";
const char kReduceTransferSizeUpdatedIPCName[] =
"Reduce TransferSizeUpdated IPC";
const char kReduceTransferSizeUpdatedIPCDescription[] =
"When enabled, the network service will send TransferSizeUpdatedIPC IPC "
"only when DevTools is attached or the request is for an ad request.";
#if BUILDFLAG(IS_LINUX)
const char kReduceUserAgentDataLinuxPlatformVersionName[] =
"Reduce Linux platform version Client Hint";
const char kReduceUserAgentDataLinuxPlatformVersionDescription[] =
"Set platform version Client Hint on Linux to empty string.";
#endif // BUILDFLAG(IS_LINUX)
#if BUILDFLAG(IS_ANDROID)
const char kReplaceSyncPromosWithSignInPromosName[] =
"Replace all sync-related UI with sign-in ones";
const char kReplaceSyncPromosWithSignInPromosDescription[] =
"Follow-ups to the project that replaced sync-related UIs with sign-in "
"ones.";
#endif // BUILDFLAG(IS_ANDROID)
const char kResetShortcutCustomizationsName[] =
"Reset all shortcut customizations";
const char kResetShortcutCustomizationsDescription[] =
"Resets all shortcut customizations on startup.";
#if BUILDFLAG(IS_ANDROID)
const char kRetainOmniboxOnFocusName[] = "Retain omnibox on focus";
const char kRetainOmniboxOnFocusDescription[] =
"Whether the contents of the omnibox should be retained on focus as "
"opposed to being cleared. When this feature flag is enabled and the "
"omnibox contents are retained, focus events will also result in the "
"omnibox contents being fully selected so as to allow for easy replacement "
"by the user. Note that even with this feature flag enabled, only large "
"screen devices with an attached keyboard and precision pointer will "
"exhibit a change in behavior.";
#endif // BUILDFLAG(IS_ANDROID)
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX)
const char kRootScrollbarFollowsTheme[] = "Make scrollbar follow theme";
const char kRootScrollbarFollowsThemeDescription[] =
"If enabled makes the root scrollbar follow the browser's theme color.";
#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX)
const char kRoundedWindows[] = "Use rounded windows";
const char kRoundedWindowsDescription[] =
"Specifies the radius of rounded windows in DIPs (Device Independent "
"Pixels)";
const char kRubyShortHeuristicsName[] = "Short ruby heuristics";
const char kRubyShortHeuristicsDescription[] =
"When enabled, line breaking doesn't happen inside <ruby>s with shorter "
"contents even if `text-wrap: nowrap` is not specified.";
const char kMBIModeName[] = "MBI Scheduling Mode";
const char kMBIModeDescription[] =
"Enables independent agent cluster scheduling, via the "
"AgentSchedulingGroup infrastructure.";
const char kSafetyCheckUnusedSitePermissionsName[] =
"Permission Module for unused sites in Safety Check";
const char kSafetyCheckUnusedSitePermissionsDescription[] =
"When enabled, adds the unused sites permission module to Safety Check on "
"desktop. The module will be shown depending on the browser state.";
const char kSafetyHubName[] = "Safety Check v2";
const char kSafetyHubDescription[] =
"When enabled, Safety Check v2 will be visible in settings.";
#if BUILDFLAG(IS_ANDROID)
const char kSafetyHubMagicStackName[] = "Safety Check v2 - Magic Stack";
const char kSafetyHubMagicStackDescription[] =
"When enabled, a magic stack card will be visible for Safety Check v2 if "
"trigger conditions are met.";
const char kSafetyHubFollowupName[] = "Followup for Safety Check v2";
const char kSafetyHubFollowupDescription[] =
"Enables some follow up work for Safety Check v2 if, this includes some "
"enhancements to the passwords module on the Safety Check page and "
"enabling the password card on magic stack.";
const char kSafetyHubLocalPasswordsModuleName[] =
"Enables the local passwords module in Safety Hub";
const char kSafetyHubLocalPasswordsModuleDescription[] =
"Enables showing the local passwords module in Safety Hub.";
const char kSafetyHubUnifiedPasswordsModuleName[] =
"Enables the unified passwords module in Safety Hub";
const char kSafetyHubUnifiedPasswordsModuleDescription[] =
"Enables the unified passwords module in Safety Hub, which includes "
"account and local passwords.";
const char kSafetyHubAndroidSurveyName[] =
"HaTS for Safety Check v2 on Android";
const char kSafetyHubAndroidSurveyDescription[] =
"Enables control & proactive HaTS surveys for Safety Check v2 on Android.";
const char kSafetyHubAndroidSurveyV2Name[] =
"New triggers for HaTS for Safety Check v2 on Android";
const char kSafetyHubAndroidSurveyV2Description[] =
"Enables new triggers for the HaTS surveys for Safety Check v2 on Android.";
const char kSafetyHubWeakAndReusedPasswordsName[] =
"Enables Weak and Reused passwords in Safety Hub";
const char kSafetyHubWeakAndReusedPasswordsDescription[] =
"Enables showing weak and reused passwords in the password module of "
"Safety Hub.";
#else
const char kSafetyHubHaTSOneOffSurveyName[] =
"HaTS for Safety Check v2 on Desktop";
const char kSafetyHubHaTSOneOffSurveyDescription[] =
"Enables one-off HaTS surveys for Safety Check v2 on Desktop.";
#endif // BUILDFLAG(IS_ANDROID)
const char kSafetyHubAbusiveNotificationRevocationName[] =
"Include abusive notification sites in the Permissions Module of Safety "
"Hub";
const char kSafetyHubAbusiveNotificationRevocationDescription[] =
"When enabled, includes abusive notification permission revocation in the "
"site permission module of Safety Hub on desktop.";
#if !BUILDFLAG(IS_ANDROID)
const char kSafetyHubServicesOnStartUpName[] =
"Create Safety Hub services on start up";
const char kSafetyHubServicesOnStartUpDescription[] =
"When enabled, Safety Hub services are created on start up enabling its "
"checks to start right away.";
#endif // !BUILDFLAG(IS_ANDROID)
const char kSameAppWindowCycleName[] = "Cros Labs: Same App Window Cycling";
const char kSameAppWindowCycleDescription[] =
"Use Alt+` to cycle through the windows of the active application.";
const char kTestThirdPartyCookiePhaseoutName[] =
"Test Third Party Cookie Phaseout";
const char kTestThirdPartyCookiePhaseoutDescription[] =
"Enable to test third-party cookie phaseout. "
"Learn more: https://goo.gle/3pcd-flags";
const char kScrollableTabStripFlagId[] = "scrollable-tabstrip";
const char kScrollableTabStripName[] = "Tab Scrolling";
const char kScrollableTabStripDescription[] =
"Enables tab strip to scroll left and right when full.";
const char kTabstripComboButtonFlagId[] = "tabstrip-combo-button";
const char kTabstripComboButtonName[] = "Tabstrip Combo Button";
const char kTabstripComboButtonDescription[] =
"Combines tab search and the new tab button into a single combo button. "
"Might require tab search toolbar flag to be disabled to take effect in "
"specific regions.";
const char kLaunchedTabSearchToolbarName[] = "Tab Search Toolbar Button";
const char kLaunchedTabSearchToolbarDescription[] =
"Enables tab search button to be in toolbar area. "
"Might require enabling the tab strip combo button configuration to also "
"match to toolbar in specific regions.";
const char kTabScrollingButtonPositionFlagId[] =
"tab-scrolling-button-position";
const char kTabScrollingButtonPositionName[] = "Tab Scrolling Buttons";
const char kTabScrollingButtonPositionDescription[] =
"Enables buttons on the tab strip to scroll left and right when full";
const char kScrollableTabStripWithDraggingFlagId[] =
"scrollable-tabstrip-with-dragging";
const char kScrollableTabStripWithDraggingName[] =
"Tab Scrolling With Dragging";
const char kScrollableTabStripWithDraggingDescription[] =
"Scrolls the tabstrip while dragging tabs towards the end of the visible "
"view.";
const char kScrollableTabStripOverflowFlagId[] = "scrollable-tabstrip-overflow";
const char kScrollableTabStripOverflowName[] =
"Tab Scrolling Overflow Indicator";
const char kScrollableTabStripOverflowDescription[] =
"Choices for overflow indicators shown when the tabstrip is in scrolling "
"mode.";
const char kSplitTabStripName[] = "Split TabStrip";
const char kSplitTabStripDescription[] =
"Splits pinned and unpinned tabs into separate TabStrips under the hood. "
"Pure refactoring, no user-visible behavioral changes are included.";
const char kDynamicSearchUpdateAnimationName[] =
"Dynamic Search Result Update Animation";
const char kDynamicSearchUpdateAnimationDescription[] =
"Dynamically adjust the search result update animation when those update "
"animations are preempted. Shortened animation durations configurable "
"(unit: milliseconds).";
const char kSecurePaymentConfirmationAvailabilityAPIName[] =
"securePaymentConfirmationAvailability API";
const char kSecurePaymentConfirmationAvailabilityAPIDescription[] =
"Enables the PaymentRequest.securePaymentConfirmationAvailability web API, "
"which allows for more ergonomic feature detection of Secure Payment "
"Confirmation";
const char kSecurePaymentConfirmationBrowserBoundKeysName[] =
"Secure Payment Confirmation Browser Bound Key";
const char kSecurePaymentConfirmationBrowserBoundKeysDescription[] =
"This flag enables an additional browser-bound signature in secure payment "
"confirmation in PaymentRequest and for WebAuthn payment credentials.";
const char kSecurePaymentConfirmationDebugName[] =
"Secure Payment Confirmation Debug Mode";
const char kSecurePaymentConfirmationDebugDescription[] =
"This flag removes the restriction that PaymentCredential in WebAuthn and "
"secure payment confirmation in PaymentRequest API must use user verifying "
"platform authenticators.";
const char kSecurePaymentConfirmationFallbackName[] =
"Secure Payment Confirmation Fallback UX";
const char kSecurePaymentConfirmationFallbackDescription[] =
"Enable the fallback experience in Secure Payment Confirmation, where a "
"transaction dialog-like UX is shown even if no credentials match.";
const char kSecurePaymentConfirmationNetworkAndIssuerIconsName[] =
"Secure Payment Confirmation Network and Issuer Icons";
const char kSecurePaymentConfirmationNetworkAndIssuerIconsDescription[] =
"Allow the passing in and display of card network and issuer icons for the "
"Secure Payment Confirmation Web API.";
const char kSecurePaymentConfirmationUxRefreshName[] =
"Secure Payment Confirmation UX Refresh";
const char kSecurePaymentConfirmationUxRefreshDescription[] =
"This flag enables new UX in the secure payment confirmation dialog "
"including new output states, payment instrument details and payment "
"entities logos.";
const char kSegmentationSurveyPageName[] =
"Segmentation survey internals page and model";
const char kSegmentationSurveyPageDescription[] =
"Enable internals page for survey and fetching model";
const char kServiceWorkerAutoPreloadName[] = "ServiceWorkerAutoPreload";
const char kServiceWorkerAutoPreloadDescription[] =
"Dispatches a preload request for navigation before starting the service "
"worker. See "
"https://github.com/explainers-by-googlers/service-worker-auto-preload";
const char kSharingDesktopScreenshotsName[] = "Desktop Screenshots";
const char kSharingDesktopScreenshotsDescription[] =
"Enables taking"
" screenshots from the desktop sharing hub.";
const char kShowAutofillSignaturesName[] = "Show autofill signatures.";
const char kShowAutofillSignaturesDescription[] =
"Annotates web forms with Autofill signatures as HTML attributes. Also "
"marks password fields suitable for password generation.";
const char kShowAutofillTypePredictionsName[] = "Show Autofill predictions";
const char kShowAutofillTypePredictionsDescription[] =
"Annotates web forms with Autofill field type predictions as placeholder "
"text.";
const char kShowOverdrawFeedbackName[] = "Show overdraw feedback";
const char kShowOverdrawFeedbackDescription[] =
"Visualize overdraw by color-coding elements based on if they have other "
"elements drawn underneath.";
const char kAccessibilityOnScreenModeName[] =
"On-Screen Only Accessibility Nodes";
const char kAccessibilityOnScreenModeDescription[] =
"Enable experimental accessibility mode to improve performance which "
"allows assistive technologies to access only accessibility nodes that are "
"on-screen";
#if !BUILDFLAG(IS_CHROMEOS)
const char kFeedbackIncludeVariationsName[] = "Feedback include variations";
const char kFeedbackIncludeVariationsDescription[] =
"In Chrome feedback report, include commandline variations.";
#endif
const char kSideBySideName[] = "Split View";
const char kSideBySideDescription[] =
"Allows users to view two tabs "
"simultaneously in a split view.";
const char kSidePanelResizingFlagId[] = "side-panel-resizing";
const char kSidePanelResizingName[] = "Side Panel Resizing";
const char kSidePanelResizingDescription[] =
"Allows users to resize the side panel and persist the width across "
"browser sessions.";
const char kSiteInstanceGroupsForDataUrlsName[] =
"SiteInstanceGroups for data: URLs";
const char kSiteInstanceGroupsForDataUrlsDescription[] =
"Put data: URL subframes in a separate SiteInstance from the initiator, "
"but in the same SiteInstanceGroup, and thus the same process.";
const char kDefaultSiteInstanceGroupsName[] = "Default SiteInstanceGroups";
const char kDefaultSiteInstanceGroupsDescription[] =
"Put sites that don't need isolation in their own SiteInstance in a default"
"SiteInstanceGroup (per BrowsingContextGroup) instead of in a default "
"SiteInstance.";
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || \
BUILDFLAG(IS_CHROMEOS)
const char kPwaNavigationCapturingName[] = "Desktop PWA Link Capturing";
const char kPwaNavigationCapturingDescription[] =
"Enables opening links from Chrome in an installed PWA. Currently under "
"reimplementation.";
#endif
const char kIsolateOriginsName[] = "Isolate additional origins";
const char kIsolateOriginsDescription[] =
"Requires dedicated processes for an additional set of origins, "
"specified as a comma-separated list.";
const char kIsolationByDefaultName[] =
"Change web-facing behaviors that prevent origin-level isolation";
const char kIsolationByDefaultDescription[] =
"Change several web APIs that make it difficult to isolate origins into "
"distinct processes. While these changes will ideally become new default "
"behaviors for the web, this flag is likely to break your experience on "
"sites you visit today.";
const char kSignatureBasedSriName[] = "Signature-based Integrity Checks";
const char kSignatureBasedSriDescription[] =
"Enables signature-based "
"integrity checks, as proposed in "
"https://wicg.github.io/signature-based-sri/.";
const char kSiteIsolationOptOutName[] = "Disable site isolation";
const char kSiteIsolationOptOutDescription[] =
"Disables site isolation "
"(SitePerProcess, IsolateOrigins, etc). Intended for diagnosing bugs that "
"may be due to out-of-process iframes. Opt-out has no effect if site "
"isolation is force-enabled using a command line switch or using an "
"enterprise policy. "
"Caution: this disables important mitigations for the Spectre CPU "
"vulnerability affecting most computers.";
const char kSiteIsolationOptOutChoiceDefault[] = "Default";
const char kSiteIsolationOptOutChoiceOptOut[] = "Disabled (not recommended)";
const char kSkiaGraphiteName[] = "Skia Graphite";
const char kSkiaGraphiteDescription[] =
"Enable Skia Graphite. This will use the Dawn backend by default, but can "
"be overridden with command line flags for testing on non-official "
"developer builds. See --skia-graphite-backend flag in gpu_switches.h.";
const char kSkiaGraphitePrecompilationName[] = "Skia Graphite Precompilation";
const char kSkiaGraphitePrecompilationDescription[] =
"Enable Skia Graphite Precompilation. This is only relevant when Graphite "
"is enabled "
"but can then be overridden via the "
"--enable-skia-graphite-precompilation and "
"--disable-skia-graphite-precompilation "
"command line flags";
const char kBackdropFilterMirrorEdgeName[] = "Backdrop Filter Mirror Edge";
const char kBackdropFilterMirrorEdgeDescription[] =
"When sampling being the backdrop edge for backdrop-filter, samples "
"beyond the edge are mirrored back into the backdrop rather than "
"duplicating the pixels at the edge.";
const char kSmoothScrollingName[] = "Smooth Scrolling";
const char kSmoothScrollingDescription[] =
"Animate smoothly when scrolling page content.";
const char kStorageAccessApiFollowsSameOriginPolicyName[] =
"Storage Access API follows Same Origin Policy";
const char kStorageAccessApiFollowsSameOriginPolicyDescription[] =
"Modifies the Storage Access API to follow the Same Origin Policy with "
"respect to security.";
const char kStrictOriginIsolationName[] = "Strict-Origin-Isolation";
const char kStrictOriginIsolationDescription[] =
"Experimental security mode that strengthens the site isolation policy. "
"Controls whether site isolation should use origins instead of scheme and "
"eTLD+1.";
const char kSupportToolScreenshot[] = "Support Tool Screenshot";
const char kSupportToolScreenshotDescription[] =
"Enables the Support Tool to capture and include a screenshot in the "
"exported packet.";
const char kSyncAutofillWalletCredentialDataName[] =
"Sync Autofill Wallet Credential Data";
const char kSyncAutofillWalletCredentialDataDescription[] =
"When enabled, allows syncing of the autofill wallet credential data type.";
const char kSyncSandboxName[] = "Use Chrome Sync sandbox";
const char kSyncSandboxDescription[] =
"Connects to the testing server for Chrome Sync.";
const char kSyncTrustedVaultPassphrasePromoName[] =
"Enable promos for sync trusted vault passphrase.";
const char kSyncTrustedVaultPassphrasePromoDescription[] =
"Enables promos for an experimental sync passphrase type, referred to as "
"trusted vault.";
const char kSystemKeyboardLockName[] = "Experimental system keyboard lock";
const char kSystemKeyboardLockDescription[] =
"Enables websites to use the keyboard.lock() API to intercept system "
"keyboard shortcuts and have the events routed directly to the website "
"when in fullscreen mode.";
const char kTabDragDropName[] = "Tab Drag and Drop via Strip";
const char kTabDragDropDescription[] =
"Enables Tab drag and drop UI to move tab on tab-strip across windows.";
const char kTabGroupEntryPointsAndroidName[] = "Tab Group Entry Points";
const char kTabGroupEntryPointsAndroidDescription[] =
"Enables additional entry points for creating tab groups";
const char kTabGroupParityBottomSheetAndroidName[] =
"Tab Group Parity Bottom Sheet";
const char kTabGroupParityBottomSheetAndroidDescription[] =
"Enables adding Tabs to Tab Groups via the Tab Group Parity Bottom Sheet";
const char kTabletTabStripAnimationName[] = "Tablet Tab Strip Animation";
const char kTabletTabStripAnimationDescription[] =
"Enables new tablet tab strip animations.";
const char kToolbarPhoneCleanupName[] = "Toolbar Phone cleanup";
const char kToolbarPhoneCleanupDescription[] =
"Enables cleanup on toolbar phone class.";
const char kCommerceDeveloperName[] = "Commerce developer mode";
const char kCommerceDeveloperDescription[] =
"Allows users in the allowlist to enter the developer mode";
const char kDataSharingDebugLogsName[] = "Enable data sharing debug logs";
const char kDataSharingDebugLogsDescription[] =
"Enables the data sharing infrastructure to log and save debug messages "
"that can be shown in the internals page.";
const char kTabGroupSyncServiceDesktopMigrationId[] =
"tab-group-sync-service-desktop-migration";
const char kTabGroupSyncServiceDesktopMigrationName[] =
"Tab Group Sync Service Desktop Migration";
const char kTabGroupSyncServiceDesktopMigrationDescription[] =
"Enables use of the TabGroupSyncService. This is a backend only change.";
const char kTabGroupShorcutsId[] = "tab-group-shortcuts";
const char kTabGroupShorcutsName[] = "Tab Group Keyboard Shortcuts";
const char kTabGroupShorcutsDescription[] =
"Adds a few keyboard shortcuts for some tab group interactions.";
const char kTabHoverCardImagesName[] = "Tab Hover Card Images";
const char kTabHoverCardImagesDescription[] =
"Shows a preview image in tab hover cards, if tab hover cards are enabled.";
#if !BUILDFLAG(IS_ANDROID)
const char kTabSearchPositionSettingId[] = "tab-search-position-setting";
const char kTabSearchPositionSettingName[] = "Tab Search Position Setting";
const char kTabSearchPositionSettingDescription[] =
"Whether to show the tab search position options in the settings page.";
#endif
const char kTearOffWebAppAppTabOpensWebAppWindowName[] = "Tear Off Web App Tab";
const char kTearOffWebAppAppTabOpensWebAppWindowDescription[] =
"Open Web App window when tearing off a tab that's displaying a url "
"handled by an installed Web App.";
const char kTextInShelfName[] = "Internal test: text in shelf";
const char kTextInShelfDescription[] =
"Extend text in shelf timeout to learn about user education";
const char kTextSafetyClassifierName[] = "Text Safety Classifier";
const char kTextSafetyClassifierDescription[] =
"Enables text safety classifier for on-device models";
#if BUILDFLAG(IS_ANDROID)
const char kAutofillThirdPartyModeContentProviderName[] =
"Autofill Third Party Mode Content Provider";
const char kAutofillThirdPartyModeContentProviderDescription[] =
"Enables querying the third party autofill mode state from the Chrome app.";
#endif
#if !BUILDFLAG(IS_ANDROID)
const char kThreeButtonPasswordSaveDialogName[] =
"Three Button Password Save Dialog";
const char kThreeButtonPasswordSaveDialogDescription[] =
"Provides a 'not now' button alongside the 'never' button on the save "
"password dialog.";
#endif
const char kThrottleMainTo60HzName[] = "throttle-main-thread-to-60hz";
const char kThrottleMainTo60HzDescription[] =
"Throttle main thread updates to 60fps, even when VSync rate is higher.";
const char kTintCompositedContentName[] = "Tint composited content";
const char kTintCompositedContentDescription[] =
"Tint contents composited using Viz with a shade of red to help debug and "
"study overlay support.";
#if !BUILDFLAG(IS_ANDROID)
const char kTopChromeToastsName[] = "Top Chrome Toasts";
const char kTopChromeToastsDescription[] =
"Enables the use of toasts to present confirmation of user actions.";
const char kPinnedTabToastOnCloseName[] = "Pinned Tab Toast On Close";
const char kPinnedTabToastOnCloseDescription[] =
"Enable to show a confirmation toast that displays when a pinned tab is "
"closed via the keyboard shortcut.";
#endif
#if BUILDFLAG(IS_ANDROID)
const char kTopControlsRefactorName[] = "Top Controls Refactor";
const char kTopControlsRefactorDescription[] =
"Enables the alternative code path in Android for the top controls layout "
"control.";
#endif
const char kTopChromeTouchUiName[] = "Touch UI Layout";
const char kTopChromeTouchUiDescription[] =
"Enables touch UI layout in the browser's top chrome.";
const char kTouchDragDropName[] = "Touch initiated drag and drop";
const char kTouchDragDropDescription[] =
"Touch drag and drop can be initiated through long press on a draggable "
"element.";
const char kTouchSelectionStrategyName[] = "Touch text selection strategy";
const char kTouchSelectionStrategyDescription[] =
"Controls how text selection granularity changes when touch text selection "
"handles are dragged. Non-default behavior is experimental.";
const char kTouchSelectionStrategyCharacter[] = "Character";
const char kTouchSelectionStrategyDirection[] = "Direction";
const char kTouchTextEditingRedesignName[] = "Touch Text Editing Redesign";
const char kTouchTextEditingRedesignDescription[] =
"Enables new touch text editing features.";
const char kTranslateForceTriggerOnEnglishName[] =
"Select which language model to use to trigger translate on English "
"content";
const char kTranslateForceTriggerOnEnglishDescription[] =
"Force the Translate Triggering on English pages experiment to be enabled "
"with the selected language model active.";
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)
const char kEnableHistorySyncOptinName[] = "History Sync Opt-in";
const char kEnableHistorySyncOptinDescription[] =
"Enables the History Sync Opt-in screen on Desktop platforms. The screen "
"is shown after the user has signed in (in the profile picker or in the "
"dialog) instead of the Sync Confirmation screen.";
const char kTranslationAPIName[] = "Experimental translation API";
const char kTranslationAPIDescription[] =
"Enables the on-device language translation API. "
"See https://github.com/WICG/translation-api/blob/main/README.md";
#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)
const char kTreatInsecureOriginAsSecureName[] =
"Insecure origins treated as secure";
const char kTreatInsecureOriginAsSecureDescription[] =
"Treat given (insecure) origins as secure origins. Multiple origins can be "
"supplied as a comma-separated list. Origins must have their protocol "
"specified e.g. \"http://example.com\". For the definition of secure "
"contexts, see https://w3c.github.io/webappsec-secure-contexts/";
const char kUnifiedPasswordManagerAndroidReenrollmentName[] =
"Automatic reenrollment of users who were evicted from using Google "
"Mobile Services after experiencing errors.";
const char kUnifiedPasswordManagerAndroidReenrollmentDescription[] =
"Requires UnifiedPasswordManagerAndroid flag enabled. Allows automatic "
"reenrollment into Google Mobile Services if sync and backend "
"communication work.";
const char kUnsafeWebGPUName[] = "Unsafe WebGPU Support";
const char kUnsafeWebGPUDescription[] =
"Convenience flag for WebGPU development. Enables best-effort WebGPU "
"support on unsupported configurations and more! Note that this flag could "
"expose security issues to websites so only use it for your own "
"development.";
const char kForceHighPerformanceGPUName[] = "Force High Performance GPU";
const char kForceHighPerformanceGPUDescription[] =
"Forces use of high performance GPU if available. Warning: this flag may "
"increase power consumption leading to shorter battery time.";
#if BUILDFLAG(IS_WIN)
const char kUiaProviderName[] = "UI Automation";
const char kUiaProviderDescription[] =
"Enables native support of the UI Automation provider.";
#endif
const char kUiPartialSwapName[] = "Partial swap";
const char kUiPartialSwapDescription[] = "Sets partial swap behavior.";
const char kTPCPhaseOutFacilitatedTestingName[] =
"Third-party Cookie Phase Out Facilitated Testing";
const char kTPCPhaseOutFacilitatedTestingDescription[] =
"Enables third-party cookie phase out for facilitated testing described in "
"https://developer.chrome.com/en/docs/privacy-sandbox/chrome-testing/";
const char kTpcdHeuristicsGrantsName[] =
"Third-party Cookie Grants Heuristics Testing";
const char kTpcdHeuristicsGrantsDescription[] =
"Enables temporary storage access grants for certain user behavior "
"heuristics. See "
"https://github.com/amaliev/3pcd-exemption-heuristics/blob/main/"
"explainer.md for more details.";
const char kTpcdMetadataGrantsName[] =
"Third-Party Cookie Deprecation Metadata Grants for Testing";
const char kTpcdMetadataGrantsDescription[] =
"Provides a control for enabling/disabling Third-Party Cookie Deprecation "
"Metadata Grants (WRT its default state) for testing.";
const char kBlockTpcsIncognitoName[] = "Block TPCs Incognito";
const char kBlockTpcsIncognitoDescription[] = "Blocks TPCs in Incognito";
const char kTrackingProtection3pcdName[] = "Tracking Protection for 3PCD";
const char kTrackingProtection3pcdDescription[] =
"Enables the tracking protection UI + prefs that will be used for the 3PCD "
"1%.";
const char kRwsV2UiName[] = "RWS V2 UI";
const char kRwsV2UiDescription[] = "Updated RWS UI";
const char kUseSearchClickForRightClickName[] =
"Use Search+Click for right click";
const char kUseSearchClickForRightClickDescription[] =
"When enabled search+click will be remapped to right click, allowing "
"webpages and apps to consume alt+click. When disabled the legacy "
"behavior of remapping alt+click to right click will remain unchanged.";
#if BUILDFLAG(IS_ANDROID)
const char kUseAndroidBufferedInputDispatchName[] =
"Use Android buffered input dispatch";
const char kUseAndroidBufferedInputDispatchDescription[] =
"Enables using Android's buffered input dispatch, which will generally "
"deliver batched resampled input events to Chrome once per VSync.";
#endif
const char kVcBackgroundReplaceName[] = "Enable vc background replacement";
const char kVcBackgroundReplaceDescription[] =
"Enables background replacement feature for video conferencing on "
"Chromebooks. THIS WILL OVERRIDE BACKGROUND BLUR.";
const char kVcRelightingInferenceBackendName[] =
"Select relighting backend for video conferencing";
const char kVcRelightingInferenceBackendDescription[] =
"Select relighting backend to be used for running model inference during "
"video conferencing, which may offload work from GPU.";
const char kVcRetouchInferenceBackendName[] =
"Select retouch backend for video conferencing";
const char kVcRetouchInferenceBackendDescription[] =
"Select retouch backend to be used for running model inference during "
"video conferencing, which may offload work from GPU.";
const char kVcSegmentationInferenceBackendName[] =
"Select segmentation backend for video conferencing";
const char kVcSegmentationInferenceBackendDescription[] =
"Select segmentation backend to be used for running model inference "
"during video conferencing, which may offload work from GPU.";
const char kVcStudioLookName[] = "Enables Studio Look for video conferencing";
const char kVcStudioLookDescription[] =
"Enables Studio Look and VC settings UI, which contains settings for Studio"
"Look.";
const char kVcSegmentationModelName[] = "Use a different segmentation model";
const char kVcSegmentationModelDescription[] =
"Allows a different segmentation model to be used for blur and relighting, "
"which may reduce the workload on the GPU.";
const char kVcTrayMicIndicatorName[] = "Adds a mic indicator in VC tray";
const char kVcTrayMicIndicatorDescription[] =
"Displays a pulsing mic indicator that indicates how loud the audio is "
"captured by the microphone, after some effects like noise cancellation "
"is applied.";
const char kVcTrayTitleHeaderName[] = "Adds a sidetone toggle in VC tray";
const char kVcTrayTitleHeaderDescription[] =
"Displays a sidetone toggle in VC Tray Title header";
const char kVcLightIntensityName[] = "VC relighting intensity";
const char kVcLightIntensityDescription[] =
"Allows different light intensity to be used for relighting.";
const char kVcWebApiName[] = "VC web API";
const char kVcWebApiDescription[] =
"Allows web API support for video conferencing on Chromebooks.";
const char kVideoPictureInPictureControlsUpdate2024Name[] =
"Video picture-in-picture controls update 2024";
const char kVideoPictureInPictureControlsUpdate2024Description[] =
"Displays an updated UI for video picture-in-picture controls from its 2024"
"UI update";
const char kV8VmFutureName[] = "Future V8 VM features";
const char kV8VmFutureDescription[] =
"This enables upcoming and experimental V8 VM features. "
"This flag does not enable experimental JavaScript features.";
const char kGlobalVaapiLockName[] = "Global lock on the VA-API wrapper.";
const char kGlobalVaapiLockDescription[] =
"Enable or disable the global VA-API lock for platforms and paths that "
"support controlling this.";
const char kWalletServiceUseSandboxName[] =
"Use Google Payments sandbox servers";
const char kWalletServiceUseSandboxDescription[] =
"For developers: use the sandbox service for Google Payments API calls.";
const char kWallpaperFastRefreshName[] =
"Enable shortened wallpaper daily refresh interval for manual testing";
const char kWallpaperFastRefreshDescription[] =
"Allows developers to see a new wallpaper once every ten seconds rather "
"than once per day when using the daily refresh feature.";
const char kWallpaperGooglePhotosSharedAlbumsName[] =
"Enable Google Photos shared albums for wallpaper";
const char kWallpaperGooglePhotosSharedAlbumsDescription[] =
"Allow users to set shared Google Photos albums as the source for their "
"wallpaper.";
const char kWallpaperSearchSettingsVisibilityName[] =
"Wallpaper Search Settings Visibility";
const char kWallpaperSearchSettingsVisibilityDescription[] =
"Shows wallpaper search settings in settings UI.";
const char kWebAuthenticationAlignErrorTypeForPaymentCredentialCreateName[] =
"Web Authentication Align Error Type for 'payment' credentials";
const char
kWebAuthenticationAlignErrorTypeForPaymentCredentialCreateDescription[] =
"Throw a 'NotAllowedError' instead of 'SecurityError' when creating "
"'payment' credentials in a cross-origin iframe without user "
" activation. See https://crbug.com/41484826";
#if !BUILDFLAG(IS_ANDROID)
const char kWebAuthnUsePasskeyFromAnotherDeviceInContextMenuName[] =
"Use passkey from another device in the context menu";
const char kWebAuthnUsePasskeyFromAnotherDeviceInContextMenuDescription[] =
"Hides the \"Use a passkey\" entry from the autofill popup for conditional "
"WebAuthn requests. Moves the entry point to the context menu.";
const char kWebAuthnPasskeyUpgradeName[] =
"Enable automatic passkey upgrades in Google Password Manager";
const char kWebAuthnPasskeyUpgradeDescription[] =
"Enable the WebAuthn Conditional Create feature and let websites "
"automatically create passkeys in GPM if there is a matching password "
"credential for the same user.";
#endif
const char kWebAuthnImmediateGetName[] =
"Enable immediate mediation for WebAuthn get requests";
const char kWebAuthnImmediateGetDescription[] =
"Enables immediate mediation for WebAuthn and passwords for a "
"navigator.credentials.get() request. This will return a NotAllowedError "
"if there are no credentials for a given get request. The request can also "
"request passwords.";
const char kWebBluetoothName[] = "Web Bluetooth";
const char kWebBluetoothDescription[] =
"Enables the Web Bluetooth API on platforms without official support";
const char kWebBluetoothNewPermissionsBackendName[] =
"Use the new permissions backend for Web Bluetooth";
const char kWebBluetoothNewPermissionsBackendDescription[] =
"Enables the new permissions backend for Web Bluetooth. This will enable "
"persistent storage of device permissions and Web Bluetooth features such "
"as BluetoothDevice.watchAdvertisements() and Bluetooth.getDevices()";
const char kWebOtpBackendName[] = "Web OTP";
const char kWebOtpBackendDescription[] =
"Enables Web OTP API that uses the specified backend.";
const char kWebOtpBackendSmsVerification[] = "Code Browser API";
const char kWebOtpBackendUserConsent[] = "User Consent API";
const char kWebOtpBackendAuto[] = "Automatically select the backend";
const char kWebglDeveloperExtensionsName[] = "WebGL Developer Extensions";
const char kWebglDeveloperExtensionsDescription[] =
"Enabling this option allows web applications to access WebGL extensions "
"intended only for use during development time.";
const char kWebglDraftExtensionsName[] = "WebGL Draft Extensions";
const char kWebglDraftExtensionsDescription[] =
"Enabling this option allows web applications to access the WebGL "
"extensions that are still in draft status.";
const char kWebGpuDeveloperFeaturesName[] = "WebGPU Developer Features";
const char kWebGpuDeveloperFeaturesDescription[] =
"Enables web applications to access WebGPU features intended only for use "
"during development.";
const char kWebPaymentsExperimentalFeaturesName[] =
"Experimental Web Payments API features";
const char kWebPaymentsExperimentalFeaturesDescription[] =
"Enable experimental Web Payments API features";
const char kAppStoreBillingDebugName[] =
"Web Payments App Store Billing Debug Mode";
const char kAppStoreBillingDebugDescription[] =
"App-store purchases (e.g., Google Play Store) within a TWA can be "
"requested using the Payment Request API. This flag removes the "
"restriction that the TWA has to be installed from the app-store.";
const char kWebrtcHideLocalIpsWithMdnsName[] =
"Anonymize local IPs exposed by WebRTC.";
const char kWebrtcHideLocalIpsWithMdnsDecription[] =
"Conceal local IP addresses with mDNS hostnames.";
const char kWebRtcAllowInputVolumeAdjustmentName[] =
"Allow WebRTC to adjust the input volume.";
const char kWebRtcAllowInputVolumeAdjustmentDescription[] =
"Allow the Audio Processing Module in WebRTC to adjust the input volume "
"during a real-time call. Disable if microphone muting or clipping issues "
"are observed when the browser is running and used for a real-time call. "
"This flag is experimental and may be removed at any time.";
const char kWebRtcApmDownmixCaptureAudioMethodName[] =
"WebRTC downmix capture audio method.";
const char kWebRtcApmDownmixCaptureAudioMethodDescription[] =
"Override the method that the Audio Processing Module in WebRTC uses to "
"downmix the captured audio to mono (when needed) during a real-time call. "
"This flag is experimental and may be removed at any time.";
const char kWebrtcHwDecodingName[] = "WebRTC hardware video decoding";
const char kWebrtcHwDecodingDescription[] =
"Support in WebRTC for decoding video streams using platform hardware.";
const char kWebrtcHwEncodingName[] = "WebRTC hardware video encoding";
const char kWebrtcHwEncodingDescription[] =
"Support in WebRTC for encoding video streams using platform hardware.";
const char kWebrtcUseMinMaxVEADimensionsName[] =
"WebRTC Min/Max Video Encode Accelerator dimensions";
const char kWebrtcUseMinMaxVEADimensionsDescription[] =
"When enabled, WebRTC will only use the Video Encode Accelerator for "
"video resolutions inside those published as supported.";
const char kWebTransportDeveloperModeName[] = "WebTransport Developer Mode";
const char kWebTransportDeveloperModeDescription[] =
"When enabled, removes the requirement that all certificates used for "
"WebTransport over HTTP/3 are issued by a known certificate root.";
const char kWebUsbDeviceDetectionName[] =
"Automatic detection of WebUSB-compatible devices";
const char kWebUsbDeviceDetectionDescription[] =
"When enabled, the user will be notified when a device which advertises "
"support for WebUSB is connected. Disable if problems with USB devices are "
"observed when the browser is running.";
const char kWebXrForceRuntimeName[] = "Force WebXr Runtime";
const char kWebXrForceRuntimeDescription[] =
"Force the browser to use a particular runtime, even if it would not "
"usually be enabled or would otherwise not be selected based on the "
"attached hardware.";
const char kWebXrRuntimeChoiceNone[] = "No Runtime";
const char kWebXrRuntimeChoiceArCore[] = "ARCore";
const char kWebXrRuntimeChoiceCardboard[] = "Cardboard";
const char kWebXrRuntimeChoiceOpenXR[] = "OpenXR";
const char kWebXrRuntimeChoiceOrientationSensors[] = "Orientation Sensors";
const char kWebXrHandAnonymizationStrategyName[] =
"WebXr Hand Anonymization Strategy";
const char kWebXrHandAnonymizationStrategyDescription[] =
"Force the browser to use a particular strategy for anonymizing hand data, "
"the default order has a hierarchy of strategies to try and if all of them "
"fail, then no data will be returned, while this choice does allow the "
"(not recommended) alternative of bypassing these algorithms all together.";
const char kWebXrHandAnonymizationChoiceNone[] = "None (Not Recommended)";
const char kWebXrHandAnonymizationChoiceRuntime[] = "Runtime Provided";
const char kWebXrHandAnonymizationChoiceFallback[] = "Chrome Fallback";
const char kWebXrIncubationsName[] = "WebXR Incubations";
const char kWebXrIncubationsDescription[] =
"Enables experimental features for WebXR.";
const char kZeroCopyName[] = "Zero-copy rasterizer";
const char kZeroCopyDescription[] =
"Raster threads write directly to GPU memory associated with tiles.";
const char kZeroCopyRBPPartialRasterWithGpuCompositorName[] =
"Zero-copy partial raster with GPU compositor";
const char kZeroCopyRBPPartialRasterWithGpuCompositorDescription[] =
"Has zero-copy raster do partial raster when used with the GPU compositor";
const char kEnableVulkanName[] = "Vulkan";
const char kEnableVulkanDescription[] = "Use vulkan as the graphics backend.";
const char kDefaultAngleVulkanName[] = "Default ANGLE Vulkan";
const char kDefaultAngleVulkanDescription[] =
"Use the Vulkan backend for ANGLE by default.";
const char kVulkanFromAngleName[] = "Vulkan from ANGLE";
const char kVulkanFromAngleDescription[] =
"Initialize Vulkan from inside ANGLE and share the instance with Chrome.";
const char kSharedHighlightingManagerName[] = "Refactoring Shared Highlighting";
const char kSharedHighlightingManagerDescription[] =
"Refactors Shared Highlighting by centralizing the IPC calls in a Manager.";
const char kSanitizerApiName[] = "Sanitizer API";
const char kSanitizerApiDescription[] =
"Enable the Sanitizer API. See: https://github.com/WICG/sanitizer-api";
const char kUsePassthroughCommandDecoderName[] =
"Use passthrough command decoder";
const char kUsePassthroughCommandDecoderDescription[] =
"Use chrome passthrough command decoder instead of validating command "
"decoder.";
const char kEnableUnsafeSwiftShaderName[] =
"Enable unsafe SwiftShader fallback";
const char kEnableUnsafeSwiftShaderDescription[] =
"Allow SwiftShader to be used as a fallback for software WebGL. Using this "
"flag is unsafe and should only be used for local development.";
const char kEnablePasswordSharingName[] = "Enables password sharing";
const char kEnablePasswordSharingDescription[] =
"Enables sharing of password between members of the same family.";
const char kPredictableReportedQuotaName[] = "Predictable Reported Quota";
const char kPredictableReportedQuotaDescription[] =
"Enables reporting of a predictable quota from the StorageManager's "
"estimate API. This flag is intended only for validating if this change "
"caused an unforeseen bug.";
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_CHROMEOS)
const char kRunVideoCaptureServiceInBrowserProcessName[] =
"Run video capture service in browser";
const char kRunVideoCaptureServiceInBrowserProcessDescription[] =
"Run the video capture service in the browser process.";
#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_CHROMEOS)
const char kPromptAPIForGeminiNanoName[] = "Prompt API for Gemini Nano";
const char kPromptAPIForGeminiNanoDescription[] =
"Enables the exploratory Prompt API, allowing you to send natural language "
"instructions to a built-in large language model (Gemini Nano in Chrome). "
"Exploratory APIs are designed for local prototyping to help discover "
"potential use cases, and may never launch. These explorations will inform "
"the built-in AI roadmap [1]. "
"This API is primarily intended for natural language processing tasks such "
"as summarizing, classifying, or rephrasing text. It is NOT suitable for "
"use cases that require factual accuracy (e.g. answering knowledge "
"questions). "
"You must comply with our Prohibited Use Policy [2] which provides "
"additional details about appropriate use of Generative AI.";
const char* const kAIAPIsForGeminiNanoLinks[2] = {
"https://goo.gle/chrome-ai-dev-preview",
"https://policies.google.com/terms/generative-ai/use-policy"};
const char kPromptAPIForGeminiNanoMultimodalInputName[] =
"Prompt API for Gemini Nano with Multimodal Input";
const char kPromptAPIForGeminiNanoMultimodalInputDescription[] =
"Extends the exploratory Prompt API with image and audio input types. "
"Allows you to supplement natural language instructions for a built-in "
"large language model (Gemini Nano in Chrome) with image and audio inputs. "
"Exploratory APIs are designed for local prototyping to help discover "
"potential use cases, and may never launch. These explorations will inform "
"the built-in AI roadmap [1]. "
"This API enhancement is primarily intended for natural language "
"processing tasks associated with visual and auditory data, such as "
"generating rough descriptions of pictures and sounds. It is NOT suitable "
"for use cases that require factual accuracy (e.g. answering knowledge "
"questions). "
"You must comply with our Prohibited Use Policy [2] which provides "
"additional details about appropriate use of Generative AI.";
const char kSummarizationAPIForGeminiNanoName[] =
"Summarization API for Gemini Nano";
const char kSummarizationAPIForGeminiNanoDescription[] =
"Enables the Summarization API, allowing you to summarize a piece "
"of text with a built-in large language model (Gemini Nano in Chrome)."
"The API may be subject to changes including the supported options."
"Please refer to the built-in AI article [1] for details. "
"This API It is NOT suitable for use cases that require factual accuracy "
"(e.g. answering knowledge questions). "
"You must comply with our Prohibited Use Policy [2] which provides "
"additional details about appropriate use of Generative AI.";
const char kWriterAPIForGeminiNanoName[] = "Writer API for Gemini Nano";
const char kWriterAPIForGeminiNanoDescription[] =
"Enables the Writer API, allowing you to write a piece "
"of text with a built-in large language model (Gemini Nano in Chrome)."
"The API may be subject to changes including the supported options."
"Please refer to the built-in AI article [1] for details. "
"You must comply with our Prohibited Use Policy [2] which provides "
"additional details about appropriate use of Generative AI.";
const char kRewriterAPIForGeminiNanoName[] = "Rewriter API for Gemini Nano";
const char kRewriterAPIForGeminiNanoDescription[] =
"Enables the Rewriter API, allowing you to rewrite a piece "
"of text with a built-in large language model (Gemini Nano in Chrome)."
"The API may be subject to changes including the supported options."
"Please refer to the built-in AI article [1] for details. "
"You must comply with our Prohibited Use Policy [2] which provides "
"additional details about appropriate use of Generative AI.";
// Android ---------------------------------------------------------------------
#if BUILDFLAG(IS_ANDROID)
const char kAAudioPerStreamDeviceSelectionName[] =
"AAudio per-stream device selection";
const char kAAudioPerStreamDeviceSelectionDescription[] =
"Enables per-stream device selection for AAudio streams. No effect on "
"versions of Android prior to Android Q.";
const char kAccessibilityDeprecateTypeAnnounceName[] =
"Accessibility Deprecate TYPE_ANNOUNCE";
const char kAccessibilityDeprecateTypeAnnounceDescription[] =
"When enabled, TYPE_ANNOUNCE events will no longer be sent for live "
"regions in the web contents.";
const char kAccessibilityIncludeLongClickActionName[] =
"Accessibility Include Long Click Action";
const char kAccessibilityIncludeLongClickActionDescription[] =
"When enabled, the accessibility tree for the web contents will include "
"the ACTION_LONG_CLICK action on all relevant nodes.";
const char kAccessibilityTextFormattingName[] = "Accessibility Text Formatting";
const char kAccessibilityTextFormattingDescription[] =
"When enabled, text formatting information will be included in the "
"AccessibilityNodeInfo tree on Android";
const char kAccessibilityUnifiedSnapshotsName[] =
"Accessibility Unified Snapshots";
const char kAccessibilityUnifiedSnapshotsDescription[] =
"When enabled, use the experimental unified code path for AXTree "
"snapshots.";
const char kAccessibilityManageBroadcastReceiverOnBackgroundName[] =
"Manage accessibility Broadcast Receiver on a background thread";
const char kAccessibilityManageBroadcastReceiverOnBackgroundDescription[] =
"When enabled, registering and un-registering the broadcast "
"receiver will be on the background thread.";
const char kAccountBookmarksAndReadingListBehindOptInName[] =
"Account bookmarks and reading list behind opt-in";
const char kAccountBookmarksAndReadingListBehindOptInDescription[] =
"Make account bookmarks and reading lists available to users that sign in "
"via promo in the bookmark manager.";
const char kAndroidSurfaceControlName[] = "Android SurfaceControl";
const char kAndroidSurfaceControlDescription[] =
" Enables SurfaceControl to manage the buffer queue for the "
" DisplayCompositor on Android. This feature is only available on "
" android Q+ devices";
const char kAndroidElegantTextHeightName[] = "Android Elegant Text Height";
const char kAndroidElegantTextHeightDescription[] =
"Enables elegant text height in core BrowserUI theme.";
const char kAndroidHubSearchName[] = "Android Hub Search";
const char kAndroidHubSearchDescription[] =
"Enables searching through the hub.";
const char kAndroidHubSearchTabGroupsName[] = "Android Hub Tab Group Search";
const char kAndroidHubSearchTabGroupsDescription[] =
"Enables searching through tab groups in the hub.";
const char kAndroidOpenPdfInlineName[] = "Open PDF Inline on Android";
const char kAndroidOpenPdfInlineDescription[] =
"Enable Open PDF Inline on Android.";
const char kAndroidOpenPdfInlineBackportName[] =
"Open PDF Inline on Android pre-V";
const char kAndroidOpenPdfInlineBackportDescription[] =
"Enable Open PDF Inline on Android pre-V.";
const char kAndroidPdfAssistContentName[] = "Provide assist content for PDF";
const char kAndroidPdfAssistContentDescription[] =
"Provide assist content for PDF on Android.";
const char kAndroidSurfaceColorUpdateName[] = "Android surface color update.";
const char kAndroidSurfaceColorUpdateDescription[] =
"If enabled, updates the android surface colors for toolbar/omnibox.";
const char kAndroidTabDeclutterAutoDeleteName[] =
"Android Tab Declutter Auto Delete Promo";
const char kAndroidTabDeclutterAutoDeleteDescription[] =
"Enables the Android Tab Declutter Auto Delete Promo";
const char kAndroidTabDeclutterAutoDeleteKillSwitchName[] =
"Android Tab Declutter Auto Delete Kill Switch";
const char kAndroidTabDeclutterAutoDeleteKillSwitchDescription[] =
"Kill switch for auto delete archived tabs.";
const char kAndroidTabDeclutterArchiveAllButActiveTabName[] =
"Archive all tabs except active";
const char kAndroidTabDeclutterArchiveAllButActiveTabDescription[] =
"Causes all tabs in model (except the current active one) to be archived. "
"Used for manual testing.";
const char kAndroidTabDeclutterArchiveDuplicateTabsName[] =
"Archive all duplicate tabs.";
const char kAndroidTabDeclutterArchiveDuplicateTabsDescription[] =
"Enables auto-archival of all duplicate tabs except the most recently used "
"copy.";
const char kAndroidTabDeclutterArchiveTabGroupsName[] =
"Archive all inactive tab groups.";
const char kAndroidTabDeclutterArchiveTabGroupsDescription[] =
"Enables auto-archival of inactive tab groups and their inactive tabs.";
const char kAndroidTabDeclutterPerformanceImprovementsName[] =
"Android Tab Declutter performance improvements";
const char kAndroidTabDeclutterPerformanceImprovementsDescription[] =
"Enables performance improvements to the android tab declutter process.";
const char kAndroidThemeModuleName[] = "Android Theme Module";
const char kAndroidThemeModuleDescription[] =
"Enables external theme overlays for Chrome activities when available.";
const char kAnimatedImageDragShadowName[] =
"Enable animated image drag shadow on Android.";
const char kAnimatedImageDragShadowDescription[] =
"Animate the shadow image from its original bound to the touch point. ";
const char kAnimateSuggestionsListAppearanceName[] =
"Animate appearance of the omnibox suggestions list";
const char kAnimateSuggestionsListAppearanceDescription[] =
"Animate the omnibox suggestions list when it appears instead of "
"immediately setting it to visible";
const char kAppSpecificHistoryName[] = "Allow app specific history";
const char kAppSpecificHistoryDescription[] =
"If enabled, history results will also be categorized by application.";
const char kAuxiliaryNavigationStaysInBrowserName[] =
"Prevent app opening for auxiliary navigations that start in the browser";
const char kAuxiliaryNavigationStaysInBrowserDescription[] =
"If enabled, any new auxiliary browsing context navigation started in "
"the browser will open in a new tab.";
const char kBackgroundNotPerceptibleBindingName[] =
"Enable not perceptible binding without cpu priority boosting";
const char kBackgroundNotPerceptibleBindingDescription[] =
"If enabled, not perceptible binding put processes to the background cpu "
"cgroup";
const char kBatchTabRestoreName[] = "Batch tab restore";
const char kBatchTabRestoreDescription[] =
"Batch tab restore to improve startup performance.";
const char kBoardingPassDetectorName[] = "Boarding Pass Detector";
const char kBoardingPassDetectorDescription[] = "Enable Boarding Pass Detector";
const char kBookmarkPaneAndroidName[] = "Bookmark hub pane";
const char kBookmarkPaneAndroidDescription[] = "Enables a bookmark hub pane.";
const char kBrowserControlsDebuggingName[] = "Browser controls debugging";
const char kBrowserControlsDebuggingDescription[] =
"Enables logs to debug Android browser controls.";
const char kCCTAuthTabName[] = "CCT Auth Tab";
const char kCCTAuthTabDescription[] = "Enable AuthTab used for authentication";
const char kCCTAuthTabDisableAllExternalIntentsName[] =
"Disable all external intents in Auth Tab";
const char kCCTAuthTabDisableAllExternalIntentsDescription[] =
"Disables all external intents in Auth Tab";
const char kCCTAuthTabEnableHttpsRedirectsName[] =
"Enable HTTPS redirect scheme in Auth Tab";
const char kCCTAuthTabEnableHttpsRedirectsDescription[] =
"Enables HTTPS redirect scheme in Auth Tab";
const char kCCTEphemeralMediaViewerExperimentName[] =
"Ephemeral CCT for Media Viewer";
const char kCCTEphemeralMediaViewerExperimentDescription[] =
"Enables Media Viewer launched from Downloads to open in Ephemeral "
"mode.";
const char kCCTEphemeralModeName[] =
"Allow CCT embedders to open CCTs in ephemeral mode";
const char kCCTEphemeralModeDescription[] =
"Enabling it would allow apps to open ephemeral mode for "
"Chrome Custom Tabs, on Android.";
const char kCCTIncognitoAvailableToThirdPartyName[] =
"Allow third party to open Custom Tabs Incognito mode";
const char kCCTIncognitoAvailableToThirdPartyDescription[] =
"Enabling it would allow third party apps to open incognito mode for "
"Chrome Custom Tabs, on Android.";
const char kCCTMinimizedName[] = "Allow Custom Tabs to be minimized";
const char kCCTMinimizedDescription[] =
"When enabled, CCTs can be minimized into picture-in-picture (PiP) mode.";
const char kCCTNestedSecurityIconName[] =
"Nest the CCT security icon under the title.";
const char kCCTNestedSecurityIconDescription[] =
"When enabled, the CCT toolbar security icon will be nested under the "
"title.";
const char kCCTGoogleBottomBarName[] = "Google Bottom Bar";
const char kCCTGoogleBottomBarDescription[] =
"Show bottom bar on Custom Tabs opened by the Android Google App.";
const char kCCTGoogleBottomBarVariantLayoutsName[] =
"Google Bottom Bar Variant Layouts";
const char kCCTGoogleBottomBarVariantLayoutsDescription[] =
"Show different layouts on Google Bottom Bar.";
const char kCCTOpenInBrowserButtonIfAllowedByEmbedderName[] =
"Open in Browser Button in CCT if allowed by Embedder";
const char kCCTOpenInBrowserButtonIfAllowedByEmbedderDescription[] =
"Open in Browser Button in CCT if allowed by Embedder";
const char kCCTOpenInBrowserButtonIfEnabledByEmbedderName[] =
"Open in Browser Button in CCT if enabled by Embedder";
const char kCCTOpenInBrowserButtonIfEnabledByEmbedderDescription[] =
"Open in Browser Button in CCT if enabled by Embedder";
const char kCCTPredictiveBackGestureName[] =
"Enable predictive back gesture in CCT";
const char kCCTPredictiveBackGestureDescription[] =
"When enabled, the OS will handle the back swipe for the last remaining "
"CCT.";
const char kCCTResizableForThirdPartiesName[] =
"Bottom sheet Custom Tabs (third party)";
const char kCCTResizableForThirdPartiesDescription[] =
"Enable bottom sheet Custom Tabs for third party apps.";
const char kCCTRevampedBrandingName[] = "Revamped CCT toolbar branding.";
const char kCCTRevampedBrandingDescription[] =
"Enables a revamped branding animation on the CCT toolbar.";
const char kCCTSignInPromptName[] = "Sign-in prompt in CCT.";
const char kCCTSignInPromptDescription[] =
"Displays a sign-in prompt message in CCT opened by 1P apps when the user "
"is signed out of Chrome but signed in to the 1P app.";
const char kCCTToolbarRefactorName[] = "CCT Toolbar Refactor";
const char kCCTToolbarRefactorDescription[] = "CCT Toolbar Refactor";
const char kBottomBrowserControlsRefactorName[] =
"BottomBrowserControlsRefactor";
const char kBottomBrowserControlsRefactorDescription[] =
"Use BottomControlsStacker to position bottom controls layers.";
const char kBrowsingDataModelName[] = "Browsing Data Model";
const char kBrowsingDataModelDescription[] = "Enables BDM on Android.";
const char kChimeAlwaysShowNotificationDescription[] =
"A debug flag to always show Chime notification after receiving a payload.";
const char kChimeAlwaysShowNotificationName[] =
"Always show Chime notification";
const char kChimeAndroidSdkDescription[] =
"Enable Chime SDK to receive push notification.";
const char kChimeAndroidSdkName[] = "Use Chime SDK";
const char kClankDefaultBrowserPromoName[] = "Clank default browser promo 2";
const char kClankDefaultBrowserPromoDescription[] =
"When enabled, show additional non-intrusive entry points to allow users "
"to set Chrome as their default browser, if the trigger conditions are "
"met.";
const char kClankDefaultBrowserPromoRoleManagerName[] =
"Clank default browser Promo Role Manager ";
const char kClankDefaultBrowserPromoRoleManagerDescription[] =
"Sets the Role Manager Default Browser Promo for testing the new "
"Default Browser Promo Feature";
const char kTabStateFlatBufferName[] = "Enable TabState FlatBuffer";
const char kTabStateFlatBufferDescription[] =
"Migrates TabState from a pickle based schema to a FlatBuffer based "
"schema.";
const char kContextualSearchSuppressShortViewName[] =
"Contextual Search suppress short view";
const char kContextualSearchSuppressShortViewDescription[] =
"Contextual Search suppress when the base page view is too short";
const char kCpaSpecUpdateName[] = "CpaSpecUpdate";
const char kCpaSpecUpdateDescription[] =
"Updates the Cpa button animation and changes the shape of the checked "
"state button for stateful CPAs.";
const char kDeprecatedExternalPickerFunctionName[] =
"Use deprecated External Picker method";
const char kDeprecatedExternalPickerFunctionDescription[] =
"Use the old-style opening of an External Picker when uploading files";
const char kDrawCutoutEdgeToEdgeName[] = "DrawCutoutEdgeToEdge";
const char kDrawCutoutEdgeToEdgeDescription[] =
"Enables the Android feature Edge-to-Edge Feature to coordinate with the "
"Display Cutout for the notch when drawing below the Nav Bar.";
const char kDrawKeyNativeEdgeToEdgeName[] = "DrawKeyNativeEdgeToEdge";
const char kDrawKeyNativeEdgeToEdgeDescription[] =
"Enables the Android feature Edge-to-Edge and forces a draw ToEdge on "
"select native pages. No effect when EdgeToEdgeBottomChin is disabled";
const char kEdgeToEdgeBottomChinName[] = "EdgeToEdgeBottomChin";
const char kEdgeToEdgeBottomChinDescription[] =
"Enables the scrollable bottom chin for an intermediate Edge-to-Edge "
"experience.";
const char kEdgeToEdgeEverywhereName[] = "EdgeToEdgeEverywhere";
const char kEdgeToEdgeEverywhereDescription[] =
"Enables Chrome to draw below the system bars, all the time. This is "
"intended "
"to facilitate the transition to edge-to-edge being enforced at the system "
"level.";
const char kEdgeToEdgeSafeAreaConstraintName[] = "EdgeToEdgeSafeAreaConstraint";
const char kEdgeToEdgeSafeAreaConstraintDescription[] =
"Ensure web content is constrained to within the safe area if safe area "
"constraint is presents on a given web page.";
const char kEdgeToEdgeTabletName[] = "EdgeToEdgeTablet";
const char kEdgeToEdgeTabletDescription[] =
"Enables the Android feature Edge-to-Edge on tablets";
const char kEdgeToEdgeWebOptInName[] = "EdgeToEdgeWebOptIn";
const char kEdgeToEdgeWebOptInDescription[] =
"Enables Chrome to draw below the Nav Bar on websites that have explicitly "
"opted into Edge-to-Edge. Requires DrawCutoutEdgeToEdge to also be "
"enabled. No effect when EdgeToEdgeBottomChin is disabled";
const char kTabClosureMethodRefactorName[] = "Tab closure method refactor";
const char kTabClosureMethodRefactorDescription[] =
"Enables the refactored changes for tab closure methods where existing "
"methods usages are switched off and newly introduced are made active.";
const char kGridTabSwitcherUpdateName[] = "Grid tab switcher update";
const char kGridTabSwitcherUpdateDescription[] =
"Enables the visual changes in the grid tab switcher.";
const char kDynamicSafeAreaInsetsName[] = "DynamicSafeAreaInsets";
const char kDynamicSafeAreaInsetsDescription[] =
"Dynamically change the safe area insets based on the bottom browser "
"controls visibility.";
const char kDynamicSafeAreaInsetsOnScrollName[] =
"DynamicSafeAreaInsetsOnScroll";
const char kDynamicSafeAreaInsetsOnScrollDescription[] =
"Dynamically change the safe area insets on the main thread as browser "
"controls scrolls. "
"Requires DynamicSafeAreaInsets to also be enabled.";
const char kDynamicSafeAreaInsetsSupportedByCCName[] =
"DynamicSafeAreaInsetsSupportedByCC";
const char kDynamicSafeAreaInsetsSupportedByCCDescription[] =
"Dynamically change the safe area insets on the compositor thread as "
"browser controls are shown or hidden during scroll. "
"Requires DynamicSafeAreaInsets to also be enabled.";
const char kCSSSafeAreaMaxInsetName[] = "CSSSafeAreaMaxInset";
const char kCSSSafeAreaMaxInsetDescription[] =
"Enables CSS engine support for the env(safe-area-max-inset-*) variables.";
const char kEducationalTipDefaultBrowserPromoCardName[] =
"Educational Tip Default Browser Promo Card";
const char kEducationalTipDefaultBrowserPromoCardDescription[] =
"Show the default browser promo card of the educational tip module on "
"magic stack in clank";
const char kEducationalTipModuleName[] = "Educational Tip Module";
const char kEducationalTipModuleDescription[] =
"Show educational tip module on magic stack in clank";
const char kEnableCommandLineOnNonRootedName[] =
"Enable command line on non-rooted devices";
const char kEnableCommandLineOnNoRootedDescription[] =
"Enable reading command line file on non-rooted devices (DANGEROUS).";
const char kEnableClipboardDataControlsAndroidName[] =
"Enable enterprise data controls.";
const char kEnableClipboardDataControlsAndroidDescription[] =
"Enables the enterprise data controls on Android for restricting copy and "
"paste actions for the clipboard.";
const char kEwalletPaymentsName[] = "Enable eWallet payments";
const char kEwalletPaymentsDescription[] =
"When enabled, Chrome will offer to pay with eWallet accounts if a payment "
"link is detected.";
const char kExternalNavigationDebugLogsName[] =
"External Navigation Debug Logs";
const char kExternalNavigationDebugLogsDescription[] =
"Enables detailed logging to logcat about why Chrome is making decisions "
"about whether to allow or block navigation to other apps";
const char kFeedFollowUiUpdateName[] = "UI Update for the Following Feed";
const char kFeedFollowUiUpdateDescription[] =
"Enables showing the updated UI for the following feed.";
const char kFeedLoadingPlaceholderName[] = "Feed loading placeholder";
const char kFeedLoadingPlaceholderDescription[] =
"Enables a placeholder UI in "
"the feed instead of the loading spinner at first load.";
const char kFeedSignedOutViewDemotionName[] = "Feed signed-out view demotion";
const char kFeedSignedOutViewDemotionDescription[] =
"Enables signed-out view demotion for the Discover Feed.";
const char kFeedStampName[] = "StAMP cards in the feed";
const char kFeedStampDescription[] = "Enables StAMP cards in the feed.";
const char kFeedCloseRefreshName[] = "Feed-close refresh";
const char kFeedCloseRefreshDescription[] =
"Enables scheduling a background refresh of the feed following feed use.";
const char kFeedContainmentName[] = "Feed containment";
const char kFeedContainmentDescription[] =
"Enables putting the feed in a container.";
const char kFeedDiscoFeedEndpointName[] =
"Feed using the DiscoFeed backend endpoint";
const char kFeedDiscoFeedEndpointDescription[] =
"Uses the DiscoFeed endpoint for serving the feed instead of GWS.";
const char kFeedHeaderRemovalName[] = "Removing feed header";
const char kFeedHeaderRemovalDescription[] = "Stops showing the feed header.";
const char kWebFeedDeprecationName[] = "Web feed deprecation";
const char kWebFeedDeprecationDescription[] = "Deprecate the web feed.";
const char kFloatingSnackbarName[] = "FloatingSnackbar";
const char kFloatingSnackbarDescription[] =
"Enables the snackbar to float on top of the web content.";
const char kForceListTabSwitcherName[] =
"Force list tab switcher for low-end devices";
const char kForceListTabSwitcherDescription[] =
"Forces the list mode of the tab switcher intended for low-end devices. "
"This flag is intended for debugging only.";
const char kFullscreenInsetsApiMigrationName[] =
"Migrate to the new fullscreen insets APIs";
const char kFullscreenInsetsApiMigrationDescription[] =
"Migration from View#setSystemUiVisibility to WindowInsetsController.";
const char kFullscreenInsetsApiMigrationOnAutomotiveName[] =
"Migrate to the new fullscreen insets APIs on automotive";
const char kFullscreenInsetsApiMigrationOnAutomotiveDescription[] =
"Migration from View#setSystemUiVisibility to WindowInsetsController on "
"automotive.";
const char kGridTabSwitcherSurfaceColorUpdateName[] =
"Grid tab switcher surface color update";
const char kGridTabSwitcherSurfaceColorUpdateDescription[] =
"Enables grid tab switcher surface color update";
const char kGtsCloseTabAnimationName[] =
"Grid tab switcher close tab animation";
const char kGtsCloseTabAnimationDescription[] =
"New grid tab switcher close tab animation.";
const char kRefreshFeedOnRestartName[] = "Enable refreshing feed on restart";
const char kRefreshFeedOnRestartDescription[] =
"Refresh feed when Chrome restarts.";
const char kInterestFeedV2Name[] = "Interest Feed v2";
const char kInterestFeedV2Description[] =
"Show content suggestions on the New Tab Page and Start Surface using the "
"new Feed Component.";
const char kLegacyTabStateDeprecationName[] =
"Enable Legacy TabState Deprecation";
const char kLegacyTabStateDeprecationDescription[] =
"Deprecates the legacy pickle based TabState format following the launch "
"of the FlatBuffer based schema.";
const char kMagicStackAndroidName[] = "Magic Stack Android";
const char kMagicStackAndroidDescription[] =
"Show a magic stack which contains a list of modules on Start surface and "
"NTPs on Android.";
const char kMaliciousApkDownloadCheckName[] = "Malicious APK download check";
const char kMaliciousApkDownloadCheckDescription[] =
"Check APK downloads on Android for malware.";
const char kMayLaunchUrlUsesSeparateStoragePartitionName[] =
"MayLaunchUrl Uses Separate Storage Partition";
const char kMayLaunchUrlUsesSeparateStoragePartitionDescription[] =
"Forces MayLaunchUrl to use a new, ephemeral, storage partition for the "
"url given to it. This is an experimental feature and may reduce "
"performance.";
const char kMiniOriginBarName[] = "Mini Origin Bar";
const char kMiniOriginBarDescription[] =
"Show a mini origin bar above the keyboard when focusing a form field. "
"Applicable to bottom toolbar on Android only.";
const char kSegmentationPlatformAndroidHomeModuleRankerV2Name[] =
"Segmentation platform Android home module ranker V2";
const char kSegmentationPlatformAndroidHomeModuleRankerV2Description[] =
"Enable on-demand segmentation platform service to rank home modules on "
"Android.";
const char kSegmentationPlatformEphemeralCardRankerName[] =
"Segmentation platform ephemeral card ranker";
const char kSegmentationPlatformEphemeralCardRankerDescription[] =
"Enable the Ephemeral Card ranker for the segmentation platform service "
"to rank home modules on Android.";
const char kMediaPickerAdoptionStudyName[] = "Android Media Picker Adoption";
const char kMediaPickerAdoptionStudyDescription[] =
"Controls how to launch the Android Media Picker (note: This flag is "
"ignored as of Android U)";
const char kNavBarColorAnimationName[] = "NavBarColorAnimation";
const char kNavBarColorAnimationDescription[] =
"Enables animations for color changes to the OS navigation bar.";
const char kNavBarColorMatchesTabBackgroundName[] =
"Nav bar color matches tab background";
const char kNavBarColorMatchesTabBackgroundDescription[] =
"Matches the OS navigation bar color to the background color of the "
"active tab.";
const char kNavigationCaptureRefactorAndroidName[] =
"Navigation Capture refactoring for Chrome on Android";
const char kNavigationCaptureRefactorAndroidDescription[] =
"Prevents UI jank when a navigation is 'captured', causing a new "
"app to be opened.";
const char kNotificationOneTapUnsubscribeName[] =
"Notification one-tap unsubscribe";
const char kNotificationOneTapUnsubscribeDescription[] =
"Enables an experimental UX that replaces the [Site settings] button on "
"web push notifications with an [Unsubscribe] button.";
const char kNotificationPermissionRationaleName[] =
"Notification Permission Rationale UI";
const char kNotificationPermissionRationaleDescription[] =
"Configure the dialog shown before requesting notification permission. "
"Only works with builds targeting Android T.";
const char kNotificationPermissionRationaleBottomSheetName[] =
"Notification Permission Rationale Bottom Sheet UI";
const char kNotificationPermissionRationaleBottomSheetDescription[] =
"Enable the alternative bottom sheet UI for the notification permission "
"flow. "
"Only works with builds targeting Android T+.";
const char kOfflineAutoFetchName[] = "Offline Auto Fetch";
const char kOfflineAutoFetchDescription[] =
"Enables auto fetch of content when Chrome is online";
const char kOmniboxShortcutsAndroidName[] = "Omnibox shortcuts on Android";
const char kOmniboxShortcutsAndroidDescription[] =
"Enables storing successful query/match in the omnibox shortcut database "
"on Android";
const char kPaymentLinkDetectionName[] = "Enable payment link detection";
const char kPaymentLinkDetectionDescription[] =
"Enables payment link detection in the DOM.";
const char kProcessRankPolicyAndroidName[] =
"Enable performance manager rank policy for Android";
const char kProcessRankPolicyAndroidDescription[] =
"Enables performance manager ranking policy to update memory priority of "
"renderer processes";
const char kProtectedTabsAndroidName[] = "Enable protected tab for Android";
const char kProtectedTabsAndroidDescription[] =
"Ensures that renderer processes for protected tabs will be killed after "
"other discard-eligible tabs. Requires #process-rank-policy-android to "
"also be enabled";
const char kReadAloudName[] = "Read Aloud";
const char kReadAloudDescription[] = "Controls the Read Aloud feature";
const char kReadAloudBackgroundPlaybackName[] =
"Read Aloud Background Playback";
const char kReadAloudBackgroundPlaybackDescription[] =
"Controls background playback for the Read Aloud feature";
const char kReadAloudInCCTName[] = "Read Aloud entrypoint in CCT";
const char kReadAloudInCCTDescription[] =
"Controls the Read Aloud entrypoint in the overflow menu for CCT";
const char kReadAloudTapToSeekName[] = "Read Aloud Tap to Seek";
const char kReadAloudTapToSeekDescription[] =
"Controls the Read Aloud Tap to Seek feature";
const char kReadLaterFlagId[] = "read-later";
const char kReadLaterName[] = "Reading List";
const char kReadLaterDescription[] =
"Allow users to save tabs for later. Enables a new button and menu for "
"accessing tabs saved for later.";
const char kReaderModeAutoDistillName[] = "Reader Mode auto distillation";
const char kReaderModeAutoDistillDescription[] =
"Automatically distills web contents on every page.";
const char kReaderModeHeuristicsName[] = "Reader Mode triggering";
const char kReaderModeHeuristicsDescription[] =
"Determines what pages the Reader Mode infobar is shown on.";
const char kReaderModeHeuristicsMarkup[] = "With article structured markup";
const char kReaderModeHeuristicsAdaboost[] = "Non-mobile-friendly articles";
const char kReaderModeHeuristicsAllArticles[] = "All articles";
const char kReaderModeHeuristicsAlwaysOff[] = "Never";
const char kReaderModeHeuristicsAlwaysOn[] = "Always";
const char kReaderModeImprovementsName[] = "Reader Mode improvements";
const char kReaderModeImprovementsDescription[] =
"Collection of improvements to reader modefor android.";
const char kReparentAuxiliaryNavigationFromPWAName[] =
"Reparent Auxiliary Navigation From PWA";
const char kReparentAuxiliaryNavigationFromPWADescription[] =
"Opens a new browser tab every time a new auxiliary navigation "
"starts in a PWA.";
const char kReparentTopLevelNavigationFromPWAName[] =
"Reparent Top Level Navigation From PWA";
const char kReparentTopLevelNavigationFromPWADescription[] =
"Opens a new browser tab when a new top level navigation "
"that starts in a PWA has no specialized handler.";
const char kReengagementNotificationName[] =
"Enable re-engagement notifications";
const char kReengagementNotificationDescription[] =
"Enables Chrome to use the in-product help system to decide when "
"to show re-engagement notifications.";
const char kRelatedSearchesAllLanguageName[] =
"Enables all the languages for Related Searches on Android";
const char kRelatedSearchesAllLanguageDescription[] =
"Enables requesting related searches suggestions for all the languages.";
const char kRelatedSearchesSwitchName[] =
"Enables an experiment for Related Searches on Android";
const char kRelatedSearchesSwitchDescription[] =
"Enables requesting related searches suggestions.";
const char kForceOffTextAutosizingName[] =
"Force off heuristics for inflating text sizes on devices with small "
"screens.";
const char kForceOffTextAutosizingDescription[] = "Disable text autosizing.";
const char kRightEdgeGoesForwardGestureNavName[] =
"RightEdgeGoesForwardGestureNav";
const char kRightEdgeGoesForwardGestureNavDescription[] =
"Enables the right edge to navigate forward in OS gesture navigation mode.";
const char kSafeBrowsingSyncCheckerCheckAllowlistName[] =
"Safe Browsing Sync Checker Check Allowlist";
const char kSafeBrowsingSyncCheckerCheckAllowlistDescription[] =
"Enables Safe Browsing sync checker to check the allowlist before checking "
"the blocklist.";
const char kShareCustomActionsInCCTName[] = "Custom Actions in CCT";
const char kShareCustomActionsInCCTDescription[] =
"Display share custom actions Chrome Custom Tabs.";
const char kShowReadyToPayDebugInfoName[] =
"Show debug information about IS_READY_TO_PAY intents";
const char kShowReadyToPayDebugInfoDescription[] =
"Display an alert dialog with the contents of IS_READY_TO_PAY intents "
"that Chrome sends to Android payment applications: app's package name, "
"service name, payment method name, and method specific data.";
const char kSecurePaymentConfirmationAndroidName[] =
"Secure Payment Confirmation on Android";
const char kSecurePaymentConfirmationAndroidDescription[] =
"Enables Secure Payment Confirmation on Android.";
const char kSetMarketUrlForTestingName[] = "Set market URL for testing";
const char kSetMarketUrlForTestingDescription[] =
"When enabled, sets the market URL for use in testing the update menu "
"item.";
const char kSiteIsolationForPasswordSitesName[] =
"Site Isolation For Password Sites";
const char kSiteIsolationForPasswordSitesDescription[] =
"Security mode that enables site isolation for sites based on "
"password-oriented heuristics, such as a user typing in a password.";
const char kSmartZoomName[] = "Smart Zoom";
const char kSmartZoomDescription[] =
"Enable the Smart Zoom accessibility feature as an alternative approach "
"to zooming web contents.";
const char kSmartSuggestionForLargeDownloadsName[] =
"Smart suggestion for large downloads";
const char kSmartSuggestionForLargeDownloadsDescription[] =
"Smart suggestion that offers download locations for large files.";
const char kSearchResumptionModuleAndroidName[] = "Search Resumption Module";
const char kSearchResumptionModuleAndroidDescription[] =
"Enable showing search suggestions on NTP";
const char kStrictSiteIsolationName[] = "Strict site isolation";
const char kStrictSiteIsolationDescription[] =
"Security mode that enables site isolation for all sites (SitePerProcess). "
"In this mode, each renderer process will contain pages from at most one "
"site, using out-of-process iframes when needed. "
"Check chrome://process-internals to see the current isolation mode. "
"Setting this flag to 'Enabled' turns on site isolation regardless of the "
"default. Here, 'Disabled' is a legacy value that actually means "
"'Default,' in which case site isolation may be already enabled based on "
"platform, enterprise policy, or field trial. See also "
"#site-isolation-trial-opt-out for how to disable site isolation for "
"testing.";
const char kSupportMultipleServerRequestsForPixPaymentsName[] =
"Support multiple server requests for Pix payments";
const char kSupportMultipleServerRequestsForPixPaymentsDescription[] =
"When enabled, the network interface with Google Payments supports "
"handling multiple concurrent requests for Pix flows.";
const char kSwapNewTabAndNewTabInGroupAndroidName[] =
"Swap new tab and new tab in group order";
const char kSwapNewTabAndNewTabInGroupAndroidDescription[] =
"When enabled swaps the open in new tab and open in new tab in group menu "
"items.";
const char kCrossDeviceTabPaneAndroidName[] = "Cross Device Tab Pane Android";
const char kCrossDeviceTabPaneAndroidDescription[] =
"Enables showing a new pane in the hub that displays the pre-existing "
"cross device tabs feature originally located in Recent Tabs.";
const char kHistoryPaneAndroidName[] = "History Pane Android";
const char kHistoryPaneAndroidDescription[] =
"Enables showing a new pane in the hub that displays History.";
const char kTabGroupSyncAndroidName[] = "Tab Group Sync on Android";
const char kTabGroupSyncAndroidDescription[] =
"Enables syncing of tab groups on Android with other devices.";
const char kTabGroupSyncDisableNetworkLayerName[] =
"Tab Group Sync Disable Network Layer";
const char kTabGroupSyncDisableNetworkLayerDescription[] =
"Disables network layer of tab group sync.";
const char kTabStripContextMenuAndroidName[] = "Tab Strip Context Menu Android";
const char kTabStripContextMenuAndroidDescription[] =
"Enables context menus upon long-pressing on a tab on the tab strip.";
const char kTabStripDensityChangeAndroidName[] = "Tab Strip Density Change";
const char kTabStripDensityChangeAndroidDescription[] =
"Enables tab UI to switch to a denser layout when a peripheral(keyboard, "
"mouse, touchpad, etc.) is connected, including reducing minimum tab "
"width and button touch target to better support click-first interactions.";
const char kTabStripGroupDragDropAndroidName[] =
"Tab Strip Group Drag Drop Android";
const char kTabStripGroupDragDropAndroidDescription[] =
"Enables long-pressing on tab strip tab group indicators to start "
"drag-and-drop. Users can drag the tab group off the tab strip and drop it "
"into another window in split-screen mode or create a new window by "
"dropping it on the edge of Chrome.";
const char kTabStripGroupReorderAndroidName[] = "Tab Strip Group Reorder";
const char kTabStripGroupReorderAndroidDescription[] =
"Enables long-pressing on tab strip tab group indicators to enter reorder "
"mode. Users will then be able to drag the tab group to reorder it.";
const char kTabStripIncognitoMigrationName[] =
"Tab Strip Incognito switcher migration to toolbar";
const char kTabStripIncognitoMigrationDescription[] =
"Migrates tab strip incognito switcher to toolbar and adds options to tab "
"switcher context menu.";
const char kTabStripLayoutOptimizationName[] = "Tab Strip Layout Optimization";
const char kTabStripLayoutOptimizationDescription[] =
"Allows adding horizontal and vertical margin to the tab strip.";
const char kTabStripTransitionInDesktopWindowName[] =
"Tab Strip Transition in Desktop Window";
const char kTabStripTransitionInDesktopWindowDescription[] =
"Allows hiding / showing the tab strip with varying desktop window widths "
"by initiating a fade transition.";
const char kUseHardwareBufferUsageFlagsFromVulkanName[] =
"Use recommended AHardwareBuffer usage flags from Vulkan";
const char kUseHardwareBufferUsageFlagsFromVulkanDescription[] =
"Allows querying recommended AHardwareBuffer usage flags from Vulkan API";
const char kUpdateMenuBadgeName[] = "Force show update menu badge";
const char kUpdateMenuBadgeDescription[] =
"When enabled, a badge will be shown on the app menu button if the update "
"type is Update Available or Unsupported OS Version.";
const char kUpdateMenuItemCustomSummaryDescription[] =
"When this flag and the force show update menu item flag are enabled, a "
"custom summary string will be displayed below the update menu item.";
const char kUpdateMenuItemCustomSummaryName[] =
"Update menu item custom summary";
const char kUpdateMenuTypeName[] =
"Forces the update menu type to a specific type";
const char kUpdateMenuTypeDescription[] =
"When set, forces the update type to be a specific one, which impacts "
"the app menu badge and menu item for updates.";
const char kUpdateMenuTypeNone[] = "None";
const char kUpdateMenuTypeUpdateAvailable[] = "Update Available";
const char kUpdateMenuTypeUnsupportedOSVersion[] = "Unsupported OS Version";
const char kOmahaMinSdkVersionAndroidName[] =
"Forces the minimum Android SDK version to a particular value.";
const char kOmahaMinSdkVersionAndroidDescription[] =
"When set, the minimum Android minimum SDK version is set to a particular "
"value which impact the app menu badge, menu items, and settings about "
"screen regarding whether Chrome can be updated.";
const char kOmahaMinSdkVersionAndroidMinSdk1Description[] = "Minimum SDK = 1";
const char kOmahaMinSdkVersionAndroidMinSdk1000Description[] =
"Minimum SDK = 1000";
const char kVideoTutorialsName[] = "Enable video tutorials";
const char kVideoTutorialsDescription[] = "Show video tutorials in Chrome";
const char kCCTAdaptiveButtonName[] = "Adaptive button in Custom Tabs";
const char kCCTAdaptiveButtonDescription[] =
"Enables adaptive action button in Custom Tabs toolbar";
const char kAdaptiveButtonInTopToolbarPageSummaryName[] =
"Adaptive button in top toolbar - Page Summary";
const char kAdaptiveButtonInTopToolbarPageSummaryDescription[] =
"Enables a summary button in the top toolbar. Must be selected in "
"Settings > Toolbar Shortcut.";
const char kAdaptiveButtonInTopToolbarCustomizationName[] =
"Adaptive button in top toolbar customization";
const char kAdaptiveButtonInTopToolbarCustomizationDescription[] =
"Enables UI for customizing the adaptive action button in the top toolbar";
const char kWebFeedAwarenessName[] = "Web Feed Awareness";
const char kWebFeedAwarenessDescription[] =
"Helps the user discover the web feed.";
const char kWebFeedOnboardingName[] = "Web Feed Onboarding";
const char kWebFeedOnboardingDescription[] =
"Helps the user understand how to use the web feed.";
const char kWebFeedSortName[] = "Web Feed Sort";
const char kWebFeedSortDescription[] =
"Allows users to sort their web content in the web feed. "
"Only works if Web Feed is also enabled.";
const char kWebXrSharedBuffersName[] = "WebXR Shared Buffers";
const char kWebXrSharedBuffersDescription[] =
"Toggles whether or not WebXR attempts to use SharedBuffers for moving "
"textures from the device to the renderer. When this flag is set to either "
"enabled or default SharedBuffer support will be dependent on what the "
"device can actually support.";
const char kXsurfaceMetricsReportingName[] = "Xsurface Metrics Reporting";
const char kXsurfaceMetricsReportingDescription[] =
"Allows metrics reporting state to be passed to Xsurface";
#if BUILDFLAG(ENABLE_VR) && BUILDFLAG(ENABLE_OPENXR)
const char kOpenXRExtendedFeaturesName[] =
"WebXR OpenXR Runtime Extended Features";
const char kOpenXRExtendedFeaturesDescription[] =
"Enables the use of the OpenXR runtime to create WebXR sessions with a "
"broader feature set (e.g. features not currently supported on Desktop).";
const char kOpenXRName[] = "Enable OpenXR WebXR Runtime";
const char kOpenXRDescription[] =
"Enables the use of the OpenXR runtime to create WebXR sessions.";
const char kOpenXRAndroidSmoothDepthName[] = "Enable OpenXR Smooth Depth";
const char kOpenXRAndroidSmoothDepthDescription[] =
"Forces the OpenXR Android runtime to use the Smooth depth image. When "
"Disabled, the raw depth image will be used instead.";
#endif
// Non-Android -----------------------------------------------------------------
#else // BUILDFLAG(IS_ANDROID)
const char kAccountStoragePrefsThemesAndSearchEnginesName[] =
"Account storage of preferences, themes and search engines";
const char kAccountStoragePrefsThemesAndSearchEnginesDescription[] =
"When enabled, keeps account preferences, themes and search-engines "
"separate from the local data. If the user signs out or sync is turned "
"off, only the account data is removed while the pre-existing/local data "
"is left behind.";
const char kAllowAllSitesToInitiateMirroringName[] =
"Allow all sites to initiate mirroring";
const char kAllowAllSitesToInitiateMirroringDescription[] =
"When enabled, allows all websites to request to initiate tab mirroring "
"via Presentation API. Requires #cast-media-route-provider to also be "
"enabled";
const char kAXTreeFixingName[] = "AXTree Fixing";
const char kAXTreeFixingDescription[] =
"When enabled, allows Chrome to dynamically fix the AXTree of sites. This "
"is experimental and may cause breaking changes to users of assistive "
"technology.";
const char kBrowserInitiatedAutomaticPictureInPictureName[] =
"Browser initiated automatic picture in picture";
const char kBrowserInitiatedAutomaticPictureInPictureDescription[] =
"When enabled, allows the browser to automatically enter picture in "
"picture when a series of conditions are met.";
const char kDialMediaRouteProviderName[] =
"Allow cast device discovery with DIAL protocol";
const char kDialMediaRouteProviderDescription[] =
"Enable/Disable the browser discovery of the DIAL support cast device."
"It sends a discovery SSDP message every 120 seconds";
const char kDelayMediaSinkDiscoveryName[] =
"Delay media sink discovery until explicit user interaction with cast";
const char kDelayMediaSinkDiscoveryDescription[] =
"Delay the browser background discovery of Cast and DIAL devices until "
"users have interacted with the Cast UI or visited a site supporting Cast "
"SDK or Remote Playback API.";
const char kShowCastPermissionRejectedErrorName[] =
"Show the permission rejected error message in the Cast/GMC UI.";
const char kShowCastPermissionRejectedErrorDescription[] =
"Show an error message in the Cast/GMC UI to inform users when the network "
"permission is rejected and Chrome's Cast feature is disabled.";
const char kCastMirroringTargetPlayoutDelayName[] =
"Changes the target playout delay for Cast mirroring.";
const char kCastMirroringTargetPlayoutDelayDescription[] =
"Choose a target playout delay for Cast mirroring. A lower delay will "
"decrease latency, but may impact other quality indicators.";
const char kCastMirroringTargetPlayoutDelayDefault[] = "Default (200ms)";
const char kCastMirroringTargetPlayoutDelay100ms[] = "100ms.";
const char kCastMirroringTargetPlayoutDelay150ms[] = "150ms.";
const char kCastMirroringTargetPlayoutDelay250ms[] = "250ms.";
const char kCastMirroringTargetPlayoutDelay300ms[] = "300ms.";
const char kCastMirroringTargetPlayoutDelay350ms[] = "350ms.";
const char kCastMirroringTargetPlayoutDelay400ms[] = "400ms.";
const char kEnableLiveCaptionMultilangName[] = "Multilingual Live Caption";
const char kEnableLiveCaptionMultilangDescription[] =
"Enables the multilingual Live Caption Feature which allows "
"for many language choices and automated language choices.";
const char kEnableHeadlessLiveCaptionName[] = "Headless Live Captions";
const char kEnableHeadlessLiveCaptionDescription[] =
"Enable features related to headless captions exploration. These are "
"very likely unstable.";
const char kEnableCrOSLiveTranslateName[] = "Live Translate CrOS";
const char kEnableCrOSLiveTranslateDescription[] =
"Enables the live translate feature on ChromeOS which allows for live "
"translation of captions into a target language.";
const char kEnableCrOSSodaLanguagesName[] = "SODA language expansion";
const char kEnableCrOSSodaLanguagesDescription[] =
"Enable language expansion for SODA on device to "
"impact dictation and Live Captions.";
const char kEnableCrOSSodaConchLanguagesName[] = "SODA Conch Languages.";
const char kEnableCrOSSodaConchLanguagesDescription[] =
"Enable Conch specific SODA language models.";
const char kFreezingOnEnergySaverName[] =
"Freeze CPU intensive background tabs on Energy Saver";
const char kFreezingOnEnergySaverDescription[] =
"When Energy Saver is active, freeze eligible background tabs that use a "
"lot of CPU. A tab is eligible if it's silent, doesn't provide audio- or "
"video- conference functionality and doesn't use WebUSB or Web Bluetooth.";
const char kFreezingOnEnergySaverTestingName[] =
"Freeze CPU intensive background tabs on Energy Saver - Testing Mode";
const char kFreezingOnEnergySaverTestingDescription[] =
"Similar to #freezing-on-energy-saver, with changes to facilitate testing: "
"1) pretend that Energy Saver is active even when it's not and 2) pretend "
"that all tabs use a lot of CPU.";
const char kImprovedPasswordChangeServiceName[] =
"Improved password change service";
const char kImprovedPasswordChangeServiceDescription[] =
"Experimental feature, which offers automatic password change to the user "
"when they sign in with a credential known to be leaked.";
const char kInfiniteTabsFreezingName[] = "Infinite Tabs Freezing";
const char kInfiniteTabsFreezingDescription[] =
"Freezes eligible tabs which are not in the 5 most recently used ones, to "
"preserve Chrome speed as new tabs are created. Tabs providing background "
"functionality (e.g. playing audio, handling a video call) are not "
"eligible for freezing.";
const char kMemoryPurgeOnFreezeLimitName[] = "Memory Purge on Freeze Limit";
const char kMemoryPurgeOnFreezeLimitDescription[] =
"Do not purge memory in renderers with frozen pages more than once per "
"backgrounded interval, to minimize overhead when pages are periodically "
"unfrozen. To be enabled with memory-purge-on-freeze-limit.";
const char kKeyboardLockPromptName[] = "Keyboard Lock prompt";
const char kKeyboardLockPromptDescription[] =
"Requesting to use the keyboard lock API causes a permission prompt to be "
"shown.";
const char kPressAndHoldEscToExitBrowserFullscreenName[] =
"Holding Esc to exit browser fullscreen";
const char kPressAndHoldEscToExitBrowserFullscreenDescription[] =
"Allows users to press and hold Esc key to exit browser fullscreen.";
const char kReadAnythingImagesViaAlgorithmName[] =
"Reading Mode with images added via algorithm";
const char kReadAnythingImagesViaAlgorithmDescription[] =
"Have Reading Mode use a local rules based algorithm to include images "
"from webpages.";
const char kReadAnythingReadAloudName[] = "Reading Mode Read Aloud";
const char kReadAnythingReadAloudDescription[] =
"Enables the experimental Read Aloud feature in Reading Mode.";
const char kReadAnythingReadAloudPhraseHighlightingName[] =
"Reading Mode Read Aloud Phrase Highlighting";
const char kReadAnythingReadAloudPhraseHighlightingDescription[] =
"Enables the experimental Reading Mode feature that highlights by phrases "
"when reading aloud, when the phrase option is selected from the highlight "
"menu.";
const char kReadAnythingDocsIntegrationName[] =
"Reading Mode Google Docs Integration";
const char kReadAnythingDocsIntegrationDescription[] =
"Allows Reading Mode to work on Google Docs.";
const char kReadAnythingDocsLoadMoreButtonName[] =
"Reading Mode Google Docs Load More Button";
const char kReadAnythingDocsLoadMoreButtonDescription[] =
"Adds a button to the end of the Reading Mode UI. When clicked, "
"the main page scrolls to show the next page's content.";
const char kLinkPreviewName[] = "Link Preview";
const char kLinkPreviewDescription[] =
"When enabled, Link Preview feature gets to be available to preview a "
"linked page in a dedicated small window before navigating to the linked "
"page. The feature can be triggered from a context menu item, or users' "
"actions. We are evaluating multiple actions in our experiment to "
"understand what's to be the best for users from the viewpoint of "
"security, privacy, and usability. The feature might be unstable and "
"unusable on some platforms, e.g. macOS or touch devices.";
const char kMarkAllCredentialsAsLeakedName[] = "Mark all credential as leaked";
const char kMarkAllCredentialsAsLeakedDescription[] =
"Will pop up the leaked check dialog on every password form submission. "
"This should be used "
"in combination with #improved-password-change-service to better test the "
"improved password change service";
const char kMuteNotificationSnoozeActionName[] =
"Snooze action for mute notifications";
const char kMuteNotificationSnoozeActionDescription[] =
"Adds a Snooze action to mute notifications shown while sharing a screen.";
const char kNtpAlphaBackgroundCollectionsName[] =
"NTP Alpha Background Collections";
const char kNtpAlphaBackgroundCollectionsDescription[] =
"Shows alpha NTP background collections in Customize Chrome.";
const char kNtpBackgroundImageErrorDetectionName[] =
"NTP Background Image Error Detection";
const char kNtpBackgroundImageErrorDetectionDescription[] =
"Checks NTP background image links for HTTP status errors.";
const char kNtpCalendarModuleName[] = "NTP Calendar Module";
const char kNtpCalendarModuleDescription[] =
"Shows the Google Calendar module on the New Tab Page.";
const char kNtpChromeCartModuleName[] = "NTP Chrome Cart Module";
const char kNtpChromeCartModuleDescription[] =
"Shows the chrome cart module on the New Tab Page.";
const char kNtpSearchboxComposeboxName[] = "NTP Composebox";
const char kNtpSearchboxComposeboxDescription[] =
"Shows the Composebox on the New Tab Page Searchbox upon clicking the "
"entrypoint.";
const char kNtpSearchboxComposeEntrypointName[] = "NTP Compose Entrypoint";
const char kNtpSearchboxComposeEntrypointDescription[] =
"Shows the Compose entrypoint on the New Tab Page Searchbox.";
const char kNtpDriveModuleName[] = "NTP Drive Module";
const char kNtpDriveModuleDescription[] =
"Shows the Google Drive module on the New Tab Page";
const char kNtpDriveModuleNoSyncRequirementName[] =
"NTP Drive Module No Sync Requirement";
const char kNtpDriveModuleNoSyncRequirementDescription[] =
"Removes the requirement for Sync to be enabled for the Drive module on "
"the New Tab Page.";
const char kNtpDriveModuleSegmentationName[] = "NTP Drive Module Segmentation";
const char kNtpDriveModuleSegmentationDescription[] =
"Uses segmentation data to decide whether to show the Drive module on the "
"New Tab Page.";
const char kNtpDriveModuleShowSixFilesName[] =
"NTP Drive Module Show Six Files";
const char kNtpDriveModuleShowSixFilesDescription[] =
"Shows six files in the NTP Drive module, instead of three.";
#if !defined(OFFICIAL_BUILD)
const char kNtpDummyModulesName[] = "NTP Dummy Modules";
const char kNtpDummyModulesDescription[] =
"Adds dummy modules to New Tab Page when 'NTP Modules Redesigned' is "
"enabled.";
#endif
const char kNtpFooterName[] = "NTP Footer";
const char kNtpFooterDescription[] =
"Adds footer to New Tab Page that encapsulates customize buttons and "
"background/theme attributions.";
const char kNtpMicrosoftAuthenticationModuleName[] =
"NTP Microsoft Authentication Module";
const char kNtpMicrosoftAuthenticationModuleDescription[] =
"Shows the Microsoft Authentication Module on the New Tab Page.";
const char kNtpMostRelevantTabResumptionModuleName[] =
"NTP Most Relevant Tab Resumption Module";
const char kNtpMostRelevantTabResumptionModuleDescription[] =
"Shows the Most Relevant Tab Resumption Module on the New Tab Page.";
const char kNtpMostRelevantTabResumptionModuleFallbackToHostName[] =
"NTP Most Relevant Tab Resumption Module uses fallback to host for favicon";
const char kNtpMostRelevantTabResumptionModuleFallbackToHostDescription[] =
"Shows the host fallback icon instead of server fallback on Most Relevant "
"Tab Resumption Module on the New Tab Page.";
const char kNtpMiddleSlotPromoDismissalName[] =
"NTP Middle Slot Promo Dismissal";
const char kNtpMiddleSlotPromoDismissalDescription[] =
"Allows middle slot promo to be dismissed from New Tab Page until "
"new promo message is populated.";
const char kNtpMobilePromoName[] = "NTP Mobile Promo";
const char kNtpMobilePromoDescription[] =
"Shows a promo for installing on mobile to the New Tab Page.";
const char kForceNtpMobilePromoName[] = "Force NTP Mobile Promo";
const char kForceNtpMobilePromoDescription[] =
"Forces a promo for installing on mobile to the New Tab Page to show "
"without preconditions.";
const char kNtpModulesDragAndDropName[] = "NTP Modules Drag and Drop";
const char kNtpModulesDragAndDropDescription[] =
"Enables modules to be reordered via dragging and dropping on the "
"New Tab Page.";
const char kNtpModulesRedesignedName[] = "NTP Modules Redesigned";
const char kNtpModulesRedesignedDescription[] =
"Shows the redesigned modules on the New Tab Page.";
const char kNtpPhotosModuleName[] = "NTP Photos Module";
const char kNtpPhotosModuleDescription[] =
"Shows the Google Photos module on the New Tab Page";
const char kNtpPhotosModuleOptInArtWorkName[] =
"NTP Photos Module Opt In ArtWork";
const char kNtpPhotosModuleOptInArtWorkDescription[] =
"Determines the art work in the NTP Photos Opt-In card";
const char kNtpPhotosModuleOptInTitleName[] = "NTP Photos Module Opt In Title";
const char kNtpPhotosModuleOptInTitleDescription[] =
"Determines the title of the NTP Photos Opt-In card";
const char kNtpPhotosModuleSoftOptOutName[] = "NTP Photos Module Soft Opt-Out";
const char kNtpPhotosModuleSoftOptOutDescription[] =
"Enables soft opt-out option in Photos opt-in card";
const char kNtpOneGoogleBarAsyncBarPartsName[] =
"NTP OneGoogleBar Async Bar Parts";
const char kNtpOneGoogleBarAsyncBarPartsDescription[] =
"Enables the OneGoogleBar async bar parts API on the New Tab Page.";
const char kNtpOutlookCalendarModuleName[] = "NTP Outlook Calendar Module";
const char kNtpOutlookCalendarModuleDescription[] =
"Shows the Outlook Calendar module on the New Tab Page.";
const char kNtpRealboxContextualAndTrendingSuggestionsName[] =
"NTP Realbox Contextual and Trending Suggestions";
const char kNtpRealboxContextualAndTrendingSuggestionsDescription[] =
"Allows NTP Realbox's second column to display contextual and trending "
"text suggestions.";
const char kNtpRealboxCr23ThemingName[] = "Chrome Refresh Themed Realbox";
const char kNtpRealboxCr23ThemingDescription[] =
"CR23 theming will be applied in Realbox when enabled.";
const char kNtpRealboxMatchSearchboxThemeName[] =
"NTP Realbox Matches Searchbox Theme";
const char kNtpRealboxMatchSearchboxThemeDescription[] =
"Makes NTP Realbox drop shadow match that of the Searchbox when enabled.";
const char kNtpRealboxUseGoogleGIconName[] = "NTP Realbox Google G Icon";
const char kNtpRealboxUseGoogleGIconDescription[] =
"Shows Google G icon "
"instead of Search Loupe in realbox when enabled";
const char kNtpSafeBrowsingModuleName[] = "NTP Safe Browsing Module";
const char kNtpSafeBrowsingModuleDescription[] =
"Shows the safe browsing module on the New Tab Page.";
const char kNtpSharepointModuleName[] = "NTP Sharepoint Module";
const char kNtpSharepointModuleDescription[] =
"Shows the Sharepoint module on the New Tab Page.";
const char kNtpWallpaperSearchButtonName[] = "NTP Wallpaper Search Button";
const char kNtpWallpaperSearchButtonDescription[] =
"Enables entry point on New Tab Page for Customize Chrome Side Panel "
"Wallpaper Search.";
const char kNtpWallpaperSearchButtonAnimationName[] =
"NTP Wallpaper Search Button Animation";
const char kNtpWallpaperSearchButtonAnimationDescription[] =
"Enables animation for New Tab Page's Wallpaper Search button. Requires "
"#ntp-wallpaper-search-button to be enabled too.";
const char kNtpWideModulesName[] = "NTP Wide Modules";
const char kNtpWideModulesDescription[] =
"Shows wide NTP modules if NTP provides enough space.";
const char kHappinessTrackingSurveysForDesktopDemoName[] =
"Happiness Tracking Surveys Demo";
const char kHappinessTrackingSurveysForDesktopDemoDescription[] =
"Enable showing Happiness Tracking Surveys Demo to users on Desktop";
const char kMainNodeAnnotationsName[] = "Main Node Annotations";
const char kMainNodeAnnotationsDescription[] =
"Uses Screen2x main content extractor to annotate the accessibility tree "
"with the main landmark on the node identified as main.";
const char kOmniboxDriveSuggestionsNoSyncRequirementName[] =
"Omnibox Google Drive Document suggestions don't require Chrome Sync";
const char kOmniboxDriveSuggestionsNoSyncRequirementDescription[] =
"Omnibox Drive suggestions don't require the user to have enabled Chrome "
"Sync and are available when all other requirements are met.";
const char kProbabilisticMemorySaverName[] = "Probabilistic Memory Saver Mode";
const char kProbabilisticMemorySaverDescription[] =
"Memory Saver uses some probability distributions to estimate the chance "
"of tab revisit based on observations about the tab's state.";
const char kSavePasswordsContextualUiName[] = "Save Password Contextual UI";
const char kSavePasswordsContextualUiDescription[] =
"Improved page action indicator and dialog UI when the user has "
"blocklisted the current site for password saving.";
const char kSCTAuditingName[] = "SCT auditing";
const char kSCTAuditingDescription[] =
"Enables SCT auditing for users who have opted in to Safe Browsing "
"Extended Reporting.";
const char kSmartCardWebApiName[] = "Smart Card API";
const char kSmartCardWebApiDescription[] =
"Enable access to the Smart Card API. See "
"https://github.com/WICG/web-smart-card#readme for more information.";
const char kTabCaptureInfobarLinksName[] =
"Navigation links in the tab-sharing bar";
const char kTabCaptureInfobarLinksDescription[] =
"Enables quick-navigation links to the captured and capturing tab in the "
"tab-sharing bar.";
#if !BUILDFLAG(IS_ANDROID)
const char kTranslateOpenSettingsName[] = "Translate Open Settings";
const char kTranslateOpenSettingsDescription[] =
"Add an option to the translate bubble menu to open language settings.";
#endif
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC)
const char kWasmTtsComponentUpdaterEnabledName[] =
"Enable Wasm TTS Extension Component";
const char kWasmTtsComponentUpdaterEnabledDescription[] =
"Enable updating the wasm TTS extension resource files through the "
"Component Updater.";
#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC)
const char kWebAuthenticationPermitEnterpriseAttestationName[] =
"Web Authentication Enterprise Attestation";
const char kWebAuthenticationPermitEnterpriseAttestationDescription[] =
"Permit a set of origins to request a uniquely identifying enterprise "
"attestation statement from a security key when creating a Web "
"Authentication credential.";
#endif // BUILDFLAG(IS_ANDROID)
// Windows ---------------------------------------------------------------------
#if BUILDFLAG(IS_WIN)
const char kCalculateNativeWinOcclusionName[] =
"Calculate window occlusion on Windows";
const char kCalculateNativeWinOcclusionDescription[] =
"Calculate window occlusion on Windows will be used in the future "
"to throttle and potentially unload foreground tabs in occluded windows";
const char kEnableMediaFoundationVideoCaptureName[] =
"MediaFoundation Video Capture";
const char kEnableMediaFoundationVideoCaptureDescription[] =
"Enable/Disable the usage of MediaFoundation for video capture. Fall back "
"to DirectShow if disabled.";
const char kHardwareSecureDecryptionName[] = "Hardware Secure Decryption";
const char kHardwareSecureDecryptionDescription[] =
"Enable/Disable the use of hardware secure Content Decryption Module (CDM) "
"for protected content playback.";
const char kHidGetFeatureReportFixName[] =
"Adjust feature reports received with WebHID";
const char kHidGetFeatureReportFixDescription[] =
"Enable/Disable a fix for a bug that caused feature reports to be offset "
"by one byte when received from devices that do not use numbered reports.";
const char kHardwareSecureDecryptionExperimentName[] =
"Hardware Secure Decryption Experiment";
const char kHardwareSecureDecryptionExperimentDescription[] =
"Enable/Disable the use of hardware secure Content Decryption Module (CDM) "
"for experimental protected content playback.";
const char kHardwareSecureDecryptionFallbackName[] =
"Hardware Secure Decryption Fallback";
const char kHardwareSecureDecryptionFallbackDescription[] =
"Allows automatically disabling hardware secure Content Decryption Module "
"(CDM) after failures or crashes. Subsequent playback may use software "
"secure CDMs. If this feature is disabled, the fallback will never happen "
"and users could be stuck with playback failures.";
const char kMediaFoundationClearName[] = "Media Foundation for Clear";
const char kMediaFoundationClearDescription[] =
"Enable/Disable the use of MediaFoundation for non-protected content "
"playback on supported systems.";
const char kMediaFoundationClearStrategyName[] =
"Media Foundation for Clear Rendering Strategy";
const char kMediaFoundationClearStrategyDescription[] =
"Sets the rendering strategy to be used when Media Foundation for Clear is "
"in use. The "
"Direct Composition rendering strategy enforces presentation to a Direct "
"Composition surface "
"from the Media Foundation Media Engine. The Frame Server rendering "
"strategy produces video "
"frames from the Media Foundation Media Engine which are fed through "
"Chromium's frame painting "
"pipeline. The Dynamic rendering strategy allows changing between the two "
"modes based on the "
"current operating conditions. Other options will result in a default "
"rendering strategy.";
const char kMediaFoundationCameraUsageMonitoringName[] =
"Media Foundation Camera Usage Monitoring";
const char kMediaFoundationCameraUsageMonitoringDescription[] =
"Enables the use of Media Foundation for camera usage monitoring. "
"This allows detecting if a camera is being used by another application.";
const char kRawAudioCaptureName[] = "Raw audio capture";
const char kRawAudioCaptureDescription[] =
"Enable/Disable the usage of WASAPI raw audio capture. When enabled, the "
"audio stream is a 'raw' stream that bypasses all signal processing except "
"for endpoint specific, always-on processing in the Audio Processing Object"
" (APO), driver, and hardware.";
const char kUseAngleDescriptionWindows[] =
"Choose the graphics backend for ANGLE. D3D11 is used on most Windows "
"computers by default. Using the OpenGL backend is not supported and will "
"likely exhibit rendering artifacts.";
const char kUseAngleD3D11[] = "D3D11";
const char kUseAngleD3D9[] = "D3D9";
const char kUseAngleD3D11on12[] = "D3D11on12";
const char kUseWaitableSwapChainName[] = "Use waitable swap chains";
const char kUseWaitableSwapChainDescription[] =
"Use waitable swap chains to reduce presentation latency (effective only "
"Windows 8.1 or later). If enabled, specify the maximum number of frames "
"that can be queued, ranging from 1-3. 1 has the lowest delay but is most "
"likely to drop frames, while 3 has the highest delay but is least likely "
"to drop frames.";
const char kUseWinrtMidiApiName[] = "Use Windows Runtime MIDI API";
const char kUseWinrtMidiApiDescription[] =
"Use Windows Runtime MIDI API for WebMIDI (effective only on Windows 10 or "
"later).";
const char kWebRtcAllowWgcScreenCapturerName[] =
"Use Windows WGC API for screen capture";
const char kWebRtcAllowWgcScreenCapturerDescription[] =
"Use Windows.Graphics.Capture API based screen capturer in combination "
"with the WebRTC based Web API getDisplayMedia. Requires Windows 10, "
"version 1803 or higher. Adds a thin yellow border around the captured "
"screen area. The DXGI API is used as screen capture API when this flag is "
"disabled.";
const char kWebRtcAllowWgcWindowCapturerName[] =
"Use Windows WGC API for window capture";
const char kWebRtcAllowWgcWindowCapturerDescription[] =
"Use Windows.Graphics.Capture API based windows capturer in combination "
"with the WebRTC based Web API getDisplayMedia. Requires Windows 10, "
"version 1803 or higher. Adds a thin yellow border around the captured "
"window area. The GDI API is used as window capture API when this flag is "
"disabled.";
const char kWebRtcWgcRequireBorderName[] = "Border around WGC captures";
const char kWebRtcWgcRequireBorderDescription[] =
"When using WGC to capture a window or a screen, draw a border around the "
"captured surface.";
const char kWindows11MicaTitlebarName[] = "Windows 11 Mica titlebar";
const char kWindows11MicaTitlebarDescription[] =
"Use the DWM system-drawn Mica titlebar on Windows 11, version 22H2 (build "
"22621) and above.";
#if BUILDFLAG(ENABLE_EXTENSIONS)
const char kLaunchWindowsNativeHostsDirectlyName[] =
"Force Native Host Executables to Launch Directly";
const char kLaunchWindowsNativeHostsDirectlyDescription[] =
"Force Native Host executables to launch directly via CreateProcess.";
#endif // ENABLE_EXTENSIONS
#if BUILDFLAG(ENABLE_PRINTING)
const char kPrintWithPostScriptType42FontsName[] =
"Print with PostScript Type 42 fonts";
const char kPrintWithPostScriptType42FontsDescription[] =
"When using PostScript level 3 printing, render text with Type 42 fonts if "
"possible.";
const char kPrintWithReducedRasterizationName[] =
"Print with reduced rasterization";
const char kPrintWithReducedRasterizationDescription[] =
"When using GDI printing, avoid rasterization if possible.";
const char kReadPrinterCapabilitiesWithXpsName[] =
"Read printer capabilities with XPS";
const char kReadPrinterCapabilitiesWithXpsDescription[] =
"When enabled, utilize XPS interface to read printer capabilities.";
const char kUseXpsForPrintingName[] = "Use XPS for printing";
const char kUseXpsForPrintingDescription[] =
"When enabled, use XPS printing API instead of the GDI print API.";
const char kUseXpsForPrintingFromPdfName[] = "Use XPS for printing from PDF";
const char kUseXpsForPrintingFromPdfDescription[] =
"When enabled, use XPS printing API instead of the GDI print API when "
"printing PDF documents.";
#endif // BUILDFLAG(ENABLE_PRINTING)
#endif // BUILDFLAG(IS_WIN)
// Mac -------------------------------------------------------------------------
#if BUILDFLAG(IS_MAC)
const char kImmersiveFullscreenName[] = "Immersive Fullscreen Toolbar";
const char kImmersiveFullscreenDescription[] =
"Automatically hide and show the toolbar in fullscreen.";
const char kMacAccessibilityAPIMigrationName[] = "Mac A11y API Migration";
const char kMacAccessibilityAPIMigrationDescription[] =
"Enables the migration to the new Cocoa accessibility API.";
const char kMacCatapSystemAudioLoopbackCaptureName[] =
"Mac Core Audio Tap System Loopback Capture";
const char kMacCatapSystemAudioLoopbackCaptureDescription[] =
"Enable system audio loopback capture using the macOS CoreAudio tap API on "
"macOS 14.2+. For system audio loopback to be enabled in "
"getDisplayMedia(), the feature 'MacLoopbackAudioForScreenShare' must also "
"be enabled.";
const char kMacImeLiveConversionFixName[] = "Mac IME Live Conversion";
const char kMacImeLiveConversionFixDescription[] =
"A fix for the Live Conversion feature of Japanese IME.";
const char kMacLoopbackAudioForScreenShareName[] =
"Mac System Audio Loopback for Screen Sharing";
const char kMacLoopbackAudioForScreenShareDescription[] =
"Enables system audio sharing when using getDisplayMedia() for screen "
"sharing. This requires loopback audio capture to be enabled. On macOS "
"13-14, ScreenCaptureKit loopback capture is enabled by default. If "
"'MacSckSystemAudioLoopbackOverride' is enabled, ScreenCaptureKit "
"loopback capture can be used on all macOS versions that support it. "
"On macOS 14.2+, CoreAudio tap loopback capture will be used if the "
"'MacCatapSystemAudioLoopbackCapture' feature is enabled.";
const char kMacPWAsNotificationAttributionName[] =
"Mac PWA notification attribution";
const char kMacPWAsNotificationAttributionDescription[] =
"Route notifications for PWAs on Mac through the app shim, attributing "
"notifications to the correct apps.";
const char kRetryGetVideoCaptureDeviceInfosName[] =
"Retry capture device enumeration on crash";
const char kRetryGetVideoCaptureDeviceInfosDescription[] =
"Enables retries when enumerating the available video capture devices "
"after a crash. The capture service is restarted without loading external "
"DAL plugins which could have caused the crash.";
const char kSonomaAccessibilityActivationRefinementsName[] =
"Sonoma Accessibility Activation Refinements";
const char kSonomaAccessibilityActivationRefinementsDescription[] =
"Refines how Chrome responds to accessibility activation signals on macOS "
"Sonoma.";
const char kUseAngleDescriptionMac[] =
"Choose the graphics backend for ANGLE. Metal is the default on all Macs "
"which can support it. The OpenGL backend is soon to be "
"deprecated and may contain driver bugs that are not planned to be fixed.";
const char kUseAngleMetal[] = "Metal";
const char kUseAdHocSigningForWebAppShimsName[] =
"Use Ad-hoc Signing for Web App Shims";
const char kUseAdHocSigningForWebAppShimsDescription[] =
"Ad-hoc code signing ensures that each PWA app shim has a unique identity. "
"This allows macOS subsystems to correctly distinguish between multiple "
"PWAs. Only enabled on macOS 11.7 and later.";
const char kUseSCContentSharingPickerName[] =
"Use ScreenCaptureKit picker for stream selection";
const char kUseSCContentSharingPickerDescription[] =
"This feature opens a native picker in macOS 15+ to allow the selection "
"of a window or screen that will be captured.";
const char kBlockRootWindowAccessibleNameChangeEventName[] =
"Block Root Window Accessible Name Change Event";
const char kBlockRootWindowAccessibleNameChangeEventDescription[] =
"This feature prevents the firing of accessible name change events on the "
"Root Window of MacOS applications. By blocking these events, it ensures "
"that changes to the accessible name of Root Window do not trigger "
"notifications to assistive technologies. This can be useful in scenarios "
"where frequent or unnecessary name change events could lead to "
"performance issues or unwanted behavior in assistive applications.";
#endif
// Windows and Mac -------------------------------------------------------------
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC)
const char kEnforceSystemEchoCancellationName[] =
"Enable System Audio Echo Cancellation (AEC)";
const char kEnforceSystemEchoCancellationDescription[] =
"Enables usage of system AEC on Windows and Mac. The goal is to ensure "
"that audio which is played out from from external (non-Chrome) "
"applications does not leak into microphone signals and thereby causing "
"echo. On Windows, Windows 11 24H2 (build 26100) and above is required.";
const char kLocationProviderManagerName[] =
"Enable location provider manager for Geolocation API";
const char kLocationProviderManagerDescription[] =
"Enables usage of the location provider manager to select between "
"the operating system's location API or the network-based provider "
"as the data source for Geolocation API.";
const char kUseAngleGL[] = "OpenGL";
#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC)
// Android --------------------------------------------------
#if BUILDFLAG(IS_ANDROID)
const char kAndroidMinimalUiLargeScreenName[] =
"Enable new minimal ui in desktop windowing";
const char kAndroidMinimalUiLargeScreenDescription[] =
"Display new minimal ui for PWAs on devices that support "
"desktop windowing.";
const char kAndroidUseCorrectDisplayWorkAreaName[] =
"Enable accounting system UI for computing the display work area";
const char kAndroidUseCorrectDisplayWorkAreaDescription[] =
"Enable accounting system's bars and display cutouts for the correct "
"computation of the display work area. The Web API Screen properties "
"availLeft / availTop / availHeight / availWidth accurately reflect the "
"accessible content display area.";
const char kAndroidWindowManagementWebApiName[] = "Window Management Web API";
const char kAndroidWindowManagementWebApiDescription[] =
"Enable Window Management Web API. Websites can obtain information about "
"displays and display topology.";
const char kAndroidWindowOcclusionName[] =
"Enable occlusion tracking on Android.";
const char kAndroidWindowOcclusionDescription[] =
"Enables occlusion tracking on Android, which can save CPU and memory in "
"multi-window environments.";
const char kAndroidWindowPopupLargeScreenName[] =
"Enable desktop-like behavior of window popup web API in desktop windowing "
"on Android.";
const char kAndroidWindowPopupLargeScreenDescription[] =
"Open an actual new window instead of new tab on window.open() Javascript "
"call and make moving windows with window.{move|resize}{By|To}() "
"possible.";
const char kUseAngleDescriptionAndroid[] =
"Choose the graphics backend for ANGLE. The Vulkan backend is still "
"experimental, and may contain bugs that "
"are still being worked on.";
const char kUseAngleGLES[] = "OpenGL ES";
const char kUseAngleVulkan[] = "Vulkan";
#endif // BUILDFLAG(IS_ANDROID)
// Windows, Mac and Android --------------------------------------------------
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_ANDROID)
const char kUseAngleName[] = "Choose ANGLE graphics backend";
const char kUseAngleDefault[] = "Default";
#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_ANDROID)
// ChromeOS -------------------------------------------------------------------
#if BUILDFLAG(IS_CHROMEOS)
const char kAcceleratedMjpegDecodeName[] =
"Hardware-accelerated mjpeg decode for captured frame";
const char kAcceleratedMjpegDecodeDescription[] =
"Enable hardware-accelerated MJPEG decode for captured frame where "
"available.";
const char kAccessibilityBounceKeysName[] = "Bounce keys";
const char kAccessibilityBounceKeysDescription[] =
"Enables accessibility settings for bounce keys, which ignores quickly "
"repeated presses of the same keyboard key.";
const char kAccessibilitySlowKeysName[] = "Slow keys";
const char kAccessibilitySlowKeysDescription[] =
"Enables accessibility settings for slow key, which adds a delay between "
"when you press a key and when it activates.";
const char kAllowApnModificationPolicyName[] =
"Allow APN Modification by Policy";
const char kAllowApnModificationPolicyDescription[] =
"Enables the ChromeOS APN Allow APN Modification policy, which gives "
"admins the ability to allow or prohibit managed users from modifying "
"APNs.";
const char kAllowCrossDeviceFeatureSuiteName[] =
"Allow the use of Cross-Device features";
const char kAllowCrossDeviceFeatureSuiteDescription[] =
"Allow features such as Nearby Share, PhoneHub, Fast Pair, and Smart Lock, "
"that require communication with a nearby device. This should be enabled "
"by default on most platforms, and only disabled in cases where we cannot "
"guarantee a good experience with the stock Bluetooth hardware (e.g. "
"ChromeOS Flex). If disabled, this removes all Cross-Device features and "
"their entries in the Settings app.";
const char kLinkCrossDeviceInternalsName[] =
"Link Cross-Device internals logging to Feedback reports.";
const char kLinkCrossDeviceInternalsDescription[] =
"Improves debugging of Cross-Device features by recording more verbose "
"logs and attaching these logs to filed Feedback reports.";
const char kAltClickAndSixPackCustomizationName[] =
"Allow users to customize Alt-Click and 6-pack key remapping.";
const char kAltClickAndSixPackCustomizationDescription[] =
"Shows settings to customize Alt-Click and 6-pack key remapping in the "
"keyboard settings page.";
const char kAlwaysEnableHdcpName[] = "Always enable HDCP for external displays";
const char kAlwaysEnableHdcpDescription[] =
"Enables the specified type for HDCP whenever an external display is "
"connected. By default, HDCP is only enabled when required.";
const char kAlwaysEnableHdcpDefault[] = "Default";
const char kAlwaysEnableHdcpType0[] = "Type 0";
const char kAlwaysEnableHdcpType1[] = "Type 1";
const char kApnPoliciesName[] = "APN Policies";
const char kApnPoliciesDescription[] =
"Enables the ChromeOS APN Policies, which gives admins the ability to set "
"APN policies for managed eSIM networks and pSIMs. Note that the 'APN "
"Revamp' flag should be enabled as well for this feature to work as "
"expected.";
const char kApnRevampName[] = "APN Revamp";
const char kApnRevampDescription[] =
"Enables the ChromeOS APN Revamp, which updates cellular network APN "
"system UI and related infrastructure.";
const char kAppLaunchAutomationName[] = "Enable app launch automation";
const char kAppLaunchAutomationDescription[] =
"Allows groups of apps to be launched.";
const char kArcArcOnDemandExperimentName[] = "Enable ARC on Demand";
const char kArcArcOnDemandExperimentDescription[] =
"Delay ARC activation if no apps is installed.";
const char kArcCustomTabsExperimentName[] =
"Enable Custom Tabs experiment for ARC";
const char kArcCustomTabsExperimentDescription[] =
"Allow Android apps to use Custom Tabs."
"This feature only works on the Canary and Dev channels.";
const char kArcEnableAttestationName[] = "Enable ARC attestation";
const char kArcEnableAttestationDescription[] =
"Allow key and ID attestation to run for keymint";
const char kArcExtendInputAnrTimeoutName[] =
"Extend input event ANR timeout time";
const char kArcExtendInputAnrTimeoutDescription[] =
"When enabled, the default input event ANR timeout time will be extended"
" from 5 seconds to 8 seconds.";
const char kArcExtendIntentAnrTimeoutName[] =
"Extend broadcast of intent ANR timeout time";
const char kArcExtendIntentAnrTimeoutDescription[] =
"When enabled, the default broadcast of intent ANR timeout time will be"
" extended from 10 seconds to 15 seconds for foreground broadcasts, 60"
" seconds to 90 seconds for background broadcasts.";
const char kArcExtendServiceAnrTimeoutName[] =
"Extend executing service ANR timeout time";
const char kArcExtendServiceAnrTimeoutDescription[] =
"When enabled, the default executing service ANR timeout time will be"
" extended from 20 seconds to 30 seconds for foreground services, 200"
" seconds to 300 seconds for background services.";
const char kArcFriendlierErrorDialogName[] =
"Enable friendlier error dialog for ARC";
const char kArcFriendlierErrorDialogDescription[] =
"Replaces disruptive error dialogs with Chrome notifications for some ANR "
"and crash events.";
const char kArcIdleManagerName[] = "Enable ARC Idle Manager";
const char kArcIdleManagerDescription[] =
"ARC will turn on Android's doze mode when idle.";
const char kArcInstantResponseWindowOpenName[] =
"Enable Instance Response for ARC app window open";
const char kArcInstantResponseWindowOpenDescription[] =
"In some devices the placeholder window will popup immediately after the "
"user attempts to launch apps.";
const char kArcNativeBridgeToggleName[] =
"Toggle between native bridge implementations for ARC";
const char kArcNativeBridgeToggleDescription[] =
"Toggle between native bridge implementations for ARC.";
const char kArcPerAppLanguageName[] =
"Enable ARC Per-App Language setting integration";
const char kArcPerAppLanguageDescription[] =
"When enabled, ARC Per-App Language settings will be surfaced in ChromeOS "
"settings.";
const char kArcResizeCompatName[] = "Enable ARC Resize Compatibility features";
const char kArcResizeCompatDescription[] =
"Enable resize compatibility features for ARC++ apps";
const char kArcRoundedWindowCompatName[] = "ARC Rounded Window Compatibility";
const char kArcRoundedWindowCompatDescription[] =
"Enable rounded window compatibility feature for ARC++ apps";
const char kArcRtVcpuDualCoreName[] =
"Enable ARC real time vCPU on a device with 2 logical cores online.";
const char kArcRtVcpuDualCoreDesc[] =
"Enable ARC real time vCPU on a device with 2 logical cores online to "
"reduce media playback glitch.";
const char kArcRtVcpuQuadCoreName[] =
"Enable ARC real time vCPU on a device with 3+ logical cores online.";
const char kArcRtVcpuQuadCoreDesc[] =
"Enable ARC real time vCPU on a device with 3+ logical cores online to "
"reduce media playback glitch.";
const char kArcSwitchToKeyMintDaemonName[] = "Switch to KeyMint Daemon.";
const char kArcSwitchToKeyMintDaemonDesc[] =
"Switch from Keymaster Daemon to KeyMint Daemon. Must be switched on/off "
"at the same time with \"Switch To KeyMint on ARC-T\"";
const char kArcSwitchToKeyMintOnTName[] = "Switch to KeyMint on ARC-T.";
const char kArcSwitchToKeyMintOnTDesc[] =
"Switch from Keymaster to KeyMint on ARC-T. Must be switched on/off at the "
"same time with \"Switch to KeyMint Daemon\"";
const char kArcSwitchToKeyMintOnTOverrideName[] =
"Override switch to KeyMint on ARC-T.";
const char kArcSwitchToKeyMintOnTOverrideDesc[] =
"Override the block on certain boards to switch from Keymaster to KeyMint";
const char kArcSyncInstallPriorityName[] =
"Enable supporting install priority for synced ARC apps.";
const char kArcSyncInstallPriorityDescription[] =
"Enable supporting install priority for synced ARC apps. Pass install "
"priority to Play instead of using default install priority specified "
"in Play";
const char kArcTouchscreenEmulationName[] =
"Enable touchscreen emulation for compatibility on specific ARC apps.";
const char kArcTouchscreenEmulationDesc[] =
"Enable touchscreen emulation for compatibility on specific ARC apps.";
const char kArcVmMemorySizeName[] = "Enable custom ARCVM memory size";
const char kArcVmMemorySizeDesc[] =
"Enable custom ARCVM memory size, "
"\"shift\" controls the amount to shift system RAM when sizing ARCVM.";
const char kArcVmmSwapKBShortcutName[] =
"Keyboard shortcut trigger for ARCVM"
" vmm swap feature";
const char kArcVmmSwapKBShortcutDesc[] =
"Alt + Ctrl + Shift + O/P to enable / disable ARCVM vmm swap. Only for "
"experimental usage.";
const char kArcAAudioMMAPLowLatencyName[] =
"Enable ARCVM AAudio MMAP low latency";
const char kArcAAudioMMAPLowLatencyDescription[] =
"When enabled, ARCVM AAudio MMAP will use low latency setting.";
const char kArcEnableVirtioBlkForDataName[] =
"Enable virtio-blk for ARCVM /data";
const char kArcEnableVirtioBlkForDataDesc[] =
"If enabled, ARCVM uses virtio-blk for /data in Android storage.";
const char kArcExternalStorageAccessName[] = "External storage access by ARC";
const char kArcExternalStorageAccessDescription[] =
"Allow Android apps to access external storage devices like USB flash "
"drives and SD cards";
const char kArcUnthrottleOnActiveAudioV2Name[] =
"Unthrottle ARC on active audio";
const char kArcUnthrottleOnActiveAudioV2Description[] =
"Do not throttle ARC when there is an active audio stream running.";
const char kAshEnableUnifiedDesktopName[] = "Unified desktop mode";
const char kAshEnableUnifiedDesktopDescription[] =
"Enable unified desktop mode which allows a window to span multiple "
"displays.";
const char kAshModifierSplitName[] = "Modifier split feature";
const char kAshModifierSplitDescription[] =
"Enable new modifier split feature on ChromeOS.";
const char kAshPickerGifsName[] = "Picker GIFs search";
const char kAshPickerGifsDescription[] = "Enable GIf search for Picker.";
const char kAshSplitKeyboardRefactorName[] = "Split keyboard refactor";
const char kAshSplitKeyboardRefactorDescription[] =
"Enable split keyboard refactor on ChromeOS.";
const char kAshNullTopRowFixName[] = "Null top row fix";
const char kAshNullTopRowFixDescription[] =
"Enable the bugfix for keyboards with a null top row descriptor.";
const char kAssistantIphName[] = "Assistant IPH";
const char kAssistantIphDescription[] =
"Enables showing Assistant IPH on ChromeOS.";
const char kAudioSelectionImprovementName[] =
"Enable audio selection improvement algorithm";
const char kAudioSelectionImprovementDescription[] =
"Enable set-based audio selection improvement algorithm.";
const char kResetAudioSelectionImprovementPrefName[] =
"Reset audio selection improvement user preference";
const char kResetAudioSelectionImprovementPrefDescription[] =
"Reset audio selection improvement user preference for testing purpose.";
const char kAutoFramingOverrideName[] = "Auto-framing control override";
const char kAutoFramingOverrideDescription[] =
"Overrides the default to forcibly enable or disable the auto-framing "
"feature";
const char kAutocorrectByDefaultName[] = "CrOS autocorrect by default";
const char kAutocorrectByDefaultDescription[] =
"Enables autocorrect by default experiment on ChromeOS";
const char kAutocorrectParamsTuningName[] = "CrOS autocorrect params tuning";
const char kAutocorrectParamsTuningDescription[] =
"Enables params tuning experiment for autocorrect on ChromeOS.";
const char kBatteryBadgeIconName[] = "Enables smaller battery badge icon";
const char kBatteryBadgeIconDescription[] =
"Enables smaller battery badge icons for increased legibility of the "
"battery percentage.";
const char kBlockTelephonyDevicePhoneMuteName[] =
"Block Telephony Device Phone Mute";
const char kBlockTelephonyDevicePhoneMuteDescription[] =
"Block telephony device phone mute HID code so it does not toggle ChromeOS "
"system microphone mute.";
const char kBluetoothAudioLEAudioOnlyName[] = "Bluetooth Audio LE Audio Only";
const char kBluetoothAudioLEAudioOnlyDescription[] =
"Enable Bluetooth LE audio and disable classic profiles "
"(A2DP, HFP, AVRCP). This is used for prototyping and demonstration "
"purposes.";
const char kBluetoothBtsnoopInternalsName[] =
"Enables btsnoop collection in chrome://bluetooth-internals";
const char kBluetoothBtsnoopInternalsDescription[] =
"Enables bluetooth traffic (btsnoop) collection via the page "
"chrome://bluetooth-internals. Btsnoop logs are essential for debugging "
"bluetooth issues.";
const char kBluetoothFlossTelephonyName[] = "Bluetooth Floss Telephony";
const char kBluetoothFlossTelephonyDescription[] =
"Enable Floss to create a Bluetooth HID device that allows applications to "
"access Bluetooth telephony functions through WebHID.";
const char kBluetoothUseFlossName[] = "Use Floss instead of BlueZ";
const char kBluetoothUseFlossDescription[] =
"Enables using Floss (also known as Fluoride, Android's Bluetooth stack) "
"instead of BlueZ. This is meant to be used by developers and is not "
"guaranteed to be stable";
const char kBluetoothWifiQSPodRefreshName[] =
"Enable better bluetooth and wifi UI";
const char kBluetoothWifiQSPodRefreshDescription[] =
"Enables better quick settings UI for bluetooth and wifi error states";
const char kBluetoothUseLLPrivacyName[] = "Enable LL Privacy in Floss";
const char kBluetoothUseLLPrivacyDescription[] =
"Enable address resolution offloading to Bluetooth Controller if "
"supported. Modifying this flag will cause Bluetooth Controller to reset.";
const char kCampbellGlyphName[] = "Enable glyph for Campbell";
const char kCampbellGlyphDescription[] = "Enables a Campbell glyph.";
const char kCampbellKeyName[] = "Key to enable glyph for Campbell";
const char kCampbellKeyDescription[] =
"Secret key to enable glyph for Campbell";
const char kCaptureModeEducationName[] = "Enable Capture Mode Education";
const char kCaptureModeEducationDescription[] =
"Enables the Capture Mode Education nudges and tutorials that inform users "
"of the screenshot keyboard shortcut and the screen capture tool in the "
"quick settings menu.";
const char kCaptureModeEducationBypassLimitsName[] =
"Enable Capture Mode Education bypass limits";
const char kCaptureModeEducationBypassLimitsDescription[] =
"Enables bypassing the 3 times / 24 hours show limit for Capture Mode "
"Education nudges and tutorials, so they can be viewed repeatedly for "
"testing purposes.";
const char kCrosContentAdjustedRefreshRateName[] =
"Content Adjusted Refresh Rate";
const char kCrosContentAdjustedRefreshRateDescription[] =
"Allows the display to adjust the refresh rate in order to match content.";
const char kCrosSoulName[] = "CrOS SOUL";
const char kCrosSoulDescription[] = "Enable the CrOS SOUL feature.";
const char kCrosSoulGravediggerName[] = "CrOS SOUL Gravedigger";
const char kCrosSoulGravediggerDescription[] = "Use Gravedigger.";
const char kDesksTemplatesName[] = "Desk Templates";
const char kDesksTemplatesDescription[] =
"Streamline workflows by saving a group of applications and windows as a "
"launchable template in a new desk";
const char kForceControlFaceAeName[] = "Force control face AE";
const char kForceControlFaceAeDescription[] =
"Control this flag to force enable or disable face AE for camera";
const char kCellularBypassESimInstallationConnectivityCheckName[] =
"Bypass eSIM installation connectivity check";
const char kCellularBypassESimInstallationConnectivityCheckDescription[] =
"Bypass the non-cellular internet connectivity check during eSIM "
"installation.";
const char kCellularUseSecondEuiccName[] = "Use second Euicc";
const char kCellularUseSecondEuiccDescription[] =
"When enabled Cellular Setup and Settings UI will use the second available "
"eUICC that's exposed by Hermes.";
const char kClipboardHistoryLongpressName[] =
"Hold Ctrl+V to paste an item from clipboard history";
const char kClipboardHistoryLongpressDescription[] =
"Enables an experimental behavior change where long-pressing Ctrl+V shows "
"the clipboard history menu. If an item is selected to paste, it replaces "
"the content initially pasted by Ctrl+V.";
const char kClipboardHistoryUrlTitlesName[] =
"Show page titles for copied URLs in the clipboard history menu";
const char kClipboardHistoryUrlTitlesDescription[] =
"When clipboard-history-refresh is also enabled, this flag enables an "
"annotation for copied URLs in the clipboard history menu: If the URL has "
"been visited, its page title will appear as part of the URL's menu item.";
const char kCloudGamingDeviceName[] = "Enable cloud game search";
const char kCloudGamingDeviceDescription[] =
"Enables cloud game search results in the launcher.";
#if BUILDFLAG(IS_CHROMEOS)
const char kCampaignsComponentUpdaterTestTagName[] = "Campaigns test tag";
const char kCampaignsComponentUpdaterTestTagDescription[] =
"Tags used for component updater to select Omaha cohort for Growth "
"Campaigns.";
const char kCampaignsOverrideName[] = "Campaigns override";
const char kCampaignsOverrideDescription[] =
"Base64 encoded Growth campaigns used for testing.";
#endif // BUILDFLAG(IS_CHROMEOS)
const char kComponentUpdaterTestRequestName[] =
"Enable the component updater check 'test-request' parameter";
const char kComponentUpdaterTestRequestDescription[] =
"Enables the 'test-request' parameter for component updater check requests."
" Overrides any other component updater check request parameters that may "
"have been specified.";
const char kEnableServiceWorkersForChromeUntrustedName[] =
"Enable chrome-untrusted:// Service Workers";
const char kEnableServiceWorkersForChromeUntrustedDescription[] =
"When enabled, allows chrome-untrusted:// WebUIs to use service workers.";
const char kEnterpriseReportingUIName[] =
"Enable chrome://enterprise-reporting";
const char kEnterpriseReportingUIDescription[] =
"When enabled, allows for chrome://enterprise-reporting to be visited";
const char kESimEmptyActivationCodeSupportedName[] =
"Enable support for empty activation codes in eSIM activation dialog";
const char kESimEmptyActivationCodeSupportedDescription[] =
"When enabled, allows users to enter and submit empty activation codes in "
"the eSIM dialog";
const char kPermissiveUsbPassthroughName[] =
"Enable more permissive passthrough for USB Devices";
const char kPermissiveUsbPassthroughDescription[] =
"When enabled, applies more permissive rules passthrough of USB devices.";
const char kCameraAngleBackendName[] = "Camera service ANGLE backend";
const char kCameraAngleBackendDescription[] =
"When enabled, uses ANGLE as the GL driver in the camera service.";
const char kChromeboxUsbPassthroughRestrictionsName[] =
"Limit primary mice/keyboards from USB passthrough on chromeboxes";
const char kChromeboxUsbPassthroughRestrictionsDescription[] =
"When enabled, attempts to prevent primary mice/keyboard from being passed "
"through to guest environments on chromebox-style devices. If you have "
"issues with passing through a USB peripheral on a chromebox, you can "
"try disabling this feature.";
const char kDisableBruschettaInstallChecksName[] =
"Disable Bruschetta Installer Checks";
const char kDisableBruschettaInstallChecksDescription[] =
"Disables the built-in checks the Bruschetta installer performs before "
"running the install process.";
const char kCrostiniContainerInstallName[] =
"Debian version for new Crostini containers";
const char kCrostiniContainerInstallDescription[] =
"New Crostini containers will use this Debian version";
const char kCrostiniGpuSupportName[] = "Crostini GPU Support";
const char kCrostiniGpuSupportDescription[] = "Enable Crostini GPU support.";
const char kCrostiniResetLxdDbName[] = "Crostini Reset LXD DB on launch";
const char kCrostiniResetLxdDbDescription[] =
"Recreates the LXD database every time we launch it";
const char kCrostiniContainerlessName[] = "Crostini without LXD containers";
const char kCrostiniContainerlessDescription[] =
"Experimental support for Crostini without LXD containers (aka Baguette)";
const char kCrostiniMultiContainerName[] = "Allow multiple Crostini containers";
const char kCrostiniMultiContainerDescription[] =
"Experimental UI for creating and managing multiple Crostini containers";
const char kCrostiniQtImeSupportName[] =
"Crostini IME support for Qt applications";
const char kCrostiniQtImeSupportDescription[] =
"Experimental support for IMEs (excluding VK) in Crostini for applications "
"built with Qt.";
const char kCrostiniVirtualKeyboardSupportName[] =
"Crostini Virtual Keyboard Support";
const char kCrostiniVirtualKeyboardSupportDescription[] =
"Experimental support for the Virtual Keyboard on Crostini.";
const char kConchName[] = "Conch feature";
const char kConchDescription[] = "Enable Conch on ChromeOS.";
const char kConchSystemAudioFromMicName[] = "System audio capture for Conch";
const char kConchSystemAudioFromMicDescription[] =
"Capture system audio from microphone for Conch on ChromeOS.";
#if BUILDFLAG(IS_CHROMEOS)
const char kDemoModeComponentUpdaterTestTagName[] = "Demo Mode test tag";
const char kDemoModeComponentUpdaterTestTagDescription[] =
"Tags used for component updater to select Omaha cohort for Demo Mode.";
#endif // BUILDFLAG(IS_CHROMEOS)
const char kDisableCancelAllTouchesName[] = "Disable CancelAllTouches()";
const char kDisableCancelAllTouchesDescription[] =
"If enabled, a canceled touch will not force all other touches to be "
"canceled.";
const char kDisableExplicitDmaFencesName[] = "Disable explicit dma-fences";
const char kDisableExplicitDmaFencesDescription[] =
"Always rely on implicit synchronization between GPU and display "
"controller instead of using dma-fences explicitly when available.";
const char kDisplayAlignmentAssistanceName[] =
"Enable Display Alignment Assistance";
const char kDisplayAlignmentAssistanceDescription[] =
"Show indicators on shared edges of the displays when user is "
"attempting to move their mouse over to another display. Show preview "
"indicators when the user is moving a display in display layouts.";
const char kEnableLibinputToHandleTouchpadName[] =
"Enable libinput to handle touchpad.";
const char kEnableLibinputToHandleTouchpadDescription[] =
"Use libinput instead of the gestures library to handle touchpad."
"Libgesures works very well on modern devices but fails on legacy"
"devices. Use libinput if an input device doesn't work or is not working"
"well.";
const char kEnableFakeKeyboardHeuristicName[] =
"Enable Fake Keyboard Heuristic";
const char kEnableFakeKeyboardHeuristicDescription[] =
"Enable heuristic to prevent non-keyboard devices from pretending "
"to be keyboards. Primarily assists in preventing the virtual keyboard "
"from being disabled unintentionally.";
const char kEnableFakeMouseHeuristicName[] = "Enable Fake Mouse Heuristic";
const char kEnableFakeMouseHeuristicDescription[] =
"Enable heuristic to prevent non-mouse devices from pretending "
"to be mice. Primarily assists in preventing fake entries "
"appearing in the input settings menu.";
const char kFastPairDebugMetadataName[] = "Enable Fast Pair Debug Metadata";
const char kFastPairDebugMetadataDescription[] =
"Enables Fast Pair to use Debug metadata when checking device "
"advertisements, allowing notifications to pop up for debug-mode only "
"devices.";
const char kFaceRetouchOverrideName[] =
"Enable face retouch using the relighting button in the VC panel";
const char kFaceRetouchOverrideDescription[] =
"Enables or disables the face retouch feature using the relighting button "
"in the VC panel.";
const char kFastPairHandshakeLongTermRefactorName[] =
"Enable Fast Pair Handshake Long Term Refactor";
const char kFastPairHandshakeLongTermRefactorDescription[] =
"Enables long term refactored handshake logic for Google Fast Pair "
"service.";
const char kFastPairKeyboardsName[] = "Enable Fast Pair Keyboards";
const char kFastPairKeyboardsDescription[] =
"Enables prototype support for Fast Pair for keyboards.";
const char kFastPairPwaCompanionName[] = "Enable Fast Pair Web Companion";
const char kFastPairPwaCompanionDescription[] =
"Enables Fast Pair Web Companion link after device pairing.";
const char kFrameSinkDesktopCapturerInCrdName[] =
"Enable FrameSinkDesktopCapturer in CRD";
const char kFrameSinkDesktopCapturerInCrdDescription[] =
"Enables the use of FrameSinkDesktopCapturer in the video streaming for "
"CRD, "
"replacing the use of AuraDesktopCapturer";
const char kUseHDRTransferFunctionName[] =
"Monitor/Display HDR transfer function";
const char kUseHDRTransferFunctionDescription[] =
"Allows using the HDR transfer functions of any connected monitor that "
"supports it";
const char kEnableExternalDisplayHdr10Name[] =
"Enable HDR10 support on external monitors";
const char kEnableExternalDisplayHdr10Description[] =
"Allows using HDR10 mode on any external monitor that supports it";
const char kDoubleTapToZoomInTabletModeName[] =
"Double-tap to zoom in tablet mode";
const char kDoubleTapToZoomInTabletModeDescription[] =
"If Enabled, double tapping in webpages while in tablet mode will zoom the "
"page.";
const char kDriveFsMirroringName[] = "Enable local to Drive mirror sync";
const char kDriveFsMirroringDescription[] =
"Enable mirror sync between local files and Google Drive";
const char kDriveFsShowCSEFilesName[] = "Enable listing of CSE files";
const char kDriveFsShowCSEFilesDescription[] =
"Enable listing of CSE files in DriveFS, which will result in these files "
"being visible in the Files App's Google Drive item.";
const char kEnableBackgroundBlurName[] = "Enable background blur.";
const char kEnableBackgroundBlurDescription[] =
"Enables background blur for the Launcher, Shelf, Unified System Tray etc.";
const char kEnableBrightnessControlInSettingsName[] =
"Enable brightness controls in Settings";
const char kEnableBrightnessControlInSettingsDescription[] =
"Enables brightness slider and auto-brightness toggle for internal display "
"in Settings";
const char kEnableDisplayPerformanceModeName[] =
"Enable Display Performance Mode";
const char kEnableDisplayPerformanceModeDescription[] =
"This option enables toggling different display features based on user "
"setting and power state";
const char kDisableDnsProxyName[] = "Disable DNS proxy service for ChromeOS";
const char kDisableDnsProxyDescription[] =
"Turns off DNS proxying and SecureDNS for ChromeOS (only). Does not impact "
"Chrome browser.";
const char kDisconnectWiFiOnEthernetConnectedName[] =
"Disconnect WiFi on Ethernet";
const char kDisconnectWiFiOnEthernetConnectedDescription[] =
"Automatically disconnect WiFi and prevent it from auto connecting when "
"the device gets an Ethernet connection. User are still allowed to connect "
"to WiFi manually.";
const char kEnableRFC8925Name[] =
"Enable RFC8925 (prefer IPv6-only on IPv6-only-capable network)";
const char kEnableRFC8925Description[] =
"Let ChromeOS DHCPv4 client voluntarily drop DHCPv4 lease and prefer to"
"operate IPv6-only, if the network is also IPv6-only capable.";
const char kEnableRootNsDnsProxyName[] =
"Enable DNS proxy service running on the root network namespace for "
"ChromeOS";
const char kEnableRootNsDnsProxyDescription[] =
"When enabled, DNS proxy service runs on the root network namespace "
"instead of inside a specified network namespace";
const char kEnableEdidBasedDisplayIdsName[] = "Enable EDID-based display IDs";
const char kEnableEdidBasedDisplayIdsDescription[] =
"When enabled, a display's ID will be produced by hashing certain values "
"in the display's EDID blob. EDID-based display IDs allow ChromeOS to "
"consistently identify previously connected displays, regardless of the "
"physical port they were connected to, and load user display layouts more "
"accurately.";
const char kTiledDisplaySupportName[] = "Enable tile display support";
const char kTiledDisplaySupportDescription[] =
"When enabled, tiled displays will be represented by a single display in "
"ChromeOS, rather than each tile being a separate display.";
const char kEnableDozeModePowerSchedulerName[] =
"Enable doze mode power scheduler";
const char kEnableDozeModePowerSchedulerDescription[] =
"Enable doze mode power scheduler.";
const char kEnableExternalKeyboardsInDiagnosticsAppName[] =
"Enable external keyboards in the Diagnostics App";
const char kEnableExternalKeyboardsInDiagnosticsAppDescription[] =
"Shows external keyboards in the Diagnostics App's input section. Requires "
"#enable-input-in-diagnostics-app to be enabled.";
const char kEnableFastInkForSoftwareCursorName[] =
"Enable fast ink for software cursor";
const char kEnableFastInkForSoftwareCursorDescription[] =
"When enabled, software cursor will use fast ink to display cursor with "
"minimal latency. "
"However, it might also cause tearing artifacts.";
const char kEnableHostnameSettingName[] = "Enable setting the device hostname";
const char kEnableHostnameSettingDescription[] =
"Enables the ability to set the ChromeOS hostname, the name of the device "
"that is exposed to the local network";
const char kEnableGesturePropertiesDBusServiceName[] =
"Enable gesture properties D-Bus service";
const char kEnableGesturePropertiesDBusServiceDescription[] =
"Enable a D-Bus service for accessing gesture properties, which are used "
"to configure input devices.";
const char kEnableGoogleAssistantDspName[] =
"Enable Google Assistant with hardware-based hotword";
const char kEnableGoogleAssistantDspDescription[] =
"Enable an experimental feature that uses hardware-based hotword detection "
"for Assistant. Only a limited number of devices have this type of "
"hardware support.";
const char kEnableGoogleAssistantStereoInputName[] =
"Enable Google Assistant with stereo audio input";
const char kEnableGoogleAssistantStereoInputDescription[] =
"Enable an experimental feature that uses stereo audio input for hotword "
"and voice to text detection in Google Assistant.";
const char kEnableGoogleAssistantAecName[] = "Enable Google Assistant AEC";
const char kEnableGoogleAssistantAecDescription[] =
"Enable an experimental feature that removes local feedback from audio "
"input to help hotword and ASR when background audio is playing.";
const char kEnableInputEventLoggingName[] = "Enable input event logging";
const char kEnableInputEventLoggingDescription[] =
"Enable detailed logging of input events from touchscreens, touchpads, and "
"mice. These events include the locations of all touches as well as "
"relative pointer movements, and so may disclose sensitive data. They "
"will be included in feedback reports and system logs, so DO NOT ENTER "
"SENSITIVE INFORMATION with this flag enabled.";
const char kEnableKeyboardBacklightControlInSettingsName[] =
"Enable Keyboard Backlight Control In Settings.";
const char kEnableKeyboardBacklightControlInSettingsDescription[] =
"Enable control of keyboard backlight directly from ChromeOS Settings";
const char kEnableKeyboardRewriterFixName[] = "Use new Keyboard Rewriter.";
const char kEnableKeyboardRewriterFixDescription[] =
"Enable new Keyboard Rewriter.";
const char kEnableKeyboardUsedPalmSuppressionName[] =
"Use keyboard based palm suppression.";
const char kEnableKeyboardUsedPalmSuppressionDescription[] =
"Enable keyboard usage based palm suppression.";
const char kEnableHeatmapPalmDetectionName[] = "Enable Heatmap Palm Detection";
const char kEnableHeatmapPalmDetectionDescription[] =
"Experimental: Enable Heatmap Palm detection. Not compatible with all "
"devices.";
const char kEnableNeuralStylusPalmRejectionName[] =
"Enable Neural Palm Detection";
const char kEnableNeuralStylusPalmRejectionDescription[] =
"Experimental: Enable Neural Palm detection. Not compatible with all "
"devices.";
const char kEnablePalmSuppressionName[] =
"Enable Palm Suppression with Stylus.";
const char kEnablePalmSuppressionDescription[] =
"If enabled, suppresses touch when a stylus is on a touchscreen.";
const char kEnableEdgeDetectionName[] = "Enable Edge Detection.";
const char kEnableEdgeDetectionDescription[] =
"If enabled, suppresses edge touch based on sensors' info.";
const char kEnableFastTouchpadClickName[] = "Enable Fast Touchpad Click";
const char kEnableFastTouchpadClickDescription[] =
"If enabled, reduce the time after touchpad click before cursor can move.";
const char kEnableSeamlessRefreshRateSwitchingName[] =
"Seamless Refresh Rate Switching";
const char kEnableSeamlessRefreshRateSwitchingDescription[] =
"This option enables seamlessly changing the refresh rate based on power "
"state on devices with supported hardware and drivers.";
const char kEnableToggleCameraShortcutName[] =
"Enable shortcut to toggle camera access";
const char kEnableToggleCameraShortcutDescription[] =
"Adds a shortcut to toggle the value of the top level 'Camera access' "
"setting in the privacy controls section of the Settings app.";
const char kEnableTouchpadsInDiagnosticsAppName[] =
"Enable touchpad cards in the Diagnostics App";
const char kEnableTouchpadsInDiagnosticsAppDescription[] =
"Shows touchpad cards in the Diagnostics App's input section. Requires "
"#enable-input-in-diagnostics-app to be enabled.";
const char kEnableTouchscreensInDiagnosticsAppName[] =
"Enable touchscreen cards in the Diagnostics App";
const char kEnableTouchscreensInDiagnosticsAppDescription[] =
"Shows touchscreen cards in the Diagnostics App's input section. Requires "
"#enable-input-in-diagnostics-app to be enabled.";
const char kEnableWifiQosName[] = "Enable WiFi QoS";
const char kEnableWifiQosDescription[] =
"If enabled the system will start automatic prioritization of egress "
"traffic with WiFi QoS/WMM.";
const char kEnableWifiQosEnterpriseName[] = "Enable WiFi QoS enterprise";
const char kEnableWifiQosEnterpriseDescription[] =
"If enabled the system will start automatic prioritization of egress "
"traffic with WiFi QoS/WMM. This flag only affects Enterprise enrolled "
"devices. Requires #enable-wifi-qos to be enabled.";
const char kPanelSelfRefresh2Name[] = "Enable Panel Self Refresh 2";
const char kPanelSelfRefresh2Description[] =
"Enable Panel Self Refresh 2/Selective-Update where supported. "
"Allows the display driver to only update regions of the screen that have "
"damage.";
const char kEnableVariableRefreshRateName[] = "Enable Variable Refresh Rate";
const char kEnableVariableRefreshRateDescription[] =
"Enable the variable refresh rate (Adaptive Sync) setting for capable "
"displays.";
const char kEapGtcWifiAuthenticationName[] = "EAP-GTC WiFi Authentication";
const char kEapGtcWifiAuthenticationDescription[] =
"Allows configuration of WiFi networks using EAP-GTC authentication";
const char kEcheSWAName[] = "Enable Eche feature";
const char kEcheSWADescription[] = "This is the main flag for enabling Eche.";
const char kEcheLauncherName[] = "Enable the Eche launcher";
const char kEcheLauncherDescription[] =
"Enables the launcher for all apps for Eche.";
const char kEcheLauncherListViewName[] = "Enable Eche launcher list view";
const char kEcheLauncherListViewDescription[] =
"Convert Eche launcher from grid view to list view";
const char kEcheLauncherIconsInMoreAppsButtonName[] =
"Enable app icons in the Eche launcher more apps button";
const char kEcheLauncherIconsInMoreAppsButtonDescription[] =
"Show app icons in the Eche launcher more apps button";
const char kEcheSWADebugModeName[] = "Enable Eche Debug Mode";
const char kEcheSWADebugModeDescription[] =
"Save console logs of Eche in the system log";
const char kEcheSWAMeasureLatencyName[] = "Measure Eche E2E Latency";
const char kEcheSWAMeasureLatencyDescription[] =
"Measure Eche E2E Latency and print all E2E latency logs of Eche in "
"Console";
const char kEcheSWASendStartSignalingName[] =
"Enable Eche Send Start Signaling";
const char kEcheSWASendStartSignalingDescription[] =
"Allows sending start signaling action to establish Eche's WebRTC "
"connection";
const char kEcheSWADisableStunServerName[] = "Disable Eche STUN server";
const char kEcheSWADisableStunServerDescription[] =
"Allows disabling the stun servers when establishing a WebRTC connection "
"to Eche";
const char kEcheSWACheckAndroidNetworkInfoName[] = "Check Android network info";
const char kEcheSWACheckAndroidNetworkInfoDescription[] =
"Allows CrOS to analyze Android network information to provide more "
"context on connection errors";
const char kEnableOAuthIppName[] =
"Enable OAuth when printing via the IPP protocol";
const char kEnableOAuthIppDescription[] =
"Enable OAuth when printing via the IPP protocol";
const char kEnableOngoingProcessesName[] = "Enable Ongoing Processes";
const char kEnableOngoingProcessesDescription[] =
"Enables use of the new PinnedNotificationView for all ash pinned "
"notifications, which are now referred to as Ongoing Processes";
const char kEnterOverviewFromWallpaperName[] =
"Enable entering overview from wallpaper";
const char kEnterOverviewFromWallpaperDescription[] =
"Experimental feature. Enable entering overview by clicking wallpaper with "
"mouse click";
const char kEolResetDismissedPrefsName[] =
"Reset end of life notification prefs";
const char kEolResetDismissedPrefsDescription[] =
"Reset the end of life notification prefs to their default value, at the "
"start of the user session. This is meant to make manual testing easier.";
const char kEolIncentiveName[] = "Enable end of life incentives";
const char kEolIncentiveDescription[] =
"Allows end of life incentives to be shown within the system UI.";
const char kEventBasedLogUpload[] = "Enable event based log uploads";
const char kEventBasedLogUploadDescription[] =
"Uploads relevant logs to device management server when unexpected events "
"(e.g. crashes) occur on the device. The feature is guarded by "
"LogUploadEnabled policy.";
const char kExcludeDisplayInMirrorModeName[] =
"Enable feature to exclude a display in mirror mode.";
const char kExcludeDisplayInMirrorModeDescription[] =
"Show toggles in Display Settings to exclude a display in mirror mode.";
const char kExoGamepadVibrationName[] = "Gamepad Vibration for Exo Clients";
const char kExoGamepadVibrationDescription[] =
"Allow Exo clients like Android to request vibration events for gamepads "
"that support it.";
const char kExoOrdinalMotionName[] =
"Raw (unaccelerated) motion for Linux applications";
const char kExoOrdinalMotionDescription[] =
"Send unaccelerated values as raw motion events to Linux applications.";
const char kExperimentalAccessibilityDictationContextCheckingName[] =
"Experimental accessibility dictation using context checking.";
const char kExperimentalAccessibilityDictationContextCheckingDescription[] =
"Enables experimental dictation context checking.";
const char kExperimentalAccessibilityGoogleTtsHighQualityVoicesName[] =
"Experimental accessibility Google TTS High Quality Voices.";
const char kExperimentalAccessibilityGoogleTtsHighQualityVoicesDescription[] =
"Enables downloading Google TTS High Quality Voices.";
const char kExperimentalAccessibilityManifestV3Name[] =
"Changes accessibility features from extension manifest v2 to v3.";
const char kExperimentalAccessibilityManifestV3Description[] =
"Experimental migration of accessibility features from extension manifest "
"v2 to v3. Likely to break accessibility access while experimental.";
const char kAccessibilityManifestV3AccessibilityCommonName[] =
"Changes accessibility common extension manifest v2 to v3.";
const char kAccessibilityManifestV3AccessibilityCommonDescription[] =
"Experimental migration of accessibility common extension from manifest v2 "
"to v3.";
const char kAccessibilityManifestV3BrailleImeName[] =
"Changes accessibility extension Braille IME manifest v2 to v3.";
const char kAccessibilityManifestV3BrailleImeDescription[] =
"Experimental migration of Braille IME from extension manifest v2 to v3.";
const char kAccessibilityManifestV3ChromeVoxName[] =
"Changes accessibility extension ChromeVox manifest v2 to v3.";
const char kAccessibilityManifestV3ChromeVoxDescription[] =
"Experimental migration of ChromeVox from extension manifest v2 to v3.";
const char kAccessibilityManifestV3EnhancedNetworkTtsName[] =
"Changes accessibility extension Enhanced Network TTS manifest v2 to v3.";
const char kAccessibilityManifestV3EnhancedNetworkTtsDescription[] =
"Experimental migration of Enhanced Network TTS from extension manifest "
"v2 to v3.";
const char kAccessibilityManifestV3EspeakNGName[] =
"Changes accessibility extension EspeakNG TTS manifest v2 to v3.";
const char kAccessibilityManifestV3EspeakNGDescription[] =
"Experimental migration of EspeakNG TTS from extension manifest v2 to v3.";
const char kAccessibilityManifestV3SelectToSpeakName[] =
"Changes accessibility extension Select to Speak manifest v2 to v3.";
const char kAccessibilityManifestV3SelectToSpeakDescription[] =
"Experimental migration of Select to Speak from extension manifest "
"v2 to v3.";
const char kAccessibilityManifestV3SwitchAccessName[] =
"Changes accessibility extension Switch Access manifest v2 to v3.";
const char kAccessibilityManifestV3SwitchAccessDescription[] =
"Experimental migration of Switch Access from extension manifest "
"v2 to v3.";
const char kExperimentalAccessibilitySwitchAccessTextName[] =
"Enable enhanced Switch Access text input.";
const char kExperimentalAccessibilitySwitchAccessTextDescription[] =
"Enable experimental or in-progress Switch Access features for improved "
"text input";
const char kFastDrmMasterDropName[] =
"Drop DRM master tokens without disabling all the displays.";
const char kFastDrmMasterDropDescription[] =
"Drop DRM master tokens after detaching all the planes off of pipes,"
"rather than disabling all the displays. Will not work on AMD devices as "
"they are unable to accept commits without a primary plane.";
const char kFileTransferEnterpriseConnectorName[] =
"Enable Files Transfer Enterprise Connector.";
const char kFileTransferEnterpriseConnectorDescription[] =
"Enable the File Transfer Enterprise Connector.";
const char kFileTransferEnterpriseConnectorUIName[] =
"Enable UI for Files Transfer Enterprise Connector.";
const char kFileTransferEnterpriseConnectorUIDescription[] =
"Enable the UI for the File Transfer Enterprise Connector.";
const char kFilesConflictDialogName[] = "Files app conflict dialog";
const char kFilesConflictDialogDescription[] =
"When enabled, the conflict dialog will be shown during file transfers "
"if a file entry in the transfer exists at the destination.";
const char kFilesExtractArchiveName[] = "Extract archive in Files app";
const char kFilesExtractArchiveDescription[] =
"Enable the simplified archive extraction feature in Files app";
const char kFilesLocalImageSearchName[] = "Search local images by query.";
const char kFilesLocalImageSearchDescription[] =
"Enable searching local images by query.";
const char kFilesMaterializedViewsName[] = "Files app materialized views";
const char kFilesMaterializedViewsDescription[] =
"Enable materialized views in Files App.";
const char kFilesSinglePartitionFormatName[] =
"Enable Partitioning of Removable Disks.";
const char kFilesSinglePartitionFormatDescription[] =
"Enable partitioning of removable disks into single partition.";
const char kFilesTrashAutoCleanupName[] = "Trash auto cleanup";
const char kFilesTrashAutoCleanupDescription[] =
"Enable background cleanup for old files in Trash.";
const char kFilesTrashDriveName[] = "Enable Files Trash for Drive.";
const char kFilesTrashDriveDescription[] =
"Enable trash for Drive volume in Files App.";
const char kFileSystemProviderCloudFileSystemName[] =
"Enable CloudFileSystem for FileSystemProvider extensions.";
const char kFileSystemProviderCloudFileSystemDescription[] =
"Enable the ability for individual FileSystemProvider extensions to "
"be serviced by a CloudFileSystem.";
const char kFileSystemProviderContentCacheName[] =
"Enable content caching for FileSystemProvider extensions.";
const char kFileSystemProviderContentCacheDescription[] =
"Enable the ability for individual FileSystemProvider extensions being "
"serviced by CloudFileSystem to leverage a content cache.";
const char kFirmwareUpdateUIV2Name[] =
"Enables the v2 version of the Firmware Updates app";
const char kFirmwareUpdateUIV2Description[] =
"Enable the v2 version of the Firmware Updates App.";
const char kFirstPartyVietnameseInputName[] =
"First party Vietnamese Input Method";
const char kFirstPartyVietnameseInputDescription[] =
"Use first party input method for Vietnamese VNI and Telex";
const char kFocusFollowsCursorName[] = "Focus follows cursor";
const char kFocusFollowsCursorDescription[] =
"Enable window focusing by moving the cursor.";
const char kFuseBoxDebugName[] = "Debugging UI for ChromeOS FuseBox service";
const char kFuseBoxDebugDescription[] =
"Show additional debugging UI for ChromeOS FuseBox service.";
const char kGameDashboardGamepadSupport[] = "Game Dashboard gamepad support.";
const char kGameDashboardGamepadSupportDescription[] =
"Enables gamepad support in game controls.";
const char kGameDashboardGamePWAs[] = "Game Dashboard Game PWAs";
const char kGameDashboardGamePWAsDescription[] =
"Enables Game Dashboard for an additional set of game PWAs.";
const char kGameDashboardGamesInTest[] = "Game Dashboard Games In Test";
const char kGameDashboardGamesInTestDescription[] =
"Enables Game Dashboard for a set of games being further evaluated.";
const char kGameDashboardUtilities[] = "Game Dashboard Utilities";
const char kGameDashboardUtilitiesDescription[] =
"Enables utility features in the Game Dashboard.";
const char kAppLaunchShortcut[] = "App launch keyboard shortcut";
const char kAppLaunchShortcutDescription[] =
"Enables a keyboard shortcut that launches a user specified app.";
const char kGlanceablesTimeManagementClassroomStudentViewName[] =
"Glanceables > Time Management > Classroom Student";
const char kGlanceablesTimeManagementClassroomStudentViewDescription[] =
"Enables Google Classroom integration for students on the Time Management "
"Glanceables surface (via Calendar entry point).";
const char kGlanceablesTimeManagementTasksViewName[] =
"Glanceables > Time Management > Tasks";
const char kGlanceablesTimeManagementTasksViewDescription[] =
"Enables Google Tasks integration on the Time Management Glanceables "
"surface (via Calendar entry point).";
const char kHelpAppAppDetailPageName[] = "Help App app detail page";
const char kHelpAppAppDetailPageDescription[] =
"If enabled, the Help app will render the App Detail Page and entry point.";
const char kHelpAppAppsListName[] = "Help App apps list";
const char kHelpAppAppsListDescription[] =
"If enabled, the Help app will render the Apps List page and entry point.";
const char kHelpAppAutoTriggerInstallDialogName[] =
"Help App Auto Trigger Install Dialog";
const char kHelpAppAutoTriggerInstallDialogDescription[] =
"Enables the logic that auto triggers the install dialog during the web "
"app install flow initiated from the Help App.";
const char kHelpAppHomePageAppArticlesName[] =
"Help App home page app articles";
const char kHelpAppHomePageAppArticlesDescription[] =
"If enabled, the home page of the Help App will show a section containing"
"articles about apps.";
const char kHelpAppLauncherSearchName[] = "Help App launcher search";
const char kHelpAppLauncherSearchDescription[] =
"Enables showing search results from the help app in the launcher.";
const char kHelpAppOnboardingRevampName[] = "Help App onboarding revamp";
const char kHelpAppOnboardingRevampDescription[] =
"Enables a new onboarding flow in the Help App";
const char kHelpAppOpensInsteadOfReleaseNotesNotificationName[] =
"Help App opens instead of release notes notification";
const char kHelpAppOpensInsteadOfReleaseNotesNotificationDescription[] =
"Enables opening the Help App's What's New page immediately instead of "
"showing a notification to open the help app.";
const char kHoldingSpaceSuggestionsName[] = "Enable holding space suggestions";
const char kHoldingSpaceSuggestionsDescription[] =
"Enables pinned file suggestions in holding space to help the user "
"understand and discover the ability to pin.";
const char kHotspotName[] = "Hotspot";
const char kHotspotDescription[] =
"Enables the Chromebook to share its cellular internet connection to other "
"devices through WiFi. While this feature is under development, enabling "
"this flag may cause your device's non-tethering traffic to use a "
"tethering APN, which can result in carrier limits or fees.";
const char kImeAssistMultiWordName[] =
"Enable assistive multi word suggestions";
const char kImeAssistMultiWordDescription[] =
"Enable assistive multi word suggestions for native IME";
const char kImeFstDecoderParamsUpdateName[] =
"Enable FST Decoder parameters update";
const char kImeFstDecoderParamsUpdateDescription[] =
"Enable updated parameters for the FST decoder.";
const char kImeKoreanOnlyModeSwitchOnRightAltName[] =
"Only internal-mode switch on right-Alt in Korean input method";
const char kImeKoreanOnlyModeSwitchOnRightAltDescription[] =
"When enabled and in Korean input method, right-Alt key location solely "
"toggles internal Korean/English mode, without Alt modifier functionality";
const char kImeSwitchCheckConnectionStatusName[] =
"Enable IME switching using global boolean";
const char kImeSwitchCheckConnectionStatusDescription[] =
"When enabled and swapping between input methods, this prevents a race "
"condition.";
const char kIppFirstSetupForUsbPrintersName[] =
"Try to setup USB printers with IPP first";
const char kIppFirstSetupForUsbPrintersDescription[] =
"When enabled, ChromeOS attempts to setup USB printers via IPP Everywhere "
"first, then falls back to PPD-based setup.";
const char kImeManifestV3Name[] =
"Use manifest V3 for virtual keyboard extension";
const char kImeManifestV3Description[] =
"Enable manifest V3 for the built-in virtual keyboard extension.";
const char kImeSystemEmojiPickerGIFSupportName[] =
"System emoji picker gif support";
const char kImeSystemEmojiPickerGIFSupportDescription[] =
"Emoji picker gif support allows users to select gifs to input.";
const char kImeSystemEmojiPickerJellySupportName[] =
"Enable jelly colors for the System Emoji Picker";
const char kImeSystemEmojiPickerJellySupportDescription[] =
"Enable jelly colors for the System Emoji Picker.";
const char kImeSystemEmojiPickerMojoSearchName[] =
"Enable mojo search for the System Emoji Picker";
const char kImeSystemEmojiPickerMojoSearchDescription[] =
"Enable mojo search for the System Emoji Picker.";
const char kImeSystemEmojiPickerVariantGroupingName[] =
"System emoji picker global variant grouping";
const char kImeSystemEmojiPickerVariantGroupingDescription[] =
"Emoji picker global variant grouping syncs skin tone and gender "
"preferences across emojis in each group.";
const char kImeUsEnglishModelUpdateName[] =
"Enable US English IME model update";
const char kImeUsEnglishModelUpdateDescription[] =
"Enable updated US English IME language models for native IME";
const char kCrosComponentsName[] = "Cros Components";
const char kCrosComponentsDescription[] =
"Enable cros-component UI elements, replacing other elements.";
const char kLanguagePacksInSettingsName[] = "Language Packs in Settings";
const char kLanguagePacksInSettingsDescription[] =
"Enables the UI and logic to manage Language Packs in Settings. This is "
"used for languages and input methods.";
const char kUseMlServiceForNonLongformHandwritingOnAllBoardsName[] =
"Use ML Service for non-Longform handwriting on all boards";
const char kUseMlServiceForNonLongformHandwritingOnAllBoardsDescription[] =
"Use ML Service (and DLC Language Packs) for non-Longform handwriting in "
"Chrome OS 1P Virtual Keyboard on all boards. When this flag is OFF, such "
"usage exists on certain boards only.";
const char kLauncherContinueSectionWithRecentsName[] =
"Launcher continue section with recent drive files";
const char kLauncherContinueSectionWithRecentsDescription[] =
"Adds Google Drive file suggestions based on users' recent activity to "
"\"Continue where you left off\" section in Launcher.";
const char kLauncherItemSuggestName[] = "Launcher ItemSuggest";
const char kLauncherItemSuggestDescription[] =
"Allows configuration of experiment parameters for ItemSuggest in the "
"launcher.";
const char kLimitShelfItemsToActiveDeskName[] =
"Limit Shelf items to active desk";
const char kLimitShelfItemsToActiveDeskDescription[] =
"Limits items on the shelf to the ones associated with windows on the "
"active desk";
const char kListAllDisplayModesName[] = "List all display modes";
const char kListAllDisplayModesDescription[] =
"Enables listing all external displays' modes in the display settings.";
const char kHindiInscriptLayoutName[] = "Hindi Inscript Layout on CrOS";
const char kHindiInscriptLayoutDescription[] =
"Enables Hindi Inscript Layout on ChromeOS.";
const char kLockScreenNotificationName[] = "Lock screen notification";
const char kLockScreenNotificationDescription[] =
"Enable notifications on the lock screen.";
const char kMahiName[] = "Mahi feature";
const char kMahiDescription[] = "Enable Mahi feature on ChromeOS.";
const char kMahiDebuggingName[] = "Mahi Debugging";
const char kMahiDebuggingDescription[] = "Enable debugging for mahi.";
const char kMahiPanelResizableName[] = "Mahi panel resizing";
const char kMahiPanelResizableDescription[] =
"Enable Mahi panel resizing on ChromeOS.";
const char kMahiSummarizeSelectedName[] = "Mahi summarize selected text";
const char kMahiSummarizeSelectedDescription[] =
"Enable Mahi to summarize the selected text";
const char kMediaAppImageMantisReimagineName[] = "Reimagine feature of Mantis";
const char kMediaAppImageMantisReimagineDescription[] =
"Enable the Reimagine feature of Mantis";
const char kMediaAppPdfMahiName[] = "Mahi feature on Media App PDF";
const char kMediaAppPdfMahiDescription[] =
"Enable Mahi feature on PDF files in Gallery app.";
const char kMicrophoneMuteSwitchDeviceName[] = "Microphone Mute Switch Device";
const char kMicrophoneMuteSwitchDeviceDescription[] =
"Support for detecting the state of hardware microphone mute toggle. Only "
"effective on devices that have a microphone mute toggle. Enabling the "
"flag does not affect the toggle functionality, it only affects how the "
"System UI handles the mute toggle state.";
const char kMultiCalendarSupportName[] =
"Multi-Calendar Support in Quick Settings";
const char kMultiCalendarSupportDescription[] =
"Enables the Quick Settings Calendar to display Google Calendar events for "
"up to 10 of the user's calendars.";
const char kMultiZoneRgbKeyboardName[] =
"Enable multi-zone RGB keyboard customization";
const char kMultiZoneRgbKeyboardDescription[] =
"Enable multi-zone RGB keyboard customization on supported devices.";
const char kNotificationWidthIncreaseName[] =
"Notification Width Increase Feature";
const char kNotificationWidthIncreaseDescription[] =
"Enables increased notification width for pop-up notifications and "
"notifications in the message center.";
const char kEnableNearbyBleV2Name[] = "Nearby BLE v2";
const char kEnableNearbyBleV2Description[] = "Enables Nearby BLE v2.";
const char kEnableNearbyBleV2ExtendedAdvertisingName[] =
"Nearby BLE v2 Extended Advertising";
const char kEnableNearbyBleV2ExtendedAdvertisingDescription[] =
"Enables extended advertising functionality over BLE when using Nearby BLE "
"v2.";
const char kEnableNearbyBleV2GattServerName[] = "Nearby BLE v2 GATT Server";
const char kEnableNearbyBleV2GattServerDescription[] =
"Enables GATT server functionality over BLE when using Nearby BLE "
"v2.";
const char kEnableNearbyBluetoothClassicAdvertisingName[] =
"Nearby Bluetooth Classic Advertising";
const char kEnableNearbyBluetoothClassicAdvertisingDescription[] =
"Enables Nearby advertising over Bluetooth Classic.";
const char kEnableNearbyMdnsName[] = "Nearby mDNS Discovery";
const char kEnableNearbyMdnsDescription[] =
"Enables Nearby discovery over mDNS.";
const char kEnableNearbyWebRtcName[] = "Nearby WebRTC";
const char kEnableNearbyWebRtcDescription[] =
"Enables Nearby transfers over WebRTC.";
const char kEnableNearbyWifiDirectName[] = "Nearby WiFi Direct";
const char kEnableNearbyWifiDirectDescription[] =
"Enables Nearby transfers over WiFi Direct.";
const char kEnableNearbyWifiLanName[] = "Nearby WiFi LAN";
const char kEnableNearbyWifiLanDescription[] =
"Enables Nearby transfers over WiFi LAN.";
const char kNearbyPresenceName[] = "Nearby Presence";
const char kNearbyPresenceDescription[] =
"Enables Nearby Presence for scanning and discovery of nearby devices.";
const char kNotificationsIgnoreRequireInteractionName[] =
"Notifications always timeout";
const char kNotificationsIgnoreRequireInteractionDescription[] =
"Always timeout notifications, even if they are set with "
"requireInteraction.";
const char kOfflineItemsInNotificationsName[] =
"Background fetched items in Notifications";
const char kOfflineItemsInNotificationsDescription[] =
"Show background fetched items in notifications instead of the download "
"shelf.";
const char kOnDeviceAppControlsName[] = "On-device controls for apps";
const char kOnDeviceAppControlsDescription[] =
"Enables the on-device controls UI for blocking apps.";
const char kOrcaKeyName[] = "Secret key for Orca feature";
const char kOrcaKeyDescription[] =
"Secret key for Orca feature. Incorrect values will cause chrome crashes.";
const char kOsFeedbackDialogName[] =
"OS Feedback dialog on OOBE and login screen";
const char kOsFeedbackDialogDescription[] =
"Enable the OS Feedback dialog on OOBE and login screen.";
const char kPcieBillboardNotificationName[] = "PCIe billboard notification";
const char kPcieBillboardNotificationDescription[] =
"Enable PCIe peripheral billboard notification.";
const char kPerformantSplitViewResizing[] = "Performant Split View Resizing";
const char kPerformantSplitViewResizingDescription[] =
"If enabled, windows may be moved instead of scaled when resizing split "
"view in tablet mode.";
const char kPhoneHubCallNotificationName[] =
"Incoming call notification in Phone Hub";
const char kPhoneHubCallNotificationDescription[] =
"Enables the incoming/ongoing call feature in Phone Hub.";
const char kPompanoName[] = "Pompano feature";
const char kPompanoDescritpion[] = "Enable Pompano feature on ChromeOS.";
const char kPrintingPpdChannelName[] = "Printing PPD channel";
const char kPrintingPpdChannelDescription[] =
"The channel from which PPD index "
"is loaded when matching PPD files during printer setup.";
const char kPrintPreviewCrosAppName[] = "Enable ChromeOS print preview";
const char kPrintPreviewCrosAppDescription[] =
"Enables ChromeOS print preview app.";
const char kProductivityLauncherImageSearchName[] =
"Productivity Launcher experiment: Launcher Image Search";
const char kProductivityLauncherImageSearchDescription[] =
"To evaluate the viability of image search as part of Productivity "
"Launcher Search.";
const char kProjectorAppDebugName[] = "Enable Projector app debug";
const char kProjectorAppDebugDescription[] =
"Adds more informative error messages to the Projector app for debugging";
const char kProjectorGm3Name[] = "Enable Screencast GM3";
const char kProjectorGm3Description[] =
"Adds updated styles and dynamic colors to the Screencast app.";
const char kProjectorServerSideSpeechRecognitionName[] =
"Enable server side speech recognition for Projector";
const char kProjectorServerSideSpeechRecognitionDescription[] =
"Adds server side speech recognition capability to Projector.";
const char kProjectorServerSideUsmName[] =
"Enable USM for Projector server side speech recognition";
const char kProjectorServerSideUsmDescription[] =
"Allows Screencast to use the latest model for server side speech "
"recognition.";
const char kProjectorUseDVSPlaybackEndpointName[] =
"Use DVS endpoint in the Screencast app";
const char kProjectorUseDVSPlaybackEndpointDescription[] =
"Use the latest endpoint for retrieving playback urls in the Screencast "
"app.";
const char kReleaseNotesNotificationAllChannelsName[] =
"Release Notes Notification All Channels";
const char kReleaseNotesNotificationAllChannelsDescription[] =
"Enables the release notes notification for all ChromeOS channels";
const char kReleaseNotesNotificationAlwaysEligibleName[] =
"Release Notes Notification always eligible";
const char kReleaseNotesNotificationAlwaysEligibleDescription[] =
"Makes the release notes notification always appear regardless of channel, "
"profile type, and whether or not the notification had already been shown "
"this milestone. For testing.";
const char kRenderArcNotificationsByChromeName[] =
"Render ARC notifications by ChromeOS";
const char kRenderArcNotificationsByChromeDescription[] =
"Enables rendering ARC notifications using ChromeOS notification framework "
"if supported";
const char kArcWindowPredictorName[] = "Enable ARC window predictor";
const char kArcWindowPredictorDescription[] =
"Enables the window state and bounds predictor for ARC task windows";
const char kScalableIphDebugName[] = "Scalable Iph Debug";
const char kScalableIphDebugDescription[] =
"Enables debug feature of Scalable Iph";
const char kScannerDisclaimerDebugOverrideName[] =
"Scanner disclaimer: Debug override";
const char kScannerDisclaimerDebugOverrideDescription[] =
"Allows overriding the type of disclaimer displayed when Scanner is shown";
const char kScannerDisclaimerDebugOverrideChoiceDefault[] = "Default";
const char kScannerDisclaimerDebugOverrideChoiceAlwaysReminder[] =
"Always reminder disclaimer";
const char kScannerDisclaimerDebugOverrideChoiceAlwaysFull[] =
"Always full disclaimer";
const char kSealKeyName[] = "Secret key for Seal feature";
const char kSealKeyDescription[] = "Secret key for Seal feature.";
const char kShelfAutoHideSeparationName[] =
"Enable separate shelf auto-hide preferences.";
const char kShelfAutoHideSeparationDescription[] =
"Allows for the shelf's auto-hide preference to be specified separately "
"for clamshell and tablet mode.";
const char kShimlessRMAOsUpdateName[] = "Enable OS updates in shimless RMA";
const char kShimlessRMAOsUpdateDescription[] =
"Turns on OS updating in Shimless RMA";
const char kShimlessRMAHardwareValidationSkipName[] =
"Enable Hardware Validation Skip in Shimless RMA";
const char kShimlessRMAHardwareValidationSkipDescription[] =
"Turns on Hardware Validation Skip in Shimless RMA";
const char kShimlessRMADynamicDeviceInfoInputsName[] =
"Enable Dynamic Device Info Inputs in Shimless RMA";
const char kShimlessRMADynamicDeviceInfoInputsDescription[] =
"Turns on Dynamic Device Info Inputs in Shimless RMA";
const char kSchedulerConfigurationName[] = "Scheduler Configuration";
const char kSchedulerConfigurationDescription[] =
"Instructs the OS to use a specific scheduler configuration setting.";
const char kSchedulerConfigurationConservative[] =
"Disables Hyper-Threading on relevant CPUs.";
const char kSchedulerConfigurationPerformance[] =
"Enables Hyper-Threading on relevant CPUs.";
const char kSnapGroupsName[] = "Enable Snap Groups feature";
const char kSnapGroupsDescription[] =
"Enables the ability to accelerate the window layout setup process and "
"access the window layout as a group";
const char kMediaDynamicCgroupName[] = "Media Dynamic Cgroup";
const char kMediaDynamicCgroupDescription[] =
"Dynamic Cgroup allows tasks from media workload to be consolidated on "
"limited cpuset";
const char kMissiveStorageName[] = "Missive Daemon Storage Configuration";
const char kMissiveStorageDescription[] =
"Provides missive daemon with custom storage configuration parameters";
const char kShowBluetoothDebugLogToggleName[] =
"Show Bluetooth debug log toggle";
const char kShowBluetoothDebugLogToggleDescription[] =
"Enables a toggle which can enable debug (i.e., verbose) logs for "
"Bluetooth";
const char kShowTapsName[] = "Show taps";
const char kShowTapsDescription[] =
"Draws a circle at each touch point, which makes touch points more obvious "
"when projecting or mirroring the display. Similar to the Android OS "
"developer option.";
const char kShowTouchHudName[] = "Show HUD for touch points";
const char kShowTouchHudDescription[] =
"Shows a trail of colored dots for the last few touch points. Pressing "
"Ctrl-Alt-I shows a heads-up display view in the top-left corner. Helps "
"debug hardware issues that generate spurious touch events.";
const char kContinuousOverviewScrollAnimationName[] =
"Makes the gesture for Overview continuous";
const char kContinuousOverviewScrollAnimationDescription[] =
"When a user does the Overview gesture (3 finger swipe), smoothly animates "
"the transition into Overview as the gesture is done. Allows for the user "
"to scrub (move forward and backward) through Overview.";
const char kSpectreVariant2MitigationName[] = "Spectre variant 2 mitigation";
const char kSpectreVariant2MitigationDescription[] =
"Controls whether Spectre variant 2 mitigation is enabled when "
"bootstrapping the Seccomp BPF sandbox. Can be overridden by "
"#force-spectre-variant2-mitigation.";
const char kSystemJapanesePhysicalTypingName[] =
"Use system IME for Japanese typing";
const char kSystemJapanesePhysicalTypingDescription[] =
"Use the system input engine instead of the Chrome extension for physical "
"typing in Japanese. This also replaces the Japanese extension settings "
"page with one built into the UI and migrates the data to a new location.";
const char kSupportF11AndF12ShortcutsName[] = "F11/F12 Shortcuts";
const char kSupportF11AndF12ShortcutsDescription[] =
"Enables settings that "
"allow users to use shortcuts to remap to the F11 and F12 keys in the "
"Customize keyboard keys "
"page.";
const char kTerminalDevName[] = "Terminal dev";
const char kTerminalDevDescription[] =
"Enables Terminal System App to load from Downloads for developer testing. "
"Only works in dev and canary channels.";
const char kTetherName[] = "Instant Tethering";
const char kTetherDescription[] =
"Enables Instant Tethering. Instant Tethering allows your nearby Google "
"phone to share its Internet connection with this device.";
const char kTilingWindowResizeName[] = "CrOS Labs - Tiling Window Resize";
const char kTilingWindowResizeDescription[] =
"Enables tile-like resizing of windows.";
const char kTouchscreenCalibrationName[] =
"Enable/disable touchscreen calibration option in material design settings";
const char kTouchscreenCalibrationDescription[] =
"If enabled, the user can calibrate the touch screen displays in "
"chrome://settings/display.";
const char kTouchscreenMappingName[] =
"Enable/disable touchscreen mapping option in material design settings";
const char kTouchscreenMappingDescription[] =
"If enabled, the user can map the touch screen display to the correct "
"input device in chrome://settings/display.";
const char kTrafficCountersEnabledName[] = "Traffic counters enabled";
const char kTrafficCountersEnabledDescription[] =
"If enabled, data usage will be visible in the Cellular Settings UI and "
"traffic counters will be automatically reset if that setting is enabled.";
const char kTrafficCountersForWiFiTestingName[] =
"Traffic counters enabled for WiFi networks";
const char kTrafficCountersForWiFiTestingDescription[] =
"If enabled, data usage will be visible in the Settings UI for WiFi "
"networks";
const char kUploadOfficeToCloudName[] = "Enable Office files upload workflow.";
const char kUploadOfficeToCloudDescription[] =
"Some file handlers for Microsoft Office files are only available on the "
"the cloud. Enables the cloud upload workflow for Office file handling.";
const char kUseAnnotatedAccountIdName[] =
"Use AccountId based mapping between User and BrowserContext";
const char kUseAnnotatedAccountIdDescription[] =
"Uses AccountId annotated for BrowserContext to look up between ChromeOS "
"User and BrowserContext, a.k.a. Profile.";
const char kUseFakeDeviceForMediaStreamName[] = "Use fake video capture device";
const char kUseFakeDeviceForMediaStreamDescription[] =
"Forces Chrome to use a fake video capture device (a rolling pacman with a "
"timestamp) instead of the system audio/video devices, for debugging "
"purposes.";
const char kUseLegacyDHCPCDName[] = "Use legacy dhcpcd7 for IPv4";
const char kUseLegacyDHCPCDDescription[] =
"Use legacy dhcpcd7 for IPv4 provisioning, otherwise the latest dhcpcd "
"will be used. Note that IPv6 (DHCPv6-PD) will always use the latest "
"dhcpcd.";
const char kUseManagedPrintJobOptionsInPrintPreviewName[] =
"Use managed print job options in print preview";
const char kUseManagedPrintJobOptionsInPrintPreviewDescription[] =
"Use managed print job options set via "
"DevicePrinters/PrinterBulkConfiguration policy in print preview.";
const char kUiDevToolsName[] = "Enable native UI inspection";
const char kUiDevToolsDescription[] =
"Enables inspection of native UI elements. For local inspection use "
"chrome://inspect#other";
const char kUiSlowAnimationsName[] = "Slow UI animations";
const char kUiSlowAnimationsDescription[] = "Makes all UI animations slow.";
const char kVcDlcUiName[] = "VC DLC UI";
const char kVcDlcUiDescription[] =
"Enable UI for video conference effect toggle tiles in the video "
"conference controls bubble that indicates when required DLC is "
"downloading.";
const char kVirtualKeyboardName[] = "Virtual Keyboard";
const char kVirtualKeyboardDescription[] =
"Always show virtual keyboard regardless of having a physical keyboard "
"present";
const char kVirtualKeyboardDisabledName[] = "Disable Virtual Keyboard";
const char kVirtualKeyboardDisabledDescription[] =
"Always disable virtual keyboard regardless of device mode. Workaround for "
"virtual keyboard showing with some external keyboards.";
const char kVirtualKeyboardGlobalEmojiPreferencesName[] =
"Virtual Keyboard Global Emoji Preferences";
const char kVirtualKeyboardGlobalEmojiPreferencesDescription[] =
"Enable global preferences for skin tone and gender in the virtual "
"keyboard emoji picker.";
const char kWakeOnWifiAllowedName[] = "Allow enabling wake on WiFi features";
const char kWakeOnWifiAllowedDescription[] =
"Allows wake on WiFi features in shill to be enabled.";
const char kWelcomeExperienceName[] = "Welcome Experience";
const char kWelcomeExperienceDescription[] =
"Enables a new Welcome Experience for first-time peripheral connections.";
const char kWelcomeExperienceTestUnsupportedDevicesName[] =
"Welcome Experience test unsupported devices";
const char kWelcomeExperienceTestUnsupportedDevicesDescription[] =
"kWelcomeExperienceTestUnsupportedDevices enables the new device Welcome "
"Experience to be tested on external devices that are not officially "
"supported. When enabled, users will be able to initiate and complete "
"the enhanced Welcome Experience flow using these unsupported external "
"devices. This flag is intended for testing purposes and should be "
"disabled in production environments.";
const char kWelcomeTourName[] = "Welcome Tour";
const char kWelcomeTourDescription[] =
"Enables the Welcome Tour that walks new users through ChromeOS System UI.";
const char kWelcomeTourForceUserEligibilityName[] =
"Force Welcome Tour user eligibility";
const char kWelcomeTourForceUserEligibilityDescription[] =
"Forces user eligibility for the Welcome Tour that walks new users through "
"ChromeOS System UI. Enabling this flag has no effect unless the Welcome "
"Tour is also enabled.";
const char kWifiConnectMacAddressRandomizationName[] =
"MAC address randomization";
const char kWifiConnectMacAddressRandomizationDescription[] =
"Randomize MAC address when connecting to unmanaged (non-enterprise) "
"WiFi networks.";
const char kWifiConcurrencyName[] = "WiFi Concurrency";
const char kWifiConcurrencyDescription[] =
"When enabled, it uses new WiFi concurrency Shill APIs to start station "
"WiFi and tethering.";
const char kWindowSplittingName[] = "CrOS Labs - Window splitting";
const char kWindowSplittingDescription[] =
"Enables splitting windows by dragging one over another.";
const char kLauncherKeyShortcutInBestMatchName[] =
"Enable keyshortcut results in best match";
const char kLauncherKeyShortcutInBestMatchDescription[] =
"When enabled, it allows key shortcut results to appear in best match and "
"answer card in launcher.";
const char kLauncherKeywordExtractionScoring[] =
"Query keyword extraction and scoring in launcher";
const char kLauncherKeywordExtractionScoringDescription[] =
"Enables extraction of keywords from query then calculate score from "
"extracted keyword in the launcher.";
const char kLauncherLocalImageSearchName[] =
"Enable launcher local image search";
const char kLauncherLocalImageSearchDescription[] =
"Enables on-device local image search in the launcher.";
const char kLauncherLocalImageSearchConfidenceName[] =
"Launcher Local Image Search Confidence";
const char kLauncherLocalImageSearchConfidenceDescription[] =
"Allows configurations of the experiment parameters for local image search "
"confidence threshold in the launcher.";
const char kLauncherLocalImageSearchRelevanceName[] =
"Launcher Local Image Search Relevance";
const char kLauncherLocalImageSearchRelevanceDescription[] =
"Allows configurations of the experiment parameters for local image search "
"Relevance threshold in the launcher.";
const char kLauncherLocalImageSearchOcrName[] =
"Enable OCR for local image search";
const char kLauncherLocalImageSearchOcrDescription[] =
"Enables on-device Optical Character Recognition for local image search in "
"the launcher.";
const char kLauncherLocalImageSearchIcaName[] =
"Enable ICA for local image search";
const char kLauncherLocalImageSearchIcaDescription[] =
"Enables on-device Image Content-based Annotation for local image search "
"in the launcher.";
const char kLauncherSearchControlName[] = "Enable launcher search control";
const char kLauncherSearchControlDescription[] =
"Enable search control in launcher so that users can customize the result "
"results provided.";
const char kLauncherNudgeSessionResetName[] =
"Enable resetting launcher nudge data";
const char kLauncherNudgeSessionResetDescription[] =
"When enabled, this will reset the launcher nudge shown data on every new "
"user session, allowing the nudge to be shown again.";
const char kMacAddressRandomizationName[] = "MAC address randomization";
const char kMacAddressRandomizationDescription[] =
"Feature to allow MAC address randomization to be enabled for WiFi "
"networks.";
const char kSysUiShouldHoldbackDriveIntegrationName[] =
"Holdback for Drive Integration on chromeOS";
const char kSysUiShouldHoldbackDriveIntegrationDescription[] =
"Enables holdback for Drive Integration.";
const char kSysUiShouldHoldbackTaskManagementName[] =
"Holdback for Task Management on chromeOS";
const char kSysUiShouldHoldbackTaskManagementDescription[] =
"Enables holdback for Task Management.";
const char kTetheringExperimentalFunctionalityName[] =
"Tethering Allow Experimental Functionality";
const char kTetheringExperimentalFunctionalityDescription[] =
"Feature to enable Chromebook hotspot functionality for experimental "
"carriers, modem and modem FW.";
// Prefer keeping this section sorted to adding new definitions down here.
#endif // BUILDFLAG(IS_CHROMEOS)
#if BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX)
const char kGetAllScreensMediaName[] = "GetAllScreensMedia API";
const char kGetAllScreensMediaDescription[] =
"When enabled, the getAllScreensMedia API for capturing multiple screens "
"at once, is available.";
#endif // BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX)
#if BUILDFLAG(IS_CHROMEOS)
const char kAddPrinterViaPrintscanmgrName[] =
"Uses printscanmgr to add printers";
const char kAddPrinterViaPrintscanmgrDescription[] =
"Changes the daemon used to add printers from debugd to printscanmgr.";
const char kCrosAppsBackgroundEventHandlingName[] =
"Experimental Background Events for CrOS Apps";
const char kCrosAppsBackgroundEventHandlingDescription[] =
"Enable key events for CrOS Apps running in background.";
const char kRunOnOsLoginName[] = "Run on OS login";
const char kRunOnOsLoginDescription[] =
"When enabled, allows PWAs to be automatically run on OS login.";
const char kPreventCloseName[] = "Prevent close";
const char kPreventCloseDescription[] =
"When enabled, allow-listed PWAs cannot be closed manually.";
const char kFileSystemAccessGetCloudIdentifiersName[] =
"Cloud identifiers for FileSystemAccess API";
const char kFileSystemAccessGetCloudIdentifiersDescription[] =
"Enables the FileSystemHandle.getCloudIdentifiers() method. See"
"https://github.com/WICG/file-system-access/blob/main/proposals/"
"CloudIdentifier.md"
"for more information.";
const char kCrOSDspBasedAecAllowedName[] =
"Allow CRAS to use a DSP-based AEC if available";
const char kCrOSDspBasedAecAllowedDescription[] =
"Allows the system variant of the AEC in CRAS to be run on DSP ";
const char kCrOSDspBasedNsAllowedName[] =
"Allow CRAS to use a DSP-based NS if available";
const char kCrOSDspBasedNsAllowedDescription[] =
"Allows the system variant of the NS in CRAS to be run on DSP ";
const char kCrOSDspBasedAgcAllowedName[] =
"Allow CRAS to use a DSP-based AGC if available";
const char kCrOSDspBasedAgcAllowedDescription[] =
"Allows the system variant of the AGC in CRAS to be run on DSP ";
const char kCrOSEnforceMonoAudioCaptureName[] =
"Enforce mono audio capture for Chrome";
const char kCrOSEnforceMonoAudioCaptureDescription[] =
"Enforce mono audio capture instead of stereo capture for Chrome on "
"ChromeOS";
const char kCrOSEnforceSystemAecName[] = "Enforce using the system AEC in CrAS";
const char kCrOSEnforceSystemAecDescription[] =
"Enforces using the system variant in CrAS of the AEC";
const char kCrOSEnforceSystemAecAgcName[] =
"Enforce using the system AEC and AGC in CrAS";
const char kCrOSEnforceSystemAecAgcDescription[] =
"Enforces using the system variants in CrAS of the AEC and AGC.";
const char kCrOSEnforceSystemAecNsName[] =
"Enforce using the system AEC and NS in CrAS";
const char kCrOSEnforceSystemAecNsDescription[] =
"Enforces using the system variants in CrAS of the AEC and NS.";
const char kCrOSEnforceSystemAecNsAgcName[] =
"Enforce using the system AEC, NS and AGC in CrAS";
const char kCrOSEnforceSystemAecNsAgcDescription[] =
"Enforces using the system variants in CrAS of the AEC, NS and AGC.";
const char kIgnoreUiGainsName[] = "Ignore UI Gains in system mic gain setting";
const char kIgnoreUiGainsDescription[] =
"Ignore UI Gains in system mic gain setting";
const char kShowForceRespectUiGainsToggleName[] =
"Enable a setting toggle to force respect UI gains";
const char kShowForceRespectUiGainsToggleDescription[] =
"Enable a setting toggle to force respect UI gains.";
const char kCrOSSystemVoiceIsolationOptionName[] =
"Enable the options of setting system voice isolation per stream";
const char kCrOSSystemVoiceIsolationOptionDescription[] =
"Enable the options of setting system voice isolation per stream.";
const char kShowSpatialAudioToggleName[] =
"Enable a setting toggle for spatial audio";
const char kShowSpatialAudioToggleDescription[] =
"Enable a setting toggle for spatial audio.";
const char kSingleCaCertVerificationPhase0Name[] =
"Use single CA cert for EAP networks if provided phase 0";
const char kSingleCaCertVerificationPhase0Description[] =
"Only collect data for server certificate verification failure.";
const char kSingleCaCertVerificationPhase1Name[] =
"Use single CA cert for EAP networks if provided phase 1";
const char kSingleCaCertVerificationPhase1Description[] =
"Use a single CA cert for server's cert verification with fallback to"
"the old config.";
const char kSingleCaCertVerificationPhase2Name[] =
"Use single CA cert for EAP networks if provided phase 2";
const char kSingleCaCertVerificationPhase2Description[] =
"Use a single CA cert for server's cert verification, no fallback.";
const char kCrosMallName[] = "ChromeOS App Mall";
const char kCrosMallDescription[] =
"Enables an app to discover and install other apps.";
const char kCrosMallManagedName[] = "ChromeOS App Mall for managed users";
const char kCrosMallManagedDescription[] =
"Enables the Mall app for managed users. Only has an effect when the "
"#cros-mall flag is enabled.";
const char kCrosMallUrlName[] = "ChromeOS App Mall URL";
const char kCrosMallUrlDescription[] =
"Customize the URL used for the ChromeOS App Mall.";
const char kCrosPrivacyHubName[] = "Enable ChromeOS Privacy Hub";
const char kCrosPrivacyHubDescription[] = "Enables ChromeOS Privacy Hub.";
const char kCrosSeparateGeoApiKeyName[] =
"Use ChromeOS-specific API keys for location resolution";
const char kCrosSeparateGeoApiKeyDescription[] =
"If enabled, ChromeOS system services and Chrome-on-ChromeOS will use "
"different API keys and GCP endpoint to resolve location.";
const char kDisableIdleSocketsCloseOnMemoryPressureName[] =
"Disable closing idle sockets on memory pressure";
const char kDisableIdleSocketsCloseOnMemoryPressureDescription[] =
"If enabled, idle sockets will not be closed when chrome detects memory "
"pressure. This applies to web pages only and not to internal requests.";
const char kLockedModeName[] = "Enable the Locked Mode API.";
const char kLockedModeDescription[] =
"Enabled the Locked Mode Web API which allows admin-allowlisted sites "
"to enter a locked down fullscreen mode.";
const char kOneGroupPerRendererName[] =
"Use one cgroup for each foreground renderer";
const char kOneGroupPerRendererDescription[] =
"Places each Chrome foreground renderer into its own cgroup";
const char kPlatformKeysChangesWave1Name[] = "Platform Keys Changes Wave 1";
const char kPlatformKeysChangesWave1Description[] =
"Enables the first wave of new features for the "
"chrome.enterprise.platformKeys API. That includes supporting the "
"\"RSA-OAEP\" key type with the \"unwrapKey\" key usage and adding the "
"setKeyTag() API method to mark keys for future lookup.";
const char kPrintPreviewCrosPrimaryName[] =
"Enables the ChromeOS print preview to be the primary print preview.";
const char kPrintPreviewCrosPrimaryDescription[] =
"Allows the ChromeOS print preview to be opened instead of the browser "
" print preview.";
const char kDisableQuickAnswersV2TranslationName[] =
"Disable Quick Answers Translation";
const char kDisableQuickAnswersV2TranslationDescription[] =
"Disable translation services of the Quick Answers.";
const char kQuickAnswersRichCardName[] = "Enable Quick Answers Rich Card";
const char kQuickAnswersRichCardDescription[] =
"Enable rich card views of the Quick Answers feature.";
const char kQuickAnswersMaterialNextUIName[] =
"Enable Quick Answers Material Next UI";
const char kQuickAnswersMaterialNextUIDescription[] =
"Enable Material Next UI for the Quick Answers feature. This is effective "
"only if Magic Boost flag is off. Note that this will be changed as this "
"is effective only if a device is eligible to Magic Boost when the Magic "
"Boost flag gets flipped.";
const char kQuickOfficeForceFileDownloadName[] =
"Basic Office Editor File Download";
const char kQuickOfficeForceFileDownloadDescription[] =
"Forces the Basic Office Editor to download files instead of intercepting "
"navigations to document types it can handle.";
const char kWebPrintingApiName[] = "Web Printing API";
const char kWebPrintingApiDescription[] =
"Enable access to the Web Printing API. See "
"https://github.com/WICG/web-printing for details.";
#endif // BUILDFLAG(IS_CHROMEOS)
#if BUILDFLAG(IS_CHROMEOS) && BUILDFLAG(USE_LINUX_VIDEO_ACCELERATION)
const char kChromeOSHWVBREncodingName[] =
"ChromeOS Hardware Variable Bitrate Encoding";
const char kChromeOSHWVBREncodingDescription[] =
"Enables the hardware-accelerated variable bitrate (VBR) encoding on "
"ChromeOS. If the hardware encoder supports VBR for a specified codec, a "
"video is recorded in VBR encoding in MediaRecoder API automatically and "
"WebCodecs API if configured so.";
#if defined(ARCH_CPU_ARM_FAMILY)
const char kUseGLForScalingName[] = "Use GL image processor for scaling";
const char kUseGLForScalingDescription[] =
"Use the GL image processor for scaling over libYUV implementations.";
const char kPreferGLImageProcessorName[] = "Prefer GL image processor";
const char kPreferGLImageProcessorDescription[] =
"Prefers the GL image processor for format conversion of video frames over"
" both the libYUV and hardware implementations";
const char kPreferSoftwareMT21Name[] = "Prefer software MT21 conversion";
const char kPreferSoftwareMT21Description[] =
"Prefer using the software MT21 conversion instead of the MDP hardware "
"conversion on MT8173 devices.";
const char kEnableProtectedVulkanDetilingName[] =
"Enable Protected Vulkan Detiling";
const char kEnableProtectedVulkanDetilingDescription[] =
"Use a Vulkan shader for protected Vulkan detiling.";
const char kEnableArmHwdrm10bitOverlaysName[] =
"Enable ARM HW DRM 10-bit Overlays";
const char kEnableArmHwdrm10bitOverlaysDescription[] =
"Enable 10-bit overlays for ARM HW DRM content. If disabled, 10-bit "
"HW DRM content will be subsampled to 8-bit before scanout. This flag "
"has no effect on 8-bit content.";
#if BUILDFLAG(USE_CHROMEOS_PROTECTED_MEDIA)
const char kEnableArmHwdrmName[] = "Enable ARM HW DRM";
const char kEnableArmHwdrmDescription[] = "Enable HW backed Widevine L1 DRM";
#endif // BUILDFLAG(USE_CHROMEOS_PROTECTED_MEDIA)
#endif // defined(ARCH_CPU_ARM_FAMILY)
#endif // BUILDFLAG(IS_CHROMEOS) && BUILDFLAG(USE_LINUX_VIDEO_ACCELERATION)
// Linux -----------------------------------------------------------------------
#if BUILDFLAG(IS_LINUX)
const char kOzonePlatformHintChoiceDefault[] = "Default";
const char kOzonePlatformHintChoiceAuto[] = "Auto";
const char kOzonePlatformHintChoiceX11[] = "X11";
const char kOzonePlatformHintChoiceWayland[] = "Wayland";
const char kOzonePlatformHintName[] = "Preferred Ozone platform";
const char kOzonePlatformHintDescription[] =
"Selects the preferred platform backend used on Linux. \"Auto\" selects "
"Wayland if possible, X11 otherwise. ";
const char kPulseaudioLoopbackForCastName[] =
"Linux System Audio Loopback for Cast (pulseaudio)";
const char kPulseaudioLoopbackForCastDescription[] =
"Enable system audio mirroring when casting a screen on Linux with "
"pulseaudio.";
const char kPulseaudioLoopbackForScreenShareName[] =
"Linux System Audio Loopback for Screen Sharing (pulseaudio)";
const char kPulseaudioLoopbackForScreenShareDescription[] =
"Enable system audio sharing when screen sharing on Linux with pulseaudio.";
const char kSimplifiedTabDragUIName[] = "Simplified tab dragging UI mode";
const char kSimplifiedTabDragUIDescription[] =
"Enable simplified tab dragging UI mode as a fallback if the graphical "
"environment does not support the classic UI.";
const char kWaylandLinuxDrmSyncobjName[] =
"Wayland linux-drm-syncobj explicit sync";
const char kWaylandLinuxDrmSyncobjDescription[] =
"Enable Wayland's explicit sync support using linux-drm-syncobj."
"Requires minimum kernel version v6.11.";
const char kWaylandPerWindowScalingName[] = "Wayland per-window scaling";
const char kWaylandPerWindowScalingDescription[] =
"Enable Wayland's per-window scaling experimental support.";
const char kWaylandSessionManagementName[] = "Wayland session management";
const char kWaylandSessionManagementDescription[] =
"Enable Wayland's xx/xdg-session-management-v1 experimental support.";
const char kWaylandTextInputV3Name[] = "Wayland text-input-v3";
const char kWaylandTextInputV3Description[] =
"Enable Wayland's text-input-v3 experimental support.";
const char kWaylandUiScalingName[] = "Wayland UI scaling";
const char kWaylandUiScalingDescription[] =
"Enable experimental support for text scaling in the Wayland backend "
"backed by full UI scaling. Requires #wayland-per-window-scaling to be "
"enabled too.";
#endif // BUILDFLAG(IS_LINUX)
// Random platform combinations -----------------------------------------------
#if BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN)
const char kZeroCopyVideoCaptureName[] = "Enable Zero-Copy Video Capture";
const char kZeroCopyVideoCaptureDescription[] =
"Camera produces a gpu friendly buffer on capture and, if there is, "
"hardware accelerated video encoder consumes the buffer";
#endif // BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN)
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || \
BUILDFLAG(IS_CHROMEOS)
const char kFollowingFeedSidepanelName[] = "Following feed in the sidepanel";
const char kFollowingFeedSidepanelDescription[] =
"Enables the following feed in the sidepanel.";
const char kLocalNetworkAccessChecksName[] = "Local Network Access Checks";
const char kLocalNetworkAccessChecksDescription[] =
"Enables Local Network Access checks. "
"See: https://chromestatus.com/feature/5152728072060928";
#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) ||
// BUILDFLAG(IS_CHROMEOS)
#if BUILDFLAG(IS_ANDROID)
const char kTaskManagerClankName[] = "Task Manager on Clank";
const char kTaskManagerClankDescription[] =
"Enables the Task Manager for Clank (Chrome on Android).";
const char kHideTabletToolbarDownloadButtonName[] =
"Hide Tablet Toolbar Download Button";
const char kHideTabletToolbarDownloadButtonDescription[] =
"Hides the Omnibox download button and shows it as a menu item for "
"tablets.";
const char kShowNewTabAnimationsName[] = "Show New Tab Animations";
const char kShowNewTabAnimationsDescription[] =
"Shows new animations for creating tabs.";
const char kTabSwitcherColorBlendAnimateName[] =
"Tab Switcher Color Blend Animation";
const char kTabSwitcherColorBlendAnimateDescription[] =
"Animates the color transition between incognito and regular tab switcher "
"panes in the Hub.";
#else
const char kTaskManagerDesktopRefreshName[] = "Task Manager Desktop Refresh";
const char kTaskManagerDesktopRefreshDescription[] =
"Enables a refreshed design for the Task Manager on Desktop platforms.";
#endif // BUILDFLAG(IS_ANDROID)
const char kGroupPromoPrototypeName[] = "Group Promo Prototype";
const char kGroupPromoPrototypeDescription[] =
"Enables prototype for group promo.";
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
const char kEnableNetworkServiceSandboxName[] =
"Enable the network service sandbox.";
const char kEnableNetworkServiceSandboxDescription[] =
"Enables a sandbox around the network service to help mitigate exploits in "
"its process. This may cause crashes if Kerberos is used.";
const char kUseOutOfProcessVideoDecodingName[] =
"Use out-of-process video decoding (OOP-VD)";
const char kUseOutOfProcessVideoDecodingDescription[] =
"Start utility processes to do hardware video decoding.";
#endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX)
const char kWebBluetoothConfirmPairingSupportName[] =
"Web Bluetooth confirm pairing support";
const char kWebBluetoothConfirmPairingSupportDescription[] =
"Enable confirm-only and confirm-pin pairing mode support for Web "
"Bluetooth";
#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX)
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC)
#if BUILDFLAG(ENABLE_PRINTING)
const char kCupsIppPrintingBackendName[] = "CUPS IPP Printing Backend";
const char kCupsIppPrintingBackendDescription[] =
"Use the CUPS IPP printing backend instead of the original CUPS backend "
"that calls the PPD API.";
#endif // BUILDFLAG(ENABLE_PRINTING)
#endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC)
#if BUILDFLAG(IS_CHROMEOS)
const char kScreenlockReauthCardName[] =
"Show screenlock reauth before filling password setting in password "
"manager";
const char kScreenlockReauthCardDescription[] =
"Enables setting for requiring reauth before filling passwords "
"in password manager settings. The default for setting is turned off.";
#endif // BUILDFLAG(IS_CHROMEOS)
#if BUILDFLAG(CHROME_WIDE_ECHO_CANCELLATION)
const char kChromeWideEchoCancellationName[] = "Chrome-wide echo cancellation";
const char kChromeWideEchoCancellationDescription[] =
"Run WebRTC capture audio processing in the audio process instead of the "
"renderer processes, thereby cancelling echoes from more audio sources.";
#endif // BUILDFLAG(CHROME_WIDE_ECHO_CANCELLATION)
#if BUILDFLAG(DCHECK_IS_CONFIGURABLE)
const char kDcheckIsFatalName[] = "DCHECKs are fatal";
const char kDcheckIsFatalDescription[] =
"By default Chrome will evaluate in this build, but only log failures, "
"rather than crashing. If enabled, DCHECKs will crash the calling process.";
#endif // BUILDFLAG(DCHECK_IS_CONFIGURABLE)
#if BUILDFLAG(ENABLE_NACL)
const char kNaclName[] = "Native Client";
const char kNaclDescription[] =
"Support Native Client for all web applications, even those that were not "
"installed from the Chrome Web Store.";
const char kVerboseLoggingInNaclName[] = "Verbose logging in Native Client";
const char kVerboseLoggingInNaclDescription[] =
"Control the level of verbose logging in Native Client modules for "
"debugging purposes.";
const char kVerboseLoggingInNaclChoiceDefault[] = "Default";
const char kVerboseLoggingInNaclChoiceLow[] = "Low";
const char kVerboseLoggingInNaclChoiceMedium[] = "Medium";
const char kVerboseLoggingInNaclChoiceHigh[] = "High";
const char kVerboseLoggingInNaclChoiceHighest[] = "Highest";
const char kVerboseLoggingInNaclChoiceDisabled[] = "Disabled";
#endif // ENABLE_NACL
#if BUILDFLAG(ENABLE_OOP_PRINTING)
const char kEnableOopPrintDriversName[] =
"Enables Out-of-Process Printer Drivers";
const char kEnableOopPrintDriversDescription[] =
"Enables printing interactions with the operating system to be performed "
"out-of-process.";
#endif // BUILDFLAG(ENABLE_OOP_PRINTING)
#if BUILDFLAG(ENABLE_PAINT_PREVIEW) && BUILDFLAG(IS_ANDROID)
const char kPaintPreviewDemoName[] = "Paint Preview Demo";
const char kPaintPreviewDemoDescription[] =
"If enabled a menu item is added to the Android main menu to demo paint "
"previews.";
#endif // ENABLE_PAINT_PREVIEW && BUILDFLAG(IS_ANDROID)
#if BUILDFLAG(ENABLE_PDF)
const char kAccessiblePDFFormName[] = "Accessible PDF Forms";
const char kAccessiblePDFFormDescription[] =
"Enables accessibility support for PDF forms.";
#if BUILDFLAG(ENABLE_PDF_INK2)
const char kPdfInk2Name[] = "PDF Ink Signatures";
const char kPdfInk2Description[] =
"Enables the ability to annotate PDFs using a new ink library.";
#endif // BUILDFLAG(ENABLE_PDF_INK2)
const char kPdfOopifName[] = "OOPIF for PDF Viewer";
const char kPdfOopifDescription[] =
"Use an OOPIF for the PDF Viewer, instead of a GuestView.";
const char kPdfPortfolioName[] = "PDF portfolio";
const char kPdfPortfolioDescription[] = "Enable PDF portfolio feature.";
const char kPdfUseSkiaRendererName[] = "Use Skia Renderer";
const char kPdfUseSkiaRendererDescription[] =
"Use Skia as the PDF renderer. This flag will have no effect if the "
"renderer choice is controlled by an enterprise policy.";
#endif // BUILDFLAG(ENABLE_PDF)
#if BUILDFLAG(ENABLE_VR)
const char kWebXrProjectionLayersName[] = "WebXR Projection Layers";
const char kWebXrProjectionLayersDescription[] =
"Enables use of XRProjectionLayers.";
const char kWebXrWebGpuBindingName[] = "WebXR/WebGPU Binding";
const char kWebXrWebGpuBindingDescription[] =
"Enables rendering with WebGPU for WebXR sessions. WebXR Projection "
"Layers must be also be enabled to use this feature.";
const char kWebXRDepthPerformanceName[] = "WebXR Depth Performance";
const char kWebXRDepthPerformanceDescription[] =
"Enables various minor improvements to the WebXR depth-sensing feature "
"designed to give pages more control over the performance impact of using "
"the depth-sensing feature";
const char kWebXrInternalsName[] = "WebXR Internals Debugging Page";
const char kWebXrInternalsDescription[] =
"Enables the webxr-internals developer page which can be used to help "
"debug issues with the WebXR Device API.";
#endif // #if defined(ENABLE_VR)
#if BUILDFLAG(ENABLE_WEBUI_TAB_STRIP)
const char kWebUITabStripFlagId[] = "webui-tab-strip";
const char kWebUITabStripName[] = "WebUI tab strip";
const char kWebUITabStripDescription[] =
"When enabled makes use of a WebUI-based tab strip.";
const char kWebUITabStripContextMenuAfterTapName[] =
"WebUI tab strip context menu after tap";
const char kWebUITabStripContextMenuAfterTapDescription[] =
"Enables the context menu to appear after a tap gesture rather than "
"following a press gesture.";
#endif // BUILDFLAG(ENABLE_WEBUI_TAB_STRIP)
#if defined(TOOLKIT_VIEWS) || BUILDFLAG(IS_ANDROID)
const char kAutofillCreditCardUploadName[] =
"Enable offering upload of Autofilled credit cards";
const char kAutofillCreditCardUploadDescription[] =
"Enables a new option to upload credit cards to Google Payments for sync "
"to all Chrome devices.";
#endif // defined(TOOLKIT_VIEWS) || BUILDFLAG(IS_ANDROID)
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_ANDROID)
const char kElasticOverscrollName[] = "Elastic Overscroll";
const char kElasticOverscrollDescription[] =
"Enables Elastic Overscrolling on touchscreens and precision touchpads.";
#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_ANDROID)
#if !BUILDFLAG(IS_ANDROID)
const char kElementCaptureName[] = "Element Capture";
const char kElementCaptureDescription[] =
"Enables Element Capture - an API allowing the mutation of a tab-capture "
"media track into a track capturing just a specific DOM element.";
#endif // !BUILDFLAG(IS_ANDROID)
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC)
const char kUIDebugToolsName[] = "Debugging tools for UI";
const char kUIDebugToolsDescription[] =
"Enables additional keyboard shortcuts to help debugging.";
#endif
#if defined(WEBRTC_USE_PIPEWIRE)
const char kWebrtcPipeWireCameraName[] = "PipeWire Camera support";
const char kWebrtcPipeWireCameraDescription[] =
"When enabled the PipeWire multimedia server will be used for cameras.";
#endif // #if defined(WEBRTC_USE_PIPEWIRE)
#if BUILDFLAG(IS_CHROMEOS)
const char kPromiseIconsName[] = "Promise Icons";
const char kPromiseIconsDescription[] =
"Enables promise icons in the Launcher and Shelf (if the app is pinned) "
"for app installations.";
const char kEnableAudioFocusEnforcementName[] = "Audio Focus Enforcement";
const char kEnableAudioFocusEnforcementDescription[] =
"Enables enforcement of a single media session having audio focus at "
"any one time. Requires #enable-media-session-service to be enabled too.";
#endif // BUILDFLAG(IS_CHROMEOS)
#if BUILDFLAG(ENABLE_COMPOSE)
const char kComposeId[] = "CCO";
const char kComposeName[] = "CCO Edits";
const char kComposeDescription[] = "Enables CCO editing feature";
const char kComposeNudgeAtCursorName[] = "Compose Nudge At Cursor";
const char kComposeNudgeAtCursorDescription[] =
"Shows the Compose proactive nudge at the cursor location";
const char kComposeProactiveNudgeName[] = "Compose Proactive Nudge";
const char kComposeProactiveNudgeDescription[] =
"Enables proactive nudging for Compose";
const char kComposeSegmentationPromotionName[] =
"Compose Segmentation Promotion";
const char kComposeSegmentationPromotionDescription[] =
"Enables the segmentation platform for the Compose proactive nudge";
const char kComposeSelectionNudgeName[] = "Compose Selection Nudge";
const char kComposeSelectionNudgeDescription[] =
"Enables nudge on selection for Compose";
const char kComposeUpfrontInputModesName[] = "Compose Upfront Input Modes";
const char kComposeUpfrontInputModesDescription[] =
"Enables upfront input modes in the Compose dialog";
#endif // BUILDFLAG(ENABLE_COMPOSE)
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN)
const char kThirdPartyProfileManagementName[] =
"Third party profile management";
const char kThirdPartyProfileManagementDescription[] =
"Enables profile management triggered by third-party sign-ins.";
const char kOidcAuthProfileManagementName[] = "OIDC profile management";
const char kOidcAuthProfileManagementDescription[] =
"Enables profile management triggered by OIDC authentications.";
const char kGlicName[] = "Glic";
const char kGlicDescription[] = "Enables glic";
const char kGlicZOrderChangesName[] = "Glic Z Order Changes";
const char kGlicZOrderChangesDescription[] = "Enables glic z order changing";
const char kDesktopPWAsUserLinkCapturingScopeExtensionsName[] =
"Desktop PWA Link Capturing with Scope Extensions";
const char kDesktopPWAsUserLinkCapturingScopeExtensionsDescription[] =
"Allows the 'Desktop PWA Scope Extensions' feature to be used with the "
"'Desktop PWA Link Capturing' feature. Both of those features are required "
"to be turned on for this flag to have an effect.";
const char kSyncEnableBookmarksInTransportModeName[] =
"Enable bookmarks in transport mode";
const char kSyncEnableBookmarksInTransportModeDescription[] =
"Enables account bookmarks for signed-in non-syncing users";
const char kReadingListEnableSyncTransportModeUponSignInName[] =
"Enable reading list in transport mode";
const char kReadingListEnableSyncTransportModeUponSignInDescription[] =
"Enables account reading list for signed-in non-syncing users";
const char kEnableGenericOidcAuthProfileManagementName[] =
"Enable generic OIDC profile management";
const char kEnableGenericOidcAuthProfileManagementDescription[] =
"Enables profile management triggered by generic OIDC authentications.";
#endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN)
#if BUILDFLAG(ENABLE_HLS_DEMUXER)
const char kEnableBuiltinHlsName[] = "Builtin HLS player";
const char kEnableBuiltinHlsDescription[] =
"Enables chrome's builtin HLS player instead of Android's MediaPlayer";
#endif // BUILDFLAG(ENABLE_HLS_DEMUXER)
#if !BUILDFLAG(IS_CHROMEOS)
const char kProfilesReorderingName[] = "Profiles Reordering";
const char kProfilesReorderingDescription[] =
"Enables profiles reordering in the Profile Picker main view by drag and "
"dropping the Profile Tiles. The order is saved when changed and "
"persisted.";
#endif
#if BUILDFLAG(ENABLE_DICE_SUPPORT)
const char kEnableHistorySyncOptinExpansionPillName[] =
"History Sync Opt-in Expansion Pill";
const char kEnableHistorySyncOptinExpansionPillDescription[] =
"Enables the History Sync Opt-in expansion pill on Desktop platforms.";
#endif // BUILDFLAG(ENABLE_DICE_SUPPORT)
#if BUILDFLAG(ENABLE_DICE_SUPPORT) && BUILDFLAG(ENABLE_EXTENSIONS)
const char kEnableExtensionsExplicitBrowserSigninName[] =
"Enable Extensions Explicit Sign In";
const char kEnableExtensionsExplicitBrowserSigninDescription[] =
"Enables users to perform an explicit signin upon installing an extension. "
"After this, syncing for extensions will be enabled when in transport mode "
"(when a user is signed in but has not turned on full sync).";
#endif // BUILDFLAG(ENABLE_DICE_SUPPORT) && BUILDFLAG(ENABLE_EXTENSIONS)
#if BUILDFLAG(ENABLE_BOUND_SESSION_CREDENTIALS)
const char kEnableBoundSessionCredentialsName[] =
"Device Bound Session Credentials";
const char kEnableBoundSessionCredentialsDescription[] =
"Enables Google session credentials binding to cryptographic keys.";
const char kEnableBoundSessionCredentialsSoftwareKeysForManualTestingName[] =
"Device Bound Session Credentials with software keys";
const char
kEnableBoundSessionCredentialsSoftwareKeysForManualTestingDescription[] =
"Enables mock software-backed cryptographic keys for Google session "
"credentials binding and Chrome refresh tokens binding (not secure). "
"This is intended to be used for manual testing only.";
const char kEnableChromeRefreshTokenBindingName[] =
"Chrome Refresh Token Binding";
const char kEnableChromeRefreshTokenBindingDescription[] =
"Enables binding of Chrome refresh tokens to cryptographic keys.";
#endif // BUILDFLAG(ENABLE_BOUND_SESSION_CREDENTIALS)
const char kEnableStandardBoundSessionCredentialsName[] =
"Device Bound Session Credentials (Standard)";
const char kEnableStandardBoundSessionCredentialsDescription[] =
"Enables the official version of Device Bound Session Credentials. For "
"more information see https://github.com/WICG/dbsc.";
const char kEnableStandardBoundSessionPersistenceName[] =
"Device Bound Session Credentials (Standard) Persistence";
const char kEnableStandardBoundSessionPersistenceDescription[] =
"Enables session persistence for the official version of "
"Device Bound Session Credentials.";
const char kEnableStandardBoundSessionRefreshQuotaName[] =
"Device Bound Session Credentials (Standard) Refresh Quota";
const char kEnableStandardBoundSessionRefreshQuotaDescription[] =
"In production, standard Device Bound Session Credentials will feature a "
"maximum rate of refreshes. This flag disables that quota in order to "
"simplify manual testing.";
#if !BUILDFLAG(IS_ANDROID)
const char kEnablePolicyPromotionBannerName[] =
"Enable Policy Promotion Banner";
const char kEnablePolicyPromotionBannerDescription[] =
"Enables showing the policy promotion banner on chrome://policy page.";
#endif // !BUILDFLAG(IS_ANDROID)
const char kSupervisedUserBlockInterstitialV3Name[] =
"Enable URL filter interstitial V3";
const char kSupervisedUserBlockInterstitialV3Description[] =
"Enables URL filter interstitial V3 for Family Link users.";
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN)
const char kSupervisedProfileHideGuestName[] = "Supervised Profile Hide Guest";
const char kSupervisedProfileHideGuestDescription[] =
"Hides Guest Profile entry points for supervised users";
const char kSupervisedProfileSafeSearchName[] = "Supervised Profile SafeSearch";
const char kSupervisedProfileSafeSearchDescription[] =
"Enables SafeSearch in Google Search for supervised users in the pending "
"state.";
const char kSupervisedProfileReauthForBlockedSiteName[] =
"Supervised Profile blocked site reauth";
const char kSupervisedProfileReauthForBlockedSiteDescription[] =
"Ask supervised users to re-authenticate when attempting to navigate to a "
"site blocked by parental controls.";
const char kSupervisedProfileSubframeReauthName[] =
"Supervised Profile reauth in subframes";
const char kSupervisedProfileSubframeReauthDescription[] =
"If \"Supervised Profile YouTube reauth\" or \"Supervised Profile blocked "
"site reauth\" is enabled, require supervised users to re-authenticate "
"before accessing embedded YouTube videos or blocked sites in subframes, "
"respectively.";
const char kSupervisedProfileFilteringFallbackName[] =
"Supervised Profile filtering fallback";
const char kSupervisedProfileFilteringFallbackDescription[] =
"Applies website filters for supervised users in the pending state, if the "
"Family Link website filtering setting is set to block explicit sites. "
"If the Family Link website filtering setting is set to another value, it "
"is applied in the pending regardless of this flag.";
const char kSupervisedProfileCustomStringsName[] =
"Supervised Profile custom strings";
const char kSupervisedProfileCustomStringsDescription[] =
"Displays modified strings on both the sign-in intercept UI and the "
"pre-UNO sync opt out screen";
const char kSupervisedProfileSignInIphName[] = "Supervised Profile sign-in IPH";
const char kSupervisedProfileSignInIphDescription[] =
"Displays an in-product help message when a Profile becomes owned by a "
"supervised user (either on creation of the new profile, or after sign "
"in).";
const char kSupervisedProfileShowKiteBadgeName[] =
"Supervised Profile show kite badge";
const char kSupervisedProfileShowKiteBadgeDescription[] =
"Shows a kite badge on the profile avatar for supervised users.";
const char kSupervisedUserLocalWebApprovalsName[] =
"Enable local web approvals feature";
const char kSupervisedUserLocalWebApprovalsDescription[] =
"Enables parents to approve blocked websites on a child's device.";
#endif // #if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN)
#if BUILDFLAG(IS_ANDROID)
const char kHistoryPageHistorySyncPromoName[] =
"History sync promo in History Page";
const char kHistoryPageHistorySyncPromoDescription[] =
"Add a history sync opt-in promo in the History Page for signed-in users "
"that are not syncing history & tabs.";
const char kHistoryOptInEducationalTipName[] = "History sync educational tip";
const char kHistoryOptInEducationalTipDescription[] =
"Enables a history sync promo in the magic stack on NTP";
const char kWebSerialOverBluetoothName[] = "Enable Web Serial over Bluetooth";
const char kWebSerialOverBluetoothDescription[] =
"Provides a way for websites to interact with a serial device over "
"Bluetooth";
#endif // BUILDFLAG(IS_ANDROID)
#if BUILDFLAG(ENTERPRISE_CONTENT_ANALYSIS)
const char kEnterpriseFileObfuscationName[] = "Enterprise File Obfuscation";
const char kEnterpriseFileObfuscationDescription[] =
"Enables temporary file obfuscation during download for enterprise users. "
"Downloaded files remain obfuscated on disk while WebProtect performs deep "
"scanning, preventing access before verification is complete.";
#endif // BUILDFLAG(ENTERPRISE_CONTENT_ANALYSIS)
#if BUILDFLAG(IS_CHROMEOS)
const char kAllowUserInstalledChromeAppsName[] =
"Allow user installed Chrome Apps";
const char kAllowUserInstalledChromeAppsDescription[] =
"Enables users to override the Chrome Apps deprecation for apps installed "
"by users.";
#endif
// ============================================================================
// Don't just add flags to the end, put them in the right section in
// alphabetical order just like the header file.
// ============================================================================
} // namespace flag_descriptions
|