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
|
// 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.
#ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
#define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
// Includes needed for macros allowing conditional compilation of some strings.
#include "base/debug/debugging_buildflags.h"
#include "build/branding_buildflags.h"
#include "build/build_config.h"
#include "build/buildflag.h"
#include "chrome/common/buildflags.h"
#include "components/compose/buildflags.h"
#include "components/enterprise/buildflags/buildflags.h"
#include "components/nacl/common/buildflags.h"
#include "components/paint_preview/buildflags/buildflags.h"
#include "components/signin/public/base/signin_buildflags.h"
#include "components/webui/flags/feature_entry.h"
#include "content/public/common/content_features.h"
#include "device/vr/buildflags/buildflags.h"
#include "extensions/buildflags/buildflags.h"
#include "media/media_buildflags.h"
#include "net/net_buildflags.h"
#include "pdf/buildflags.h"
#include "printing/buildflags/buildflags.h"
#include "skia/buildflags.h"
#include "third_party/blink/public/common/buildflags.h"
// This file declares strings used in chrome://flags. These messages are not
// translated, because instead of end-users they target Chromium developers and
// testers. See https://crbug.com/587272 and https://crbug.com/703134 for more
// details.
//
// Comments are not necessary. The contents of the strings (which appear in the
// UI) should be good enough documentation for what flags do and when they
// apply. If they aren't, fix them.
//
// Sort flags in each section alphabetically by the k...Name constant. Follow
// that by the k...Description constant and any special values associated with
// that.
//
// Put #ifdefed flags in the appropriate section toward the bottom, don't
// intersperse the file with ifdefs.
namespace flag_descriptions {
// Cross-platform -------------------------------------------------------------
extern const char kAccelerated2dCanvasName[];
extern const char kAccelerated2dCanvasDescription[];
extern const char kAcceleratedVideoDecodeName[];
extern const char kAcceleratedVideoDecodeDescription[];
extern const char kAcceleratedVideoEncodeName[];
extern const char kAcceleratedVideoEncodeDescription[];
extern const char kAdjustCanCreateCanvas2DResourceProviderName[];
extern const char kAdjustCanCreateCanvas2DResourceProviderDescription[];
extern const char kAiSettingsPageEnterpriseDisabledName[];
extern const char kAiSettingsPageEnterpriseDisabledDescription[];
extern const char kAlignSurfaceLayerImplToPixelGridName[];
extern const char kAlignSurfaceLayerImplToPixelGridDescription[];
extern const char kAlignWakeUpsName[];
extern const char kAlignWakeUpsDescription[];
extern const char kAllowInsecureLocalhostName[];
extern const char kAllowInsecureLocalhostDescription[];
#if BUILDFLAG(ENABLE_EXTENSIONS)
extern const char kAllowLegacyMV2ExtensionsName[];
extern const char kAllowLegacyMV2ExtensionsDescription[];
#endif // BUILDFLAG(ENABLE_EXTENSIONS)
//
#if BUILDFLAG(IS_ANDROID)
extern const char kAllowTabClosingUponMinimizationName[];
extern const char kAllowTabClosingUponMinimizationDescription[];
extern const char kAndroidAdaptiveFrameRateName[];
extern const char kAndroidAdaptiveFrameRateDescription[];
#endif
extern const char kAndroidAppIntegrationName[];
extern const char kAndroidAppIntegrationDescription[];
extern const char kAndroidAppIntegrationMultiDataSourceName[];
extern const char kAndroidAppIntegrationMultiDataSourceDescription[];
extern const char kAndroidAppIntegrationModuleName[];
extern const char kAndroidAppIntegrationModuleDescription[];
extern const char kAndroidAppIntegrationV2Name[];
extern const char kAndroidAppIntegrationV2Description[];
extern const char kAndroidAppIntegrationWithFaviconName[];
extern const char kAndroidAppIntegrationWithFaviconDescription[];
extern const char kAccessibilityOnScreenModeName[];
extern const char kAccessibilityOnScreenModeDescription[];
#if BUILDFLAG(IS_ANDROID)
extern const char kAndroidAppearanceSettingsName[];
extern const char kAndroidAppearanceSettingsDescription[];
#endif // BUILDFLAG(IS_ANDROID)
extern const char kAndroidBcivBottomControlsName[];
extern const char kAndroidBcivBottomControlsDescription[];
#if BUILDFLAG(IS_ANDROID)
extern const char kAndroidBookmarkBarName[];
extern const char kAndroidBookmarkBarDescription[];
#endif // BUILDFLAG(IS_ANDROID)
extern const char kAndroidBottomToolbarName[];
extern const char kAndroidBottomToolbarDescription[];
extern const char kAndroidBrowserControlsInVizName[];
extern const char kAndroidBrowserControlsInVizDescription[];
#if BUILDFLAG(IS_ANDROID)
extern const char kAndroidKeyboardA11yName[];
extern const char kAndroidKeyboardA11yDescription[];
#endif // BUILDFLAG(IS_ANDROID)
#if BUILDFLAG(IS_ANDROID)
extern const char kAndroidMetaClickHistoryNavigationName[];
extern const char kAndroidMetaClickHistoryNavigationDescription[];
#endif // BUILDFLAG(IS_ANDROID)
#if BUILDFLAG(IS_ANDROID)
extern const char kAndroidNativePagesInNewTabName[];
extern const char kAndroidNativePagesInNewTabDescription[];
#endif // BUILDFLAG(IS_ANDROID)
#if BUILDFLAG(IS_ANDROID)
extern const char kAndroidProgressBarVisualUpdateName[];
extern const char kAndroidProgressBarVisualUpdateDescription[];
#endif // BUILDFLAG(IS_ANDROID)
#if BUILDFLAG(IS_ANDROID)
extern const char kAndroidSmsOtpFillingName[];
extern const char kAndroidSmsOtpFillingDescription[];
#endif // BUILDFLAG(IS_ANDROID)
#if BUILDFLAG(IS_ANDROID)
extern const char kAndroidWebAppLaunchHandler[];
extern const char kAndroidWebAppLaunchHandlerDescription[];
#endif // BUILDFLAG(IS_ANDROID)
#if BUILDFLAG(IS_CHROMEOS)
extern const char kIgnoreDeviceFlexArcEnabledPolicyName[];
extern const char kIgnoreDeviceFlexArcEnabledPolicyDescription[];
extern const char kAnnotatorModeName[];
extern const char kAnnotatorModeDescription[];
#endif // BUILDFLAG(IS_CHROMEOS)
extern const char kAriaElementReflectionName[];
extern const char kAriaElementReflectionDescription[];
extern const char kAutomaticUsbDetachName[];
extern const char kAutomaticUsbDetachDescription[];
extern const char kAuxiliarySearchDonationName[];
extern const char kAuxiliarySearchDonationDescription[];
extern const char kBackgroundResourceFetchName[];
extern const char kBackgroundResourceFetchDescription[];
extern const char kByDateHistoryInSidePanelName[];
extern const char kByDateHistoryInSidePanelDescription[];
#if !BUILDFLAG(IS_ANDROID)
extern const char kBookmarksTreeViewName[];
extern const char kBookmarksTreeViewDescription[];
#endif
extern const char kBundledSecuritySettingsName[];
extern const char kBundledSecuritySettingsDescription[];
#if BUILDFLAG(IS_CHROMEOS)
extern const char kCampaignsComponentUpdaterTestTagName[];
extern const char kCampaignsComponentUpdaterTestTagDescription[];
extern const char kCampaignsOverrideName[];
extern const char kCampaignsOverrideDescription[];
#endif // IS_CHROMEOS
extern const char kCOLRV1FontsDescription[];
extern const char kCertVerificationNetworkTimeName[];
extern const char kCertVerificationNetworkTimeDescription[];
#if BUILDFLAG(IS_ANDROID)
extern const char kChangeUnfocusedPriorityName[];
extern const char kChangeUnfocusedPriorityDescription[];
#endif
extern const char kClassifyUrlOnProcessResponseEventName[];
extern const char kClassifyUrlOnProcessResponseEventDescription[];
extern const char kClickToCallName[];
extern const char kClickToCallDescription[];
extern const char kClientSideDetectionBrandAndIntentForScamDetectionName[];
extern const char
kClientSideDetectionBrandAndIntentForScamDetectionDescription[];
extern const char kClientSideDetectionShowScamVerdictWarningName[];
extern const char kClientSideDetectionShowScamVerdictWarningDescription[];
extern const char kClipboardMaximumAgeName[];
extern const char kClipboardMaximumAgeDescription[];
extern const char kComputePressureRateObfuscationMitigationName[];
extern const char kComputePressureRateObfuscationMitigationDescription[];
extern const char kComputePressureBreakCalibrationMitigationName[];
extern const char kComputePressureBreakCalibrationMitigationDescription[];
extern const char kContainerTypeNoLayoutContainmentName[];
extern const char kContainerTypeNoLayoutContainmentDescription[];
extern const char kContentSettingsPartitioningName[];
extern const char kContentSettingsPartitioningDescription[];
extern const char kCopyImageFilenameToClipboardName[];
extern const char kCopyImageFilenameToClipboardDescription[];
#if BUILDFLAG(IS_ANDROID)
extern const char kCredentialManagementThirdPartyWebApiRequestForwardingName[];
extern const char
kCredentialManagementThirdPartyWebApiRequestForwardingDescription[];
#endif // IS_ANDROID
#if BUILDFLAG(IS_CHROMEOS)
extern const char kCrosSwitcherName[];
extern const char kCrosSwitcherDescription[];
#endif // IS_CHROMEOS
extern const char kCssGamutMappingName[];
extern const char kCssGamutMappingDescription[];
extern const char kCssMasonryLayoutName[];
extern const char kCssMasonryLayoutDescription[];
extern const char kCssTextBoxTrimName[];
extern const char kCssTextBoxTrimDescription[];
extern const char kCustomizeChromeSidePanelExtensionsCardName[];
extern const char kCustomizeChromeSidePanelExtensionsCardDescription[];
extern const char kCustomizeChromeWallpaperSearchName[];
extern const char kCustomizeChromeWallpaperSearchDescription[];
extern const char kCustomizeChromeWallpaperSearchButtonName[];
extern const char kCustomizeChromeWallpaperSearchButtonDescription[];
extern const char kCustomizeChromeWallpaperSearchInspirationCardName[];
extern const char kCustomizeChromeWallpaperSearchInspirationCardDescription[];
extern const char kDataSharingName[];
extern const char kDataSharingDescription[];
extern const char kDataSharingJoinOnlyName[];
extern const char kDataSharingJoinOnlyDescription[];
extern const char kDataSharingNonProductionEnvironmentName[];
extern const char kDataSharingNonProductionEnvironmentDescription[];
extern const char kDbdRevampDesktopName[];
extern const char kDbdRevampDesktopDescription[];
extern const char kDisableFacilitatedPaymentsMerchantAllowlistName[];
extern const char kDisableFacilitatedPaymentsMerchantAllowlistDescription[];
extern const char kHdrAgtmName[];
extern const char kHdrAgtmDescription[];
extern const char kHistorySyncAlternativeIllustrationName[];
extern const char kHistorySyncAlternativeIllustrationDescription[];
extern const char kLeftClickOpensTabGroupBubbleName[];
extern const char kLeftClickOpensTabGroupBubbleDescription[];
extern const char kDeprecateUnloadName[];
extern const char kDeprecateUnloadDescription[];
#if BUILDFLAG(IS_CHROMEOS)
extern const char kDemoModeComponentUpdaterTestTagName[];
extern const char kDemoModeComponentUpdaterTestTagDescription[];
#endif // BUILDFLAG(IS_CHROMEOS)
#if !BUILDFLAG(IS_ANDROID)
extern const char kDevToolsAutomaticWorkspaceFoldersName[];
extern const char kDevToolsAutomaticWorkspaceFoldersDescription[];
#endif // !BUILDFLAG(IS_ANDROID)
extern const char kDevToolsPrivacyUIName[];
extern const char kDevToolsPrivacyUIDescription[];
#if !BUILDFLAG(IS_ANDROID)
extern const char kDevToolsProjectSettingsName[];
extern const char kDevToolsProjectSettingsDescription[];
#endif // !BUILDFLAG(IS_ANDROID)
#if !BUILDFLAG(IS_ANDROID)
extern const char kDevToolsCSSValueTracingName[];
extern const char kDevToolsCSSValueTracingDescription[];
#endif // !BUILDFLAG(IS_ANDROID)
#if BUILDFLAG(IS_ANDROID)
extern const char kDisableInstanceLimitName[];
extern const char kDisableInstanceLimitDescription[];
extern const char kDisplayEdgeToEdgeFullscreenName[];
extern const char kDisplayEdgeToEdgeFullscreenDescription[];
extern const char kClearInstanceInfoWhenClosedIntentionallyName[];
extern const char kClearInstanceInfoWhenClosedIntentionallyDescription[];
#endif // !BUILDFLAG(IS_ANDROID)
extern const char kEnableBenchmarkingName[];
extern const char kEnableBenchmarkingDescription[];
extern const char kEnableBenchmarkingChoiceDisabled[];
extern const char kEnableBenchmarkingChoiceDefaultFeatureStates[];
extern const char kEnableBenchmarkingChoiceMatchFieldTrialTestingConfig[];
extern const char kEnableBookmarksSelectedTypeOnSigninForTestingName[];
extern const char kEnableBookmarksSelectedTypeOnSigninForTestingDescription[];
extern const char kEnableLazyLoadImageForInvisiblePageName[];
extern const char kEnableLazyLoadImageForInvisiblePageDescription[];
extern const char kEnableSiteSearchAllowUserOverridePolicyName[];
extern const char kEnableSiteSearchAllowUserOverridePolicyDescription[];
extern const char kFontationsFontBackendName[];
extern const char kFontationsFontBackendDescription[];
extern const char kForceStartupSigninPromoName[];
extern const char kForceStartupSigninPromoDescription[];
extern const char kFwupdDeveloperModeName[];
extern const char kFwupdDeveloperModeDescription[];
extern const char kTangibleSyncName[];
extern const char kTangibleSyncDescription[];
extern const char kMagicBoostUpdateForQuickAnswersName[];
extern const char kMagicBoostUpdateForQuickAnswersDescription[];
extern const char kMediaPlaybackWhileNotVisiblePermissionPolicyName[];
extern const char kMediaPlaybackWhileNotVisiblePermissionPolicyDescription[];
extern const char kMediaSessionEnterPictureInPictureName[];
extern const char kMediaSessionEnterPictureInPictureDescription[];
#if BUILDFLAG(IS_ANDROID)
extern const char kMvcUpdateViewWhenModelChangedName[];
extern const char kMvcUpdateViewWhenModelChangedDescription[];
extern const char kReloadTabUiResourcesIfChangedName[];
extern const char kReloadTabUiResourcesIfChangedDescription[];
#endif // !BUILDFLAG(IS_ANDROID)
extern const char kEnableDrDcName[];
extern const char kEnableDrDcDescription[];
extern const char kEnableSnackbarInSettingsName[];
extern const char kEnableSnackbarInSettingsDescription[];
extern const char kEnablePendingModePasswordsPromoName[];
extern const char kEnablePendingModePasswordsPromoDescription[];
extern const char kUseAndroidStagingSmdsName[];
extern const char kUseAndroidStagingSmdsDescription[];
extern const char kUseFrameIntervalDeciderName[];
extern const char kUseFrameIntervalDeciderDescription[];
extern const char kUseSharedImagesForPepperVideoName[];
extern const char kUseSharedImagesForPepperVideoDescription[];
extern const char kUseStorkSmdsServerAddressName[];
extern const char kUseStorkSmdsServerAddressDescription[];
extern const char kUseWallpaperStagingUrlName[];
extern const char kUseWallpaperStagingUrlDescription[];
extern const char kUseMessagesStagingUrlName[];
extern const char kUseMessagesStagingUrlDescription[];
extern const char kUseCustomMessagesDomainName[];
extern const char kUseCustomMessagesDomainDescription[];
extern const char kEnableAutoDisableAccessibilityName[];
extern const char kEnableAutoDisableAccessibilityDescription[];
extern const char kImageDescriptionsAlternateRoutingName[];
extern const char kImageDescriptionsAlternateRoutingDescription[];
#if BUILDFLAG(IS_ANDROID)
extern const char kAutofillDeprecateAccessibilityApiName[];
extern const char kAutofillDeprecateAccessibilityApiDescription[];
#endif // BUILDFLAG(IS_ANDROID)
extern const char kAutofillEnableAllowlistForBmoCardCategoryBenefitsName[];
extern const char
kAutofillEnableAllowlistForBmoCardCategoryBenefitsDescription[];
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || \
BUILDFLAG(IS_CHROMEOS)
extern const char kAutofillEnableAmountExtractionAllowlistDesktopName[];
extern const char kAutofillEnableAmountExtractionAllowlistDesktopDescription[];
extern const char kAutofillEnableAmountExtractionDesktopName[];
extern const char kAutofillEnableAmountExtractionDesktopDescription[];
extern const char kAutofillEnableAmountExtractionDesktopLoggingName[];
extern const char kAutofillEnableAmountExtractionDesktopLoggingDescription[];
#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)
extern const char kAutofillEnableBuyNowPayLaterName[];
extern const char kAutofillEnableBuyNowPayLaterDescription[];
extern const char kAutofillEnableBuyNowPayLaterSyncingName[];
extern const char kAutofillEnableBuyNowPayLaterSyncingDescription[];
#endif
extern const char kAutofillEnableCvcStorageAndFillingName[];
extern const char kAutofillEnableCvcStorageAndFillingDescription[];
extern const char kAutofillEnableCvcStorageAndFillingEnhancementName[];
extern const char kAutofillEnableCvcStorageAndFillingEnhancementDescription[];
extern const char
kAutofillEnableCvcStorageAndFillingStandaloneFormEnhancementName[];
extern const char
kAutofillEnableCvcStorageAndFillingStandaloneFormEnhancementDescription[];
extern const char kAutofillEnableFpanRiskBasedAuthenticationName[];
extern const char kAutofillEnableFpanRiskBasedAuthenticationDescription[];
extern const char kIPHAutofillCreditCardBenefitFeatureName[];
extern const char kIPHAutofillCreditCardBenefitFeatureDescription[];
extern const char kAutofillEnableCardBenefitsForAmericanExpressName[];
extern const char kAutofillEnableCardBenefitsForAmericanExpressDescription[];
extern const char kAutofillEnableCardBenefitsForBmoName[];
extern const char kAutofillEnableCardBenefitsForBmoDescription[];
extern const char kAutofillEnableCardBenefitsIphName[];
extern const char kAutofillEnableCardBenefitsIphDescription[];
extern const char kAutofillEnableCardBenefitsSyncName[];
extern const char kAutofillEnableCardBenefitsSyncDescription[];
extern const char kAutofillEnableCardInfoRuntimeRetrievalName[];
extern const char kAutofillEnableCardInfoRuntimeRetrievalDescription[];
extern const char kAutofillEnableFlatRateCardBenefitsFromCurinosName[];
extern const char kAutofillEnableFlatRateCardBenefitsFromCurinosDescription[];
extern const char kAutofillEnableLogFormEventsToAllParsedFormTypesName[];
extern const char kAutofillEnableLogFormEventsToAllParsedFormTypesDescription[];
extern const char kAutofillEnableLoyaltyCardsFillingName[];
extern const char kAutofillEnableLoyaltyCardsFillingDescription[];
extern const char
kAutofillEnableMultipleRequestInVirtualCardDownstreamEnrollmentName[];
extern const char
kAutofillEnableMultipleRequestInVirtualCardDownstreamEnrollmentDescription
[];
extern const char kAutofillEnableNewFopDisplayDesktopName[];
extern const char kAutofillEnableNewFopDisplayDesktopDescription[];
extern const char kAutofillEnableOffersInClankKeyboardAccessoryName[];
extern const char kAutofillEnableOffersInClankKeyboardAccessoryDescription[];
#if BUILDFLAG(IS_ANDROID)
extern const char kAutofillEnablePaymentSettingsCardPromoAndScanCardName[];
extern const char
kAutofillEnablePaymentSettingsCardPromoAndScanCardDescription[];
extern const char kAutofillEnablePaymentSettingsServerCardSaveName[];
extern const char kAutofillEnablePaymentSettingsServerCardSaveDescription[];
#endif
extern const char kAutofillEnablePrefetchingRiskDataForRetrievalName[];
extern const char kAutofillEnablePrefetchingRiskDataForRetrievalDescription[];
extern const char kAutofillEnableRankingFormulaAddressProfilesName[];
extern const char kAutofillEnableRankingFormulaAddressProfilesDescription[];
extern const char kAutofillEnableRankingFormulaCreditCardsName[];
extern const char kAutofillEnableRankingFormulaCreditCardsDescription[];
extern const char kAutofillEnableSaveAndFillName[];
extern const char kAutofillEnableSaveAndFillDescription[];
#if BUILDFLAG(IS_ANDROID)
extern const char kAutofillEnableShowSaveCardSecurelyMessageName[];
extern const char kAutofillEnableShowSaveCardSecurelyMessageDescription[];
extern const char kAutofillEnableSyncingOfPixBankAccountsName[];
extern const char kAutofillEnableSyncingOfPixBankAccountsDescription[];
#endif // BUILDFLAG(IS_ANDROID)
extern const char kAutofillEnableVcn3dsAuthenticationName[];
extern const char kAutofillEnableVcn3dsAuthenticationDescription[];
extern const char kAutofillImprovedLabelsName[];
extern const char kAutofillImprovedLabelsDescription[];
extern const char kAutofillSharedStorageServerCardDataName[];
extern const char kAutofillSharedStorageServerCardDataDescription[];
extern const char kAutofillMoreProminentPopupName[];
extern const char kAutofillMoreProminentPopupDescription[];
#if BUILDFLAG(IS_ANDROID)
extern const char kAutofillSyncEwalletAccountsName[];
extern const char kAutofillSyncEwalletAccountsDescription[];
#endif // BUILDFLAG(IS_ANDROID)
extern const char kAutofillPaymentsFieldSwappingName[];
extern const char kAutofillPaymentsFieldSwappingDescription[];
extern const char kAutofillUnmaskCardRequestTimeoutName[];
extern const char kAutofillUnmaskCardRequestTimeoutDescription[];
extern const char kAutofillUploadCardRequestTimeoutName[];
extern const char kAutofillUploadCardRequestTimeoutDescription[];
extern const char kAutofillVcnEnrollRequestTimeoutName[];
extern const char kAutofillVcnEnrollRequestTimeoutDescription[];
extern const char kAutofillVcnEnrollStrikeExpiryTimeName[];
extern const char kAutofillVcnEnrollStrikeExpiryTimeDescription[];
extern const char kAutofillVirtualViewStructureAndroidName[];
extern const char kAutofillVirtualViewStructureAndroidDescription[];
extern const char kAutoPictureInPictureForVideoPlaybackName[];
extern const char kAutoPictureInPictureForVideoPlaybackDescription[];
extern const char kBackForwardCacheName[];
extern const char kBackForwardCacheDescription[];
extern const char kBackForwardTransitionsName[];
extern const char kBackForwardTransitionsDescription[];
extern const char kBackgroundListeningName[];
extern const char kBackgroundListeningDescription[];
extern const char kBiometricReauthForPasswordFillingName[];
extern const char kBiometricReauthForPasswordFillingDescription[];
extern const char kBindCookiesToPortName[];
extern const char kBindCookiesToPortDescription[];
extern const char kBindCookiesToSchemeName[];
extern const char kBindCookiesToSchemeDescription[];
extern const char kBlockCrossPartitionBlobUrlFetchingName[];
extern const char kBlockCrossPartitionBlobUrlFetchingDescription[];
extern const char kBorealisBigGlName[];
extern const char kBorealisBigGlDescription[];
extern const char kBorealisDGPUName[];
extern const char kBorealisDGPUDescription[];
extern const char kBorealisEnableUnsupportedHardwareName[];
extern const char kBorealisEnableUnsupportedHardwareDescription[];
extern const char kBorealisForceBetaClientName[];
extern const char kBorealisForceBetaClientDescription[];
extern const char kBorealisForceDoubleScaleName[];
extern const char kBorealisForceDoubleScaleDescription[];
extern const char kBorealisLinuxModeName[];
extern const char kBorealisLinuxModeDescription[];
extern const char kBorealisPermittedName[];
extern const char kBorealisPermittedDescription[];
extern const char kBorealisProvisionName[];
extern const char kBorealisProvisionDescription[];
extern const char kBorealisScaleClientByDPIName[];
extern const char kBorealisScaleClientByDPIDescription[];
extern const char kBorealisZinkGlDriverName[];
extern const char kBorealisZinkGlDriverDescription[];
extern const char kBypassAppBannerEngagementChecksName[];
extern const char kBypassAppBannerEngagementChecksDescription[];
#if BUILDFLAG(IS_ANDROID)
extern const char kSearchInCCTName[];
extern const char kSearchInCCTDescription[];
extern const char kSearchInCCTAlternateTapHandlingName[];
extern const char kSearchInCCTAlternateTapHandlingDescription[];
extern const char kSettingsSingleActivityName[];
extern const char kSettingsSingleActivityDescription[];
#endif // BUILDFLAG(IS_ANDROID)
extern const char kSeparateWebAppShortcutBadgeIconName[];
extern const char kSeparateWebAppShortcutBadgeIconDescription[];
#if !BUILDFLAG(IS_ANDROID)
extern const char kSeparateLocalAndAccountSearchEnginesName[];
extern const char kSeparateLocalAndAccountSearchEnginesDescription[];
extern const char kSeparateLocalAndAccountThemesName[];
extern const char kSeparateLocalAndAccountThemesDescription[];
#endif // !BUILDFLAG(IS_ANDROID)
#if !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_CHROMEOS)
extern const char kCameraMicEffectsName[];
extern const char kCameraMicEffectsDescription[];
extern const char kCameraMicPreviewName[];
extern const char kCameraMicPreviewDescription[];
extern const char kGetUserMediaDeferredDeviceSettingsSelectionName[];
extern const char kGetUserMediaDeferredDeviceSettingsSelectionDescription[];
#endif
extern const char kCanvasHibernationName[];
extern const char kCanvasHibernationDescription[];
#if !BUILDFLAG(IS_ANDROID)
extern const char kCapturedSurfaceControlName[];
extern const char kCapturedSurfaceControlDescription[];
extern const char kCrossTabElementCaptureName[];
extern const char kCrossTabElementCaptureDescription[];
extern const char kCrossTabRegionCaptureName[];
extern const char kCrossTabRegionCaptureDescription[];
#endif // !BUILDFLAG(IS_ANDROID)
#if BUILDFLAG(IS_ANDROID)
extern const char kContextMenuEmptySpaceName[];
extern const char kContextMenuEmptySpaceDescription[];
#endif // BUILDFLAG(IS_ANDROID)
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN)
extern const char kContextualCueingName[];
extern const char kContextualCueingDescription[];
extern const char kGlicZeroStateSuggestionsName[];
extern const char kGlicZeroStateSuggestionsDescription[];
extern const char kGlicActorName[];
extern const char kGlicActorDescription[];
#endif // #if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN)
extern const char kClearCrossSiteCrossBrowsingContextGroupWindowNameName[];
extern const char
kClearCrossSiteCrossBrowsingContextGroupWindowNameDescription[];
extern const char kClipboardContentsIdName[];
extern const char kClipboardContentsIdDescription[];
extern const char kDisableProcessReuse[];
extern const char kDisableProcessReuseDescription[];
extern const char kDisableSystemBlur[];
extern const char kDisableSystemBlurDescription[];
extern const char kDoubleBufferCompositingName[];
extern const char kDoubleBufferCompositingDescription[];
extern const char kCodeBasedRBDName[];
extern const char kCodeBasedRBDDescription[];
extern const char kCollaborationAutomotiveName[];
extern const char kCollaborationAutomotiveDescription[];
extern const char kCollaborationEntrepriseV2Name[];
extern const char kCollaborationEntrepriseV2Description[];
extern const char kCollaborationMessagingName[];
extern const char kCollaborationMessagingDescription[];
extern const char kCollaborationSharedTabGroupAccountDataName[];
extern const char kCollaborationSharedTabGroupAccountDataDescription[];
extern const char kCompressionDictionaryTransportName[];
extern const char kCompressionDictionaryTransportDescription[];
extern const char kCompressionDictionaryTransportBackendName[];
extern const char kCompressionDictionaryTransportBackendDescription[];
extern const char kCompressionDictionaryTransportOverHttp1Name[];
extern const char kCompressionDictionaryTransportOverHttp1Description[];
extern const char kCompressionDictionaryTransportOverHttp2Name[];
extern const char kCompressionDictionaryTransportOverHttp2Description[];
extern const char kCompressionDictionaryTransportRequireKnownRootCertName[];
extern const char
kCompressionDictionaryTransportRequireKnownRootCertDescription[];
#if BUILDFLAG(IS_ANDROID)
extern const char kContextualSearchWithCredentialsForDebugName[];
extern const char kContextualSearchWithCredentialsForDebugDescription[];
#endif // BUILDFLAG(IS_ANDROID)
extern const char kUseDMSAAForTilesName[];
extern const char kUseDMSAAForTilesDescription[];
extern const char kUseDnsHttpsSvcbAlpnName[];
extern const char kUseDnsHttpsSvcbAlpnDescription[];
extern const char kIsolatedSandboxedIframesName[];
extern const char kIsolatedSandboxedIframesDescription[];
extern const char kIsPaintableChecksResourceProviderInsteadOfBridgeName[];
extern const char
kIsPaintableChecksResourceProviderInsteadOfBridgeDescription[];
extern const char kExperimentalAccessibilityLanguageDetectionName[];
extern const char kExperimentalAccessibilityLanguageDetectionDescription[];
extern const char kExperimentalAccessibilityLanguageDetectionDynamicName[];
extern const char
kExperimentalAccessibilityLanguageDetectionDynamicDescription[];
#if BUILDFLAG(IS_ANDROID)
extern const char kFillRecoveryPasswordName[];
extern const char kFillRecoveryPasswordDescription[];
#endif // BUILDFLAG(IS_ANDROID)
extern const char kForceColorProfileSRGB[];
extern const char kForceColorProfileP3[];
extern const char kForceColorProfileRec2020[];
extern const char kForceColorProfileColorSpin[];
extern const char kForceColorProfileSCRGBLinear[];
extern const char kForceColorProfileHDR10[];
extern const char kForceColorProfileName[];
extern const char kForceColorProfileDescription[];
extern const char kDynamicColorGamutName[];
extern const char kDynamicColorGamutDescription[];
extern const char kDarkenWebsitesCheckboxInThemesSettingName[];
extern const char kDarkenWebsitesCheckboxInThemesSettingDescription[];
extern const char kDebugPackedAppName[];
extern const char kDebugPackedAppDescription[];
extern const char kDebugShortcutsName[];
extern const char kDebugShortcutsDescription[];
extern const char kDisallowDocWrittenScriptsUiName[];
extern const char kDisallowDocWrittenScriptsUiDescription[];
extern const char kEnableAutofillAddressSavePromptName[];
extern const char kEnableAutofillAddressSavePromptDescription[];
extern const char kEnterpriseProfileBadgingForAvatarName[];
extern const char kEnterpriseProfileBadgingForAvatarDescription[];
extern const char kEnterpriseBadgingForNtpFooterName[];
extern const char kEnterpriseBadgingForNtpFooterDescription[];
extern const char kManagedProfileRequiredInterstitialName[];
extern const char kManagedProfileRequiredInterstitialDescription[];
#if BUILDFLAG(IS_ANDROID)
extern const char kEnterpriseRealTimeUrlCheckOnAndroidName[];
extern const char kEnterpriseRealTimeUrlCheckOnAndroidDescription[];
extern const char kEnterpriseUrlFilteringEventReportingOnAndroidName[];
extern const char kEnterpriseUrlFilteringEventReportingOnAndroidDescription[];
extern const char kEnterpriseSecurityEventReportingOnAndroidName[];
extern const char kEnterpriseSecurityEventReportingOnAndroidDescription[];
#endif // BUILDFLAG(IS_ANDROID)
extern const char kEnableExperimentalCookieFeaturesName[];
extern const char kEnableExperimentalCookieFeaturesDescription[];
extern const char kEnableDelegatedCompositingName[];
extern const char kEnableDelegatedCompositingDescription[];
#if BUILDFLAG(IS_ANDROID)
extern const char kEnablePixAccountLinkingName[];
extern const char kEnablePixAccountLinkingDescription[];
extern const char kEnablePixPaymentsName[];
extern const char kEnablePixPaymentsDescription[];
extern const char kEnablePixPaymentsInLandscapeModeName[];
extern const char kEnablePixPaymentsInLandscapeModeDescription[];
#endif // BUILDFLAG(IS_ANDROID)
extern const char kEnableRemovingAllThirdPartyCookiesName[];
extern const char kEnableRemovingAllThirdPartyCookiesDescription[];
extern const char kDesktopPWAsAdditionalWindowingControlsName[];
extern const char kDesktopPWAsAdditionalWindowingControlsDescription[];
extern const char kDesktopPWAsAppTitleName[];
extern const char kDesktopPWAsAppTitleDescription[];
extern const char kDesktopPWAsElidedExtensionsMenuName[];
extern const char kDesktopPWAsElidedExtensionsMenuDescription[];
extern const char kDesktopPWAsLaunchHandlerName[];
extern const char kDesktopPWAsLaunchHandlerDescription[];
extern const char kDesktopPWAsTabStripName[];
extern const char kDesktopPWAsTabStripDescription[];
extern const char kDesktopPWAsTabStripSettingsName[];
extern const char kDesktopPWAsTabStripSettingsDescription[];
extern const char kDesktopPWAsTabStripCustomizationsName[];
extern const char kDesktopPWAsTabStripCustomizationsDescription[];
extern const char kDesktopPWAsSubAppsName[];
extern const char kDesktopPWAsSubAppsDescription[];
extern const char kDesktopPWAsSyncChangesName[];
extern const char kDesktopPWAsSyncChangesDescription[];
extern const char kDesktopPWAsScopeExtensionsName[];
extern const char kDesktopPWAsScopeExtensionsDescription[];
extern const char kDesktopPWAsBorderlessName[];
extern const char kDesktopPWAsBorderlessDescription[];
extern const char kDevicePostureName[];
extern const char kDevicePostureDescription[];
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) || \
BUILDFLAG(IS_CHROMEOS)
extern const char kDocumentPictureInPictureAnimateResizeName[];
extern const char kDocumentPictureInPictureAnimateResizeDescription[];
extern const char kAudioDuckingName[];
extern const char kAudioDuckingDescription[];
#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) ||
// BUILDFLAG(IS_CHROMEOS)
extern const char kEnableTLS13EarlyDataName[];
extern const char kEnableTLS13EarlyDataDescription[];
extern const char kAccessibilityAcceleratorName[];
extern const char kAccessibilityAcceleratorDescription[];
extern const char kAccessibilityDisableTouchpadName[];
extern const char kAccessibilityDisableTouchpadDescription[];
extern const char kAccessibilityFlashScreenFeatureName[];
extern const char kAccessibilityFlashScreenFeatureDescription[];
extern const char kAccessibilityServiceName[];
extern const char kAccessibilityServiceDescription[];
extern const char kAccessibilityShakeToLocateName[];
extern const char kAccessibilityShakeToLocateDescription[];
extern const char kExperimentalAccessibilityColorEnhancementSettingsName[];
extern const char
kExperimentalAccessibilityColorEnhancementSettingsDescription[];
extern const char kAccessibilityChromeVoxPageMigrationName[];
extern const char kAccessibilityChromeVoxPageMigrationDescription[];
extern const char kAccessibilityReducedAnimationsName[];
extern const char kAccessibilityReducedAnimationsDescription[];
extern const char kAccessibilityReducedAnimationsInKioskName[];
extern const char kAccessibilityReducedAnimationsInKioskDescription[];
extern const char kAccessibilityFaceGazeName[];
extern const char kAccessibilityFaceGazeDescription[];
extern const char kAccessibilityMagnifierFollowsChromeVoxName[];
extern const char kAccessibilityMagnifierFollowsChromeVoxDescription[];
extern const char kAccessibilityMouseKeysName[];
extern const char kAccessibilityMouseKeysDescription[];
extern const char kAccessibilitySelectToSpeakPrefsMigrationName[];
extern const char kAccessibilitySelectToSpeakPrefsMigrationDescription[];
extern const char kAccessibilityCaptionsOnBrailleDisplayName[];
extern const char kAccessibilityCaptionsOnBrailleDisplayDescription[];
#if BUILDFLAG(IS_ANDROID)
extern const char kBiometricAuthIdentityCheckName[];
extern const char kBiometricAuthIdentityCheckDescription[];
#endif // BUILDFLAG(IS_ANDROID)
extern const char kNewContentForCheckerboardedScrollsName[];
extern const char kNewContentForCheckerboardedScrollsDescription[];
extern const char kNewMacNotificationAPIName[];
extern const char kNewMacNotificationAPIDescription[];
#if BUILDFLAG(IS_ANDROID)
extern const char kNewTabPageCustomizationName[];
extern const char kNewTabPageCustomizationDescription[];
extern const char kNewTabPageCustomizationToolbarButtonName[];
extern const char kNewTabPageCustomizationToolbarButtonDescription[];
#endif // BUILDFLAG(IS_ANDROID)
extern const char kEnableGpuServiceLoggingName[];
extern const char kEnableGpuServiceLoggingDescription[];
extern const char kEnableNetworkLoggingToFileName[];
extern const char kEnableNetworkLoggingToFileDescription[];
extern const char kEnableWindowsGamingInputDataFetcherName[];
extern const char kEnableWindowsGamingInputDataFetcherDescription[];
extern const char kPrivacyGuideAiSettingsName[];
extern const char kPrivacyGuideAiSettingsDescription[];
extern const char kDeprecateAltClickName[];
extern const char kDeprecateAltClickDescription[];
extern const char kMemlogName[];
extern const char kMemlogDescription[];
extern const char kMemlogModeMinimal[];
extern const char kMemlogModeAll[];
extern const char kMemlogModeAllRenderers[];
extern const char kMemlogModeBrowser[];
extern const char kMemlogModeGpu[];
extern const char kMemlogModeRendererSampling[];
extern const char kMemlogSamplingRateName[];
extern const char kMemlogSamplingRateDescription[];
extern const char kMemlogSamplingRate10KB[];
extern const char kMemlogSamplingRate50KB[];
extern const char kMemlogSamplingRate100KB[];
extern const char kMemlogSamplingRate500KB[];
extern const char kMemlogSamplingRate1MB[];
extern const char kMemlogSamplingRate5MB[];
extern const char kMemlogStackModeName[];
extern const char kMemlogStackModeDescription[];
extern const char kMemlogStackModeNative[];
extern const char kMemlogStackModeNativeWithThreadNames[];
extern const char kMirrorBackForwardGesturesInRTLName[];
extern const char kMirrorBackForwardGesturesInRTLDescription[];
extern const char kClayBlockingDialogName[];
extern const char kClayBlockingDialogDescription[];
extern const char kEnableFencedFramesName[];
extern const char kEnableFencedFramesDescription[];
extern const char kEnableFencedFramesDeveloperModeName[];
extern const char kEnableFencedFramesDeveloperModeDescription[];
extern const char kEnableFencedFramesM120FeaturesName[];
extern const char kEnableFencedFramesM120FeaturesDescription[];
extern const char kEnableGamepadButtonAxisEventsName[];
extern const char kEnableGamepadButtonAxisEventsDescription[];
extern const char kEnableGamepadMultitouchName[];
extern const char kEnableGamepadMultitouchDescription[];
#if !BUILDFLAG(IS_ANDROID)
#if !BUILDFLAG(IS_CHROMEOS)
extern const char kEnableIsolatedWebAppsName[];
extern const char kEnableIsolatedWebAppsDescription[];
#endif // !BUILDFLAG(IS_CHROMEOS)
extern const char kDirectSocketsInServiceWorkersName[];
extern const char kDirectSocketsInServiceWorkersDescription[];
extern const char kDirectSocketsInSharedWorkersName[];
extern const char kDirectSocketsInSharedWorkersDescription[];
#if BUILDFLAG(IS_CHROMEOS)
extern const char kEnableIsolatedWebAppUnmanagedInstallName[];
extern const char kEnableIsolatedWebAppUnmanagedInstallDescription[];
extern const char kEnableIsolatedWebAppManagedGuestSessionInstallName[];
extern const char kEnableIsolatedWebAppManagedGuestSessionInstallDescription[];
#endif // BUILDFLAG(IS_CHROMEOS)
extern const char kEnableIsolatedWebAppAllowlistName[];
extern const char kEnableIsolatedWebAppAllowlistDescription[];
extern const char kEnableIsolatedWebAppDevModeName[];
extern const char kEnableIsolatedWebAppDevModeDescription[];
#if BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)
extern const char kEnableIwaKeyDistributionComponentName[];
extern const char kEnableIwaKeyDistributionComponentDescription[];
#endif // BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)
extern const char kIwaKeyDistributionComponentExpCohortName[];
extern const char kIwaKeyDistributionComponentExpCohortDescription[];
#endif // !BUILDFLAG(IS_ANDROID)
extern const char kEnableControlledFrameName[];
extern const char kEnableControlledFrameDescription[];
extern const char kEnableFingerprintingProtectionBlocklistName[];
extern const char kEnableFingerprintingProtectionBlocklistDescription[];
extern const char kEnableFingerprintingProtectionBlocklistInIncognitoName[];
extern const char
kEnableFingerprintingProtectionBlocklistInIncognitoDescription[];
extern const char kEnableCanvasNoiseName[];
extern const char kEnableCanvasNoiseDescription[];
extern const char kEnableLensStandaloneFlagId[];
extern const char kEnableLensStandaloneName[];
extern const char kEnableLensStandaloneDescription[];
extern const char kEnableManagedConfigurationWebApiName[];
extern const char kEnableManagedConfigurationWebApiDescription[];
extern const char kDownloadNotificationServiceUnifiedAPIName[];
extern const char kDownloadNotificationServiceUnifiedAPIDescription[];
extern const char kEnablePerfettoSystemTracingName[];
extern const char kEnablePerfettoSystemTracingDescription[];
extern const char kEnablePeripheralCustomizationName[];
extern const char kEnablePeripheralCustomizationDescription[];
extern const char kEnablePeripheralNotificationName[];
extern const char kEnablePeripheralNotificationDescription[];
extern const char kEnablePeripheralsLoggingName[];
extern const char kEnablePeripheralsLoggingDescription[];
extern const char kEnablePixelCanvasRecordingName[];
extern const char kEnablePixelCanvasRecordingDescription[];
extern const char kEnableProcessPerSiteUpToMainFrameThresholdName[];
extern const char kEnableProcessPerSiteUpToMainFrameThresholdDescription[];
#if BUILDFLAG(IS_CHROMEOS)
extern const char kEnablePrintingMarginsAndScale[];
extern const char kEnablePrintingMarginsAndScaleDescription[];
#endif // BUILDFLAG(IS_CHROMEOS)
extern const char kEnableSuspendStateMachineName[];
extern const char kEnableSuspendStateMachineDescription[];
extern const char kEnableInputDeviceSettingsSplitName[];
extern const char kEnableInputDeviceSettingsSplitDescription[];
extern const char kExperimentalRgbKeyboardPatternsName[];
extern const char kExperimentalRgbKeyboardPatternsDescription[];
extern const char kRetailCouponsName[];
extern const char kRetailCouponsDescription[];
extern const char kBoundaryEventDispatchTracksNodeRemovalName[];
extern const char kBoundaryEventDispatchTracksNodeRemovalDescription[];
extern const char kEnableCssSelectorFragmentAnchorName[];
extern const char kEnableCssSelectorFragmentAnchorDescription[];
extern const char kEnableImprovedGuestProfileMenuName[];
extern const char kEnableImprovedGuestProfileMenuDescription[];
#if !BUILDFLAG(IS_ANDROID)
extern const char kEnablePreferencesAccountStorageName[];
extern const char kEnablePreferencesAccountStorageDescription[];
#endif // !BUILDFLAG(IS_ANDROID)
extern const char kEnableResamplingScrollEventsExperimentalPredictionName[];
extern const char
kEnableResamplingScrollEventsExperimentalPredictionDescription[];
extern const char kEnableWebAppUpdateTokenParsingName[];
extern const char kEnableWebAppUpdateTokenParsingDescription[];
extern const char kEnableZeroCopyTabCaptureName[];
extern const char kEnableZeroCopyTabCaptureDescription[];
extern const char kExperimentalWebAssemblyFeaturesName[];
extern const char kExperimentalWebAssemblyFeaturesDescription[];
extern const char kExperimentalWebAssemblyJSPIName[];
extern const char kExperimentalWebAssemblyJSPIDescription[];
extern const char kEnableUnrestrictedUsbName[];
extern const char kEnableUnrestrictedUsbDescription[];
extern const char kEnableWasmBaselineName[];
extern const char kEnableWasmBaselineDescription[];
extern const char kEnableWasmGarbageCollectionName[];
extern const char kEnableWasmGarbageCollectionDescription[];
extern const char kEnableWasmLazyCompilationName[];
extern const char kEnableWasmLazyCompilationDescription[];
extern const char kEnableWasmRelaxedSimdName[];
extern const char kEnableWasmRelaxedSimdDescription[];
extern const char kEnableWasmStringrefName[];
extern const char kEnableWasmStringrefDescription[];
extern const char kEnableWasmTieringName[];
extern const char kEnableWasmTieringDescription[];
extern const char kExperimentalWebPlatformFeaturesName[];
extern const char kExperimentalWebPlatformFeaturesDescription[];
extern const char kSafeBrowsingLocalListsUseSBv5Name[];
extern const char kSafeBrowsingLocalListsUseSBv5Description[];
#if BUILDFLAG(ENABLE_EXTENSIONS)
extern const char kEnableWebHidInWebViewName[];
extern const char kEnableWebHidInWebViewDescription[];
extern const char kExperimentalOmniboxLabsName[];
extern const char kExperimentalOmniboxLabsDescription[];
extern const char kExtensionAiDataCollectionName[];
extern const char kExtensionAiDataCollectionDescription[];
extern const char kExtensionsCollapseMainMenuName[];
extern const char kExtensionsCollapseMainMenuDescription[];
extern const char kExtensionsMenuAccessControlName[];
extern const char kExtensionsMenuAccessControlDescription[];
extern const char kIPHExtensionsMenuFeatureName[];
extern const char kIPHExtensionsMenuFeatureDescription[];
extern const char kIPHExtensionsRequestAccessButtonFeatureName[];
extern const char kIPHExtensionsRequestAccessButtonFeatureDescription[];
extern const char kExtensionManifestV2DeprecationWarningName[];
extern const char kExtensionManifestV2DeprecationWarningDescription[];
extern const char kExtensionManifestV2DeprecationDisabledName[];
extern const char kExtensionManifestV2DeprecationDisabledDescription[];
extern const char kExtensionManifestV2DeprecationUnsupportedName[];
extern const char kExtensionManifestV2DeprecationUnsupportedDescription[];
extern const char kExtensionsToolbarZeroStateName[];
extern const char kExtensionsToolbarZeroStateDescription[];
extern const char kExtensionsToolbarZeroStateChoicesDisabled[];
extern const char kExtensionsToolbarZeroStateVistWebStore[];
extern const char kExtensionsToolbarZeroStateExploreExtensionsByCategory[];
extern const char kCWSInfoFastCheckName[];
extern const char kCWSInfoFastCheckDescription[];
extern const char kExtensionDisableUnsupportedDeveloperName[];
extern const char kExtensionDisableUnsupportedDeveloperDescription[];
extern const char kExtensionTelemetryForEnterpriseName[];
extern const char kExtensionTelemetryForEnterpriseDescription[];
#endif // ENABLE_EXTENSIONS
extern const char kExtensionsOnChromeUrlsName[];
extern const char kExtensionsOnChromeUrlsDescription[];
extern const char kFractionalScrollOffsetsName[];
extern const char kFractionalScrollOffsetsDescription[];
extern const char kFedCmAlternativeIdentifiersName[];
extern const char kFedCmAlternativeIdentifiersDescription[];
extern const char kFedCmAutofillName[];
extern const char kFedCmAutofillDescription[];
extern const char kFedCmCooldownOnIgnoreName[];
extern const char kFedCmCooldownOnIgnoreDescription[];
extern const char kFedCmDelegationName[];
extern const char kFedCmDelegationDescription[];
extern const char kFedCmIdPRegistrationName[];
extern const char kFedCmIdPRegistrationDescription[];
extern const char kFedCmIframeOriginName[];
extern const char kFedCmIframeOriginDescription[];
extern const char kFedCmLightweightModeName[];
extern const char kFedCmLightweightModeDescription[];
extern const char kFedCmMetricsEndpointName[];
extern const char kFedCmMetricsEndpointDescription[];
extern const char kFedCmMultiIdpName[];
extern const char kFedCmMultiIdpDescription[];
extern const char kFedCmQuietUiName[];
extern const char kFedCmQuietUiDescription[];
extern const char kFedCmShowFilteredAccountsName[];
extern const char kFedCmShowFilteredAccountsDescription[];
extern const char kFedCmWithoutWellKnownEnforcementName[];
extern const char kFedCmWithoutWellKnownEnforcementDescription[];
extern const char kFedCmSegmentationPlatformName[];
extern const char kFedCmSegmentationPlatformDescription[];
extern const char kWebIdentityDigitalCredentialsName[];
extern const char kWebIdentityDigitalCredentialsDescription[];
extern const char kWebIdentityDigitalCredentialsCreationName[];
extern const char kWebIdentityDigitalCredentialsCreationDescription[];
extern const char kFileHandlingIconsName[];
extern const char kFileHandlingIconsDescription[];
extern const char kFileSystemAccessPersistentPermissionUpdatedPageInfoName[];
extern const char
kFileSystemAccessPersistentPermissionUpdatedPageInfoDescription[];
extern const char kFileSystemObserverName[];
extern const char kFileSystemObserverDescription[];
extern const char kDrawImmediatelyWhenInteractiveName[];
extern const char kDrawImmediatelyWhenInteractiveDescription[];
extern const char kAckOnSurfaceActivationWhenInteractiveName[];
extern const char kAckOnSurfaceActivationWhenInteractiveDescription[];
extern const char kFluentOverlayScrollbarsName[];
extern const char kFluentOverlayScrollbarsDescription[];
extern const char kFluentScrollbarsName[];
extern const char kFluentScrollbarsDescription[];
extern const char kKeyboardFocusableScrollersName[];
extern const char kKeyboardFocusableScrollersDescription[];
extern const char kFillOnAccountSelectName[];
extern const char kFillOnAccountSelectDescription[];
extern const char kForceTextDirectionName[];
extern const char kForceTextDirectionDescription[];
extern const char kForceDirectionLtr[];
extern const char kForceDirectionRtl[];
extern const char kForceUiDirectionName[];
extern const char kForceUiDirectionDescription[];
extern const char kMediaRemotingWithoutFullscreenName[];
extern const char kMediaRemotingWithoutFullscreenDescription[];
extern const char kRemotePlaybackBackendName[];
extern const char kRemotePlaybackBackendDescription[];
#if !BUILDFLAG(IS_CHROMEOS)
extern const char kGlobalMediaControlsUpdatedUIName[];
extern const char kGlobalMediaControlsUpdatedUIDescription[];
#endif // !BUILDFLAG(IS_CHROMEOS)
extern const char kGoogleOneOfferFilesBannerName[];
extern const char kGoogleOneOfferFilesBannerDescription[];
extern const char kObservableAPIName[];
extern const char kObservableAPIDescription[];
extern const char kCastMessageLoggingName[];
extern const char kCastMessageLoggingDescription[];
extern const char kCastStreamingAv1Name[];
extern const char kCastStreamingAv1Description[];
extern const char kCastStreamingHardwareH264Name[];
extern const char kCastStreamingHardwareH264Description[];
extern const char kCastStreamingHardwareHevcName[];
extern const char kCastStreamingHardwareHevcDescription[];
extern const char kCastStreamingHardwareVp8Name[];
extern const char kCastStreamingHardwareVp8Description[];
extern const char kCastStreamingHardwareVp9Name[];
extern const char kCastStreamingHardwareVp9Description[];
extern const char kCastStreamingMediaVideoEncoderName[];
extern const char kCastStreamingMediaVideoEncoderDescription[];
extern const char kCastStreamingPerformanceOverlayName[];
extern const char kCastStreamingPerformanceOverlayDescription[];
extern const char kCastStreamingVp8Name[];
extern const char kCastStreamingVp8Description[];
extern const char kCastStreamingVp9Name[];
extern const char kCastStreamingVp9Description[];
#if BUILDFLAG(IS_MAC)
extern const char kCastStreamingMacHardwareH264Name[];
extern const char kCastStreamingMacHardwareH264Description[];
extern const char kUseNetworkFrameworkForLocalDiscoveryName[];
extern const char kUseNetworkFrameworkForLocalDiscoveryDescription[];
#endif
#if BUILDFLAG(IS_WIN)
extern const char kCastStreamingWinHardwareH264Name[];
extern const char kCastStreamingWinHardwareH264Description[];
#endif
extern const char kCastEnableStreamingWithHiDPIName[];
extern const char kCastEnableStreamingWithHiDPIDescription[];
extern const char kChromeWebStoreNavigationThrottleName[];
extern const char kChromeWebStoreNavigationThrottleDescription[];
extern const char kContextualPageActionsName[];
extern const char kContextualPageActionsDescription[];
extern const char kContextualPageActionsPriceTrackingName[];
extern const char kContextualPageActionsPriceTrackingDescription[];
extern const char kContextualPageActionsReaderModeName[];
extern const char kContextualPageActionsReaderModeDescription[];
extern const char kContextualPageActionsShareModelName[];
extern const char kContextualPageActionsShareModelDescription[];
#if BUILDFLAG(IS_CHROMEOS)
extern const char kFlexFirmwareUpdateName[];
extern const char kFlexFirmwareUpdateDescription[];
#endif
extern const char kGpuRasterizationName[];
extern const char kGpuRasterizationDescription[];
extern const char kHappyEyeballsV3Name[];
extern const char kHappyEyeballsV3Description[];
extern const char kHardwareMediaKeyHandling[];
extern const char kHardwareMediaKeyHandlingDescription[];
extern const char kHeadlessTabModelName[];
extern const char kHeadlessTabModelDescription[];
extern const char kHeavyAdPrivacyMitigationsName[];
extern const char kHeavyAdPrivacyMitigationsDescription[];
extern const char kTabAudioMutingName[];
extern const char kTabAudioMutingDescription[];
extern const char kCrasProcessorWavDumpName[];
extern const char kCrasProcessorWavDumpDescription[];
extern const char kPwaRestoreBackendName[];
extern const char kPwaRestoreBackendDescription[];
extern const char kPwaRestoreUiName[];
extern const char kPwaRestoreUiDescription[];
extern const char kPwaRestoreUiAtStartupName[];
extern const char kPwaRestoreUiAtStartupDescription[];
extern const char kStartSurfaceReturnTimeName[];
extern const char kStartSurfaceReturnTimeDescription[];
extern const char kHistoryEmbeddingsName[];
extern const char kHistoryEmbeddingsDescription[];
extern const char kHistoryEmbeddingsAnswersName[];
extern const char kHistoryEmbeddingsAnswersDescription[];
extern const char kHttpsFirstBalancedModeName[];
extern const char kHttpsFirstBalancedModeDescription[];
extern const char kHttpsFirstDialogUiName[];
extern const char kHttpsFirstDialogUiDescription[];
extern const char kHttpsFirstModeIncognitoName[];
extern const char kHttpsFirstModeIncognitoDescription[];
extern const char kHttpsFirstModeIncognitoNewSettingsName[];
extern const char kHttpsFirstModeIncognitoNewSettingsDescription[];
extern const char kHttpsFirstModeV2ForEngagedSitesName[];
extern const char kHttpsFirstModeV2ForEngagedSitesDescription[];
extern const char kHttpsFirstModeForTypicallySecureUsersName[];
extern const char kHttpsFirstModeForTypicallySecureUsersDescription[];
extern const char kHttpsUpgradesName[];
extern const char kHttpsUpgradesDescription[];
extern const char kIgnoreGpuBlocklistName[];
extern const char kIgnoreGpuBlocklistDescription[];
extern const char kIncrementLocalSurfaceIdForMainframeSameDocNavigationName[];
extern const char
kIncrementLocalSurfaceIdForMainframeSameDocNavigationDescription[];
extern const char kIncognitoScreenshotName[];
extern const char kIncognitoScreenshotDescription[];
extern const char kInstanceSwitcherV2Name[];
extern const char kInstanceSwitcherV2Description[];
extern const char kInProductHelpDemoModeChoiceName[];
extern const char kInProductHelpDemoModeChoiceDescription[];
extern const char kInProductHelpSnoozeName[];
extern const char kInProductHelpSnoozeDescription[];
#if BUILDFLAG(IS_ANDROID)
extern const char kInputOnVizName[];
extern const char kInputOnVizDescription[];
#endif
#if !BUILDFLAG(IS_ANDROID)
extern const char kUserEducationExperienceVersion2Name[];
extern const char kUserEducationExperienceVersion2Description[];
#endif
extern const char kInstallIsolatedWebAppFromUrl[];
extern const char kInstallIsolatedWebAppFromUrlDescription[];
extern const char kInstantHotspotRebrandName[];
extern const char kInstantHotspotRebrandDescription[];
extern const char kInstantHotspotOnNearbyName[];
extern const char kInstantHotspotOnNearbyDescription[];
extern const char kIndexedDBDefaultDurabilityRelaxed[];
extern const char kIndexedDBDefaultDurabilityRelaxedDescription[];
extern const char kIpProtectionProxyOptOutName[];
extern const char kIpProtectionProxyOptOutDescription[];
extern const char kIpProtectionProxyOptOutChoiceDefault[];
extern const char kIpProtectionProxyOptOutChoiceOptOut[];
extern const char kInvalidateSearchEngineChoiceOnDeviceRestoreDetectionName[];
extern const char
kInvalidateSearchEngineChoiceOnDeviceRestoreDetectionDescription[];
extern const char kAutomaticFullscreenContentSettingName[];
extern const char kAutomaticFullscreenContentSettingDescription[];
extern const char kJapaneseOSSettingsName[];
extern const char kJapaneseOSSettingsDescription[];
extern const char kJavascriptHarmonyName[];
extern const char kJavascriptHarmonyDescription[];
extern const char kJavascriptHarmonyShippingName[];
extern const char kJavascriptHarmonyShippingDescription[];
extern const char kJourneysName[];
extern const char kJourneysDescription[];
extern const char kJumpStartOmniboxName[];
extern const char kJumpStartOmniboxDescription[];
extern const char kExtractRelatedSearchesFromPrefetchedZPSResponseName[];
extern const char kExtractRelatedSearchesFromPrefetchedZPSResponseDescription[];
extern const char kLanguageDetectionAPIName[];
extern const char kLanguageDetectionAPIDescription[];
extern const char kLegacyTechReportTopLevelUrlName[];
extern const char kLegacyTechReportTopLevelUrlDescription[];
extern const char kLensOverlayName[];
extern const char kLensOverlayDescription[];
extern const char kLensOverlayImageContextMenuActionsName[];
extern const char kLensOverlayImageContextMenuActionsDescription[];
extern const char kLensOverlayOmniboxEntryPointName[];
extern const char kLensOverlayOmniboxEntryPointDescription[];
extern const char kLensOverlaySidePanelOpenInNewTabName[];
extern const char kLensOverlaySidePanelOpenInNewTabDescription[];
extern const char kLensOverlaySimplifiedSelectionName[];
extern const char kLensOverlaySimplifiedSelectionDescription[];
extern const char kLensOverlayTranslateButtonName[];
extern const char kLensOverlayTranslateButtonDescription[];
extern const char kLensOverlayTranslateLanguagesName[];
extern const char kLensOverlayTranslateLanguagesDescription[];
extern const char kLensOverlayLatencyOptimizationsName[];
extern const char kLensOverlayLatencyOptimizationsDescription[];
extern const char kLensImageFormatOptimizationsName[];
extern const char kLensImageFormatOptimizationsDescription[];
extern const char kLensSearchSidePanelNewFeedbackName[];
extern const char kLensSearchSidePanelNewFeedbackDescription[];
extern const char kLinkedServicesSettingName[];
extern const char kLinkedServicesSettingDescription[];
extern const char kLensOnQuickActionSearchWidgetName[];
extern const char kLensOnQuickActionSearchWidgetDescription[];
extern const char kLocationBarModelOptimizationsName[];
extern const char kLocationBarModelOptimizationsDescription[];
extern const char kLogJsConsoleMessagesName[];
extern const char kLogJsConsoleMessagesDescription[];
#if BUILDFLAG(IS_ANDROID)
extern const char kLoginDbDeprecationAndroidName[];
extern const char kLoginDbDeprecationAndroidDescription[];
#endif // BUILDFLAG(IS_ANDROID)
#if BUILDFLAG(IS_CHROMEOS)
extern const char kMantisFeatureKeyName[];
extern const char kMantisFeatureKeyDescription[];
#endif // IS_CHROMEOS
extern const char kMediaRouterCastAllowAllIPsName[];
extern const char kMediaRouterCastAllowAllIPsDescription[];
extern const char kMojoLinuxChannelSharedMemName[];
extern const char kMojoLinuxChannelSharedMemDescription[];
#if BUILDFLAG(IS_ANDROID)
extern const char kMostVisitedTilesCustomizationName[];
extern const char kMostVisitedTilesCustomizationDescription[];
#endif // BUILDFLAG(IS_ANDROID)
extern const char kMostVisitedTilesNewScoringName[];
extern const char kMostVisitedTilesNewScoringDescription[];
extern const char kMostVisitedTilesReselectName[];
extern const char kMostVisitedTilesReselectDescription[];
extern const char kMostVisitedTilesVisualDeduplicationName[];
extern const char kMostVisitedTilesVisualDeduplicationDescription[];
extern const char kCanvas2DLayersName[];
extern const char kCanvas2DLayersDescription[];
extern const char kWebMachineLearningNeuralNetworkName[];
extern const char kWebMachineLearningNeuralNetworkDescription[];
extern const char kExperimentalWebMachineLearningNeuralNetworkName[];
extern const char kExperimentalWebMachineLearningNeuralNetworkDescription[];
#if BUILDFLAG(IS_MAC)
extern const char kWebNNCoreMLName[];
extern const char kWebNNCoreMLDescription[];
#endif // BUILDFLAG(IS_MAC)
#if BUILDFLAG(IS_WIN)
extern const char kWebNNDirectMLName[];
extern const char kWebNNDirectMLDescription[];
extern const char kWebNNOnnxRuntimeName[];
extern const char kWebNNOnnxRuntimeDescription[];
#endif // BUILDFLAG(IS_WIN)
#if BUILDFLAG(IS_ANDROID)
extern const char kNewEtc1EncoderName[];
extern const char kNewEtc1EncoderDescription[];
#endif
extern const char kNotebookLmAppPreinstallName[];
extern const char kNotebookLmAppPreinstallDescription[];
extern const char kNotebookLmAppShelfPinName[];
extern const char kNotebookLmAppShelfPinDescription[];
extern const char kNotebookLmAppShelfPinResetName[];
extern const char kNotebookLmAppShelfPinResetDescription[];
extern const char kNotificationSchedulerName[];
extern const char kNotificationSchedulerDescription[];
extern const char kNotificationSchedulerDebugOptionName[];
extern const char kNotificationSchedulerDebugOptionDescription[];
extern const char kNotificationSchedulerImmediateBackgroundTaskDescription[];
extern const char kNotificationsSystemFlagName[];
extern const char kNotificationsSystemFlagDescription[];
extern const char kOrganicRepeatableQueriesName[];
extern const char kOrganicRepeatableQueriesDescription[];
extern const char kOriginAgentClusterDefaultName[];
extern const char kOriginAgentClusterDefaultDescription[];
extern const char kOriginKeyedProcessesByDefaultName[];
extern const char kOriginKeyedProcessesByDefaultDescription[];
extern const char kOmitCorsClientCertName[];
extern const char kOmitCorsClientCertDescription[];
extern const char kOmniboxAdaptiveSuggestionsCountName[];
extern const char kOmniboxAdaptiveSuggestionsCountDescription[];
extern const char kOmniboxAdjustIndentationName[];
extern const char kOmniboxAdjustIndentationDescription[];
extern const char kOmniboxAnswerActionsName[];
extern const char kOmniboxAnswerActionsDescription[];
extern const char kOmniboxAsyncViewInflationName[];
extern const char kOmniboxAsyncViewInflationDescription[];
extern const char kOmniboxCalcProviderName[];
extern const char kOmniboxCalcProviderDescription[];
extern const char kOmniboxConsumesImeInsetsName[];
extern const char kOmniboxConsumesImeInsetsDescription[];
extern const char kOmniboxDiagnosticsName[];
extern const char kOmniboxDiagnosticsDescription[];
extern const char kOmniboxDomainSuggestionsName[];
extern const char kOmniboxDomainSuggestionsDescription[];
extern const char kOmniboxForceAllowedToBeDefaultName[];
extern const char kOmniboxForceAllowedToBeDefaultDescription[];
extern const char kOmniboxGroupingFrameworkNonZPSName[];
extern const char kOmniboxGroupingFrameworkZPSName[];
extern const char kOmniboxGroupingFrameworkDescription[];
extern const char kOmniboxMiaZps[];
extern const char kOmniboxMiaZpsDescription[];
extern const char kOmniboxMlLogUrlScoringSignalsName[];
extern const char kOmniboxMlLogUrlScoringSignalsDescription[];
extern const char kOmniboxMlUrlPiecewiseMappedSearchBlendingName[];
extern const char kOmniboxMlUrlPiecewiseMappedSearchBlendingDescription[];
extern const char kOmniboxMlUrlScoreCachingName[];
extern const char kOmniboxMlUrlScoreCachingDescription[];
extern const char kOmniboxMlUrlScoringName[];
extern const char kOmniboxMlUrlScoringDescription[];
extern const char kOmniboxMlUrlScoringModelName[];
extern const char kOmniboxMlUrlScoringModelDescription[];
extern const char kOmniboxMlUrlSearchBlendingName[];
extern const char kOmniboxMlUrlSearchBlendingDescription[];
extern const char kOmniboxMobileParityUpdateName[];
extern const char kOmniboxMobileParityUpdateDescription[];
extern const char kOmniboxMostVisitedTilesHorizontalRenderGroupName[];
extern const char kOmniboxMostVisitedTilesHorizontalRenderGroupDescription[];
extern const char kOmniboxMostVisitedTilesTitleWrapAroundName[];
extern const char kOmniboxMostVisitedTilesTitleWrapAroundDescription[];
extern const char kOmniboxNumNtpZpsRecentSearchesName[];
extern const char kOmniboxNumNtpZpsRecentSearchesDescription[];
extern const char kOmniboxNumNtpZpsTrendingSearchesName[];
extern const char kOmniboxNumNtpZpsTrendingSearchesDescription[];
extern const char kOmniboxNumWebZpsRecentSearchesName[];
extern const char kOmniboxNumWebZpsRecentSearchesDescription[];
extern const char kOmniboxNumWebZpsRelatedSearchesName[];
extern const char kOmniboxNumWebZpsRelatedSearchesDescription[];
extern const char kOmniboxNumWebZpsMostVisitedUrlsName[];
extern const char kOmniboxNumWebZpsMostVisitedUrlsDescription[];
extern const char kOmniboxNumSrpZpsRecentSearchesName[];
extern const char kOmniboxNumSrpZpsRecentSearchesDescription[];
extern const char kOmniboxNumSrpZpsRelatedSearchesName[];
extern const char kOmniboxNumSrpZpsRelatedSearchesDescription[];
extern const char kOmniboxOnDeviceHeadSuggestionsName[];
extern const char kOmniboxOnDeviceHeadSuggestionsDescription[];
extern const char kOmniboxOnDeviceHeadSuggestionsIncognitoName[];
extern const char kOmniboxOnDeviceHeadSuggestionsIncognitoDescription[];
extern const char kOmniboxOnDeviceTailSuggestionsName[];
extern const char kOmniboxOnDeviceTailSuggestionsDescription[];
extern const char kOmniboxSuppressClipboardSuggestionAfterFirstUsedName[];
extern const char
kOmniboxSuppressClipboardSuggestionAfterFirstUsedDescription[];
extern const char kOmniboxRichAutocompletionPromisingName[];
extern const char kOmniboxRichAutocompletionPromisingDescription[];
extern const char kOmniboxLocalHistoryZeroSuggestBeyondNTPName[];
extern const char kOmniboxLocalHistoryZeroSuggestBeyondNTPDescription[];
extern const char kOmniboxSuggestionAnswerMigrationName[];
extern const char kOmniboxSuggestionAnswerMigrationDescription[];
extern const char kOmniboxShortcutBoostName[];
extern const char kOmniboxShortcutBoostDescription[];
extern const char kOmniboxShortcutExpandingName[];
extern const char kOmniboxShortcutExpandingDescription[];
extern const char kOmniboxStarterPackExpansionName[];
extern const char kOmniboxStarterPackExpansionDescription[];
extern const char kOmniboxStarterPackIPHName[];
extern const char kOmniboxStarterPackIPHDescription[];
extern const char kOmniboxSearchAggregatorName[];
extern const char kOmniboxSearchAggregatorDescription[];
extern const char kContextualSearchBoxUsesContextualSearchProviderName[];
extern const char kContextualSearchBoxUsesContextualSearchProviderDescription[];
extern const char kContextualSearchOpenLensActionUsesThumbnailName[];
extern const char kContextualSearchOpenLensActionUsesThumbnailDescription[];
extern const char kContextualSuggestionsAblateOthersWhenPresentName[];
extern const char kContextualSuggestionsAblateOthersWhenPresentDescription[];
extern const char kOmniboxContextualSearchOnFocusSuggestionsName[];
extern const char kOmniboxContextualSearchOnFocusSuggestionsDescription[];
extern const char kOmniboxContextualSuggestionsName[];
extern const char kOmniboxContextualSuggestionsDescription[];
extern const char kOmniboxFocusTriggersWebAndSRPZeroSuggestName[];
extern const char kOmniboxFocusTriggersWebAndSRPZeroSuggestDescription[];
extern const char kOmniboxShowPopupOnMouseReleasedName[];
extern const char kOmniboxShowPopupOnMouseReleasedDescription[];
extern const char kOmniboxHideSuggestionGroupHeadersName[];
extern const char kOmniboxHideSuggestionGroupHeadersDescription[];
extern const char kOmniboxUrlSuggestionsOnFocus[];
extern const char kOmniboxUrlSuggestionsOnFocusDecription[];
extern const char kOmniboxZeroSuggestPrefetchDebouncingName[];
extern const char kOmniboxZeroSuggestPrefetchDebouncingDescription[];
extern const char kOmniboxZeroSuggestPrefetchingName[];
extern const char kOmniboxZeroSuggestPrefetchingDescription[];
extern const char kOmniboxZeroSuggestPrefetchingOnSRPName[];
extern const char kOmniboxZeroSuggestPrefetchingOnSRPDescription[];
extern const char kOmniboxZeroSuggestPrefetchingOnWebName[];
extern const char kOmniboxZeroSuggestPrefetchingOnWebDescription[];
extern const char kOmniboxZeroSuggestInMemoryCachingName[];
extern const char kOmniboxZeroSuggestInMemoryCachingDescription[];
extern const char kOmniboxMaxZeroSuggestMatchesName[];
extern const char kOmniboxMaxZeroSuggestMatchesDescription[];
extern const char kOmniboxZpsSuggestionLimit[];
extern const char kOmniboxZpsSuggestionLimitDescription[];
extern const char kOmniboxUIMaxAutocompleteMatchesName[];
extern const char kOmniboxUIMaxAutocompleteMatchesDescription[];
extern const char kWebUIOmniboxPopupName[];
extern const char kWebUIOmniboxPopupDescription[];
extern const char kOmniboxMaxURLMatchesName[];
extern const char kOmniboxMaxURLMatchesDescription[];
extern const char kOmniboxDynamicMaxAutocompleteName[];
extern const char kOmniboxDynamicMaxAutocompleteDescription[];
extern const char kOnDeviceNotificationContentDetectionModelName[];
extern const char kOnDeviceNotificationContentDetectionModelDescription[];
extern const char kOptimizationGuideDebugLogsName[];
extern const char kOptimizationGuideDebugLogsDescription[];
extern const char kOptimizationGuideModelExecutionName[];
extern const char kOptimizationGuideModelExecutionDescription[];
extern const char kOptimizationGuideEnableDogfoodLoggingName[];
extern const char kOptimizationGuideEnableDogfoodLoggingDescription[];
extern const char kOptimizationGuideOnDeviceModelName[];
extern const char kOptimizationGuideOnDeviceModelDescription[];
extern const char kOptimizationGuidePersonalizedFetchingName[];
extern const char kOptimizationGuidePersonalizedFetchingDescription[];
extern const char kOptimizationGuidePushNotificationName[];
extern const char kOptimizationGuidePushNotificationDescription[];
extern const char kOrcaKeyName[];
extern const char kOrcaKeyDescription[];
extern const char kOsFeedbackDialogName[];
extern const char kOsFeedbackDialogDescription[];
extern const char kOverlayScrollbarsName[];
extern const char kOverlayScrollbarsDescription[];
extern const char kOverlayStrategiesName[];
extern const char kOverlayStrategiesDescription[];
extern const char kOverlayStrategiesDefault[];
extern const char kOverlayStrategiesNone[];
extern const char kOverlayStrategiesUnoccludedFullscreen[];
extern const char kOverlayStrategiesUnoccluded[];
extern const char kOverlayStrategiesOccludedAndUnoccluded[];
extern const char kOverscrollHistoryNavigationName[];
extern const char kOverscrollHistoryNavigationDescription[];
extern const char kPageActionsMigrationName[];
extern const char kPageActionsMigrationDescription[];
extern const char kPageContentAnnotationsName[];
extern const char kPageContentAnnotationsDescription[];
extern const char kPageEmbeddedPermissionControlName[];
extern const char kPageEmbeddedPermissionControlDescription[];
extern const char kPageContentAnnotationsPersistSalientImageMetadataName[];
extern const char
kPageContentAnnotationsPersistSalientImageMetadataDescription[];
extern const char kPageContentAnnotationsRemotePageMetadataName[];
extern const char kPageContentAnnotationsRemotePageMetadataDescription[];
extern const char kPageImageServiceOptimizationGuideSalientImagesName[];
extern const char kPageImageServiceOptimizationGuideSalientImagesDescription[];
extern const char kPageImageServiceSuggestPoweredImagesName[];
extern const char kPageImageServiceSuggestPoweredImagesDescription[];
extern const char kPageInfoAboutThisPagePersistentEntryName[];
extern const char kPageInfoAboutThisPagePersistentEntryDescription[];
extern const char kPageInfoCookiesSubpageName[];
extern const char kPageInfoCookiesSubpageDescription[];
extern const char kPageInfoHideSiteSettingsName[];
extern const char kPageInfoHideSiteSettingsDescription[];
extern const char kPageInfoHistoryDesktopName[];
extern const char kPageInfoHistoryDesktopDescription[];
extern const char kPageVisibilityPageContentAnnotationsName[];
extern const char kPageVisibilityPageContentAnnotationsDescription[];
extern const char kParallelDownloadingName[];
extern const char kParallelDownloadingDescription[];
extern const char kPartitionAllocMemoryTaggingName[];
extern const char kPartitionAllocMemoryTaggingDescription[];
extern const char kPartitionAllocWithAdvancedChecksName[];
extern const char kPartitionAllocWithAdvancedChecksDescription[];
extern const char kPartitionVisitedLinkDatabaseName[];
extern const char kPartitionVisitedLinkDatabaseDescription[];
extern const char kPartitionVisitedLinkDatabaseWithSelfLinksName[];
extern const char kPartitionVisitedLinkDatabaseWithSelfLinksDescription[];
extern const char kPartitionedPopinsName[];
extern const char kPartitionedPopinsDescription[];
extern const char kPasswordFormClientsideClassifierName[];
extern const char kPasswordFormClientsideClassifierDescription[];
extern const char kPasswordFormGroupedAffiliationsName[];
extern const char kPasswordFormGroupedAffiliationsDescription[];
extern const char kPasswordManagerShowSuggestionsOnAutofocusName[];
extern const char kPasswordManagerShowSuggestionsOnAutofocusDescription[];
extern const char kPasswordManualFallbackAvailableName[];
extern const char kPasswordManualFallbackAvailableDescription[];
extern const char kPasswordParsingOnSaveUsesPredictionsName[];
extern const char kPasswordParsingOnSaveUsesPredictionsDescription[];
extern const char kPdfSearchifyName[];
extern const char kPdfSearchifyDescription[];
extern const char kPdfXfaFormsName[];
extern const char kPdfXfaFormsDescription[];
extern const char kAutoWebContentsDarkModeName[];
extern const char kAutoWebContentsDarkModeDescription[];
extern const char kForcedColorsName[];
extern const char kForcedColorsDescription[];
extern const char kLeftHandSideActivityIndicatorsName[];
extern const char kLeftHandSideActivityIndicatorsDescription[];
#if !BUILDFLAG(IS_ANDROID)
extern const char kMerchantTrustName[];
extern const char kMerchantTrustDescription[];
extern const char kPrivacyPolicyInsightsName[];
extern const char kPrivacyPolicyInsightsDescription[];
#endif
#if BUILDFLAG(IS_CHROMEOS)
extern const char kCrosSystemLevelPermissionBlockedWarningsName[];
extern const char kCrosSystemLevelPermissionBlockedWarningsDescription[];
#endif
extern const char kPerformanceInterventionUiName[];
extern const char kPerformanceInterventionUiDescription[];
extern const char kPerformanceInterventionDemoModeName[];
extern const char kPerformanceInterventionDemoModeDescription[];
extern const char kPermissionsAIv1Name[];
extern const char kPermissionsAIv1Description[];
extern const char kPermissionsAIv3Name[];
extern const char kPermissionsAIv3Description[];
extern const char kPermissionsAIv3GeolocationName[];
extern const char kPermissionsAIv3GeolocationDescription[];
extern const char kPermissionSiteSettingsRadioButtonName[];
extern const char kPermissionSiteSettingsRadioButtonDescription[];
extern const char kReportNotificationContentDetectionDataName[];
extern const char kReportNotificationContentDetectionDataDescription[];
extern const char kShowRelatedWebsiteSetsPermissionGrantsName[];
extern const char kShowRelatedWebsiteSetsPermissionGrantsDescription[];
extern const char kShowWarningsForSuspiciousNotificationsName[];
extern const char kShowWarningsForSuspiciousNotificationsDescription[];
extern const char kPowerBookmarkBackendName[];
extern const char kPowerBookmarkBackendDescription[];
extern const char kSpeculationRulesPrerenderingTargetHintName[];
extern const char kSpeculationRulesPrerenderingTargetHintDescription[];
extern const char kSubframeProcessReuseThresholds[];
extern const char kSubframeProcessReuseThresholdsDescription[];
extern const char kPrerender2EarlyDocumentLifecycleUpdateName[];
extern const char kPrerender2EarlyDocumentLifecycleUpdateDescription[];
extern const char kTreesInVizName[];
extern const char kTreesInVizDescription[];
extern const char kPrerender2ForNewTabPageAndroidName[];
extern const char kPrerender2ForNewTabPageAndroidDescription[];
extern const char kEnableOmniboxSearchPrefetchName[];
extern const char kEnableOmniboxSearchPrefetchDescription[];
extern const char kEnableOmniboxClientSearchPrefetchName[];
extern const char kEnableOmniboxClientSearchPrefetchDescription[];
extern const char kPreinstalledWebAppAlwaysMigrateCalculatorName[];
extern const char kPreinstalledWebAppAlwaysMigrateCalculatorDescription[];
extern const char kPreloadingOnPerformancePageName[];
extern const char kPreloadingOnPerformancePageDescription[];
extern const char kPrerender2Name[];
extern const char kPrerender2Description[];
extern const char kPriceChangeModuleName[];
extern const char kPriceChangeModuleDescription[];
extern const char kPrivacySandboxAdTopicsContentParityName[];
extern const char kPrivacySandboxAdTopicsContentParityDescription[];
extern const char kPrivacySandboxAdsApiUxEnhancementsName[];
extern const char kPrivacySandboxAdsApiUxEnhancementsDescription[];
extern const char kPrivacySandboxEnrollmentOverridesName[];
extern const char kPrivacySandboxEnrollmentOverridesDescription[];
extern const char kPrivacySandboxEqualizedPromptButtonsName[];
extern const char kPrivacySandboxEqualizedPromptButtonsDescription[];
extern const char kPrivacySandboxInternalsName[];
extern const char kPrivacySandboxInternalsDescription[];
extern const char kProtectedAudiencesConsentedDebugTokenName[];
extern const char kProtectedAudiencesConsentedDebugTokenDescription[];
extern const char kPullToRefreshName[];
extern const char kPullToRefreshDescription[];
extern const char kPullToRefreshEnabledTouchscreen[];
extern const char kPwaUpdateDialogForAppIconName[];
extern const char kPwaUpdateDialogForAppIconDescription[];
extern const char kRenderDocumentName[];
extern const char kRenderDocumentDescription[];
extern const char kRendererSideContentDecodingName[];
extern const char kRendererSideContentDecodingDescription[];
extern const char kDeviceBoundSessionAccessObserverSharedRemoteName[];
extern const char kDeviceBoundSessionAccessObserverSharedRemoteDescription[];
#if BUILDFLAG(SKIA_BUILD_RUST_PNG)
extern const char kRustyPngName[];
extern const char kRustyPngDescription[];
#endif
extern const char kQuicName[];
extern const char kQuicDescription[];
extern const char kQuickAppAccessTestUIName[];
extern const char kQuickAppAccessTestUIDescription[];
extern const char kQuickDimName[];
extern const char kQuickDimDescription[];
extern const char kQuickDeleteAndroidSurveyName[];
extern const char kQuickDeleteAndroidSurveyDescription[];
extern const char kQuickShareV2Name[];
extern const char kQuickShareV2Description[];
extern const char kSendTabToSelfIOSPushNotificationsName[];
extern const char kSendTabToSelfIOSPushNotificationsDescription[];
#if BUILDFLAG(IS_ANDROID)
extern const char kSensitiveContentName[];
extern const char kSensitiveContentDescription[];
extern const char kSensitiveContentWhileSwitchingTabsName[];
extern const char kSensitiveContentWhileSwitchingTabsDescription[];
#endif // BUILDFLAG(IS_ANDROID)
extern const char kSettingsAppNotificationSettingsName[];
extern const char kSettingsAppNotificationSettingsDescription[];
extern const char kSyncPointGraphValidationName[];
extern const char kSyncPointGraphValidationDescription[];
extern const char kReadLaterFlagId[];
extern const char kReadLaterName[];
extern const char kReadLaterDescription[];
extern const char kRecordWebAppDebugInfoName[];
extern const char kRecordWebAppDebugInfoDescription[];
#if BUILDFLAG(IS_MAC)
extern const char kReduceIPAddressChangeNotificationName[];
extern const char kReduceIPAddressChangeNotificationDescription[];
#endif // BUILDFLAG(IS_MAC)
#if BUILDFLAG(IS_ANDROID)
extern const char kReplaceSyncPromosWithSignInPromosName[];
extern const char kReplaceSyncPromosWithSignInPromosDescription[];
#endif // BUILDFLAG(IS_ANDROID)
#if BUILDFLAG(IS_ANDROID)
extern const char kRetainOmniboxOnFocusName[];
extern const char kRetainOmniboxOnFocusDescription[];
#endif // BUILDFLAG(IS_ANDROID)
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX)
extern const char kRootScrollbarFollowsTheme[];
extern const char kRootScrollbarFollowsThemeDescription[];
#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX)
extern const char kRoundedWindows[];
extern const char kRoundedWindowsDescription[];
extern const char kRubyShortHeuristicsName[];
extern const char kRubyShortHeuristicsDescription[];
extern const char kMBIModeName[];
extern const char kMBIModeDescription[];
extern const char kSafetyCheckUnusedSitePermissionsName[];
extern const char kSafetyCheckUnusedSitePermissionsDescription[];
extern const char kSafetyHubName[];
extern const char kSafetyHubDescription[];
#if BUILDFLAG(IS_ANDROID)
extern const char kSafetyHubMagicStackName[];
extern const char kSafetyHubMagicStackDescription[];
extern const char kSafetyHubFollowupName[];
extern const char kSafetyHubFollowupDescription[];
extern const char kSafetyHubLocalPasswordsModuleName[];
extern const char kSafetyHubLocalPasswordsModuleDescription[];
extern const char kSafetyHubUnifiedPasswordsModuleName[];
extern const char kSafetyHubUnifiedPasswordsModuleDescription[];
extern const char kSafetyHubAndroidSurveyName[];
extern const char kSafetyHubAndroidSurveyDescription[];
extern const char kSafetyHubAndroidSurveyV2Name[];
extern const char kSafetyHubAndroidSurveyV2Description[];
extern const char kSafetyHubWeakAndReusedPasswordsName[];
extern const char kSafetyHubWeakAndReusedPasswordsDescription[];
#else
extern const char kSafetyHubHaTSOneOffSurveyName[];
extern const char kSafetyHubHaTSOneOffSurveyDescription[];
#endif // BUILDFLAG(IS_ANDROID)
extern const char kSafetyHubAbusiveNotificationRevocationName[];
extern const char kSafetyHubAbusiveNotificationRevocationDescription[];
#if !BUILDFLAG(IS_ANDROID)
extern const char kSafetyHubServicesOnStartUpName[];
extern const char kSafetyHubServicesOnStartUpDescription[];
#endif // !BUILDFLAG(IS_ANDROID)
extern const char kSameAppWindowCycleName[];
extern const char kSameAppWindowCycleDescription[];
extern const char kTestThirdPartyCookiePhaseoutName[];
extern const char kTestThirdPartyCookiePhaseoutDescription[];
extern const char kScrollableTabStripFlagId[];
extern const char kScrollableTabStripName[];
extern const char kScrollableTabStripDescription[];
extern const char kTabstripComboButtonFlagId[];
extern const char kTabstripComboButtonName[];
extern const char kTabstripComboButtonDescription[];
extern const char kLaunchedTabSearchToolbarName[];
extern const char kLaunchedTabSearchToolbarDescription[];
extern const char kTabScrollingButtonPositionFlagId[];
extern const char kTabScrollingButtonPositionName[];
extern const char kTabScrollingButtonPositionDescription[];
extern const char kScrollableTabStripWithDraggingFlagId[];
extern const char kScrollableTabStripWithDraggingName[];
extern const char kScrollableTabStripWithDraggingDescription[];
extern const char kScrollableTabStripOverflowFlagId[];
extern const char kScrollableTabStripOverflowName[];
extern const char kScrollableTabStripOverflowDescription[];
extern const char kSplitTabStripName[];
extern const char kSplitTabStripDescription[];
extern const char kDynamicSearchUpdateAnimationName[];
extern const char kDynamicSearchUpdateAnimationDescription[];
extern const char kSecurePaymentConfirmationAvailabilityAPIName[];
extern const char kSecurePaymentConfirmationAvailabilityAPIDescription[];
extern const char kSecurePaymentConfirmationBrowserBoundKeysName[];
extern const char kSecurePaymentConfirmationBrowserBoundKeysDescription[];
extern const char kSecurePaymentConfirmationDebugName[];
extern const char kSecurePaymentConfirmationDebugDescription[];
extern const char kSecurePaymentConfirmationFallbackName[];
extern const char kSecurePaymentConfirmationFallbackDescription[];
extern const char kSecurePaymentConfirmationNetworkAndIssuerIconsName[];
extern const char kSecurePaymentConfirmationNetworkAndIssuerIconsDescription[];
extern const char kSecurePaymentConfirmationUxRefreshName[];
extern const char kSecurePaymentConfirmationUxRefreshDescription[];
extern const char kSegmentationSurveyPageName[];
extern const char kSegmentationSurveyPageDescription[];
extern const char kServiceWorkerAutoPreloadName[];
extern const char kServiceWorkerAutoPreloadDescription[];
extern const char kSharingDesktopScreenshotsName[];
extern const char kSharingDesktopScreenshotsDescription[];
extern const char kShowAutofillSignaturesName[];
extern const char kShowAutofillSignaturesDescription[];
extern const char kShowAutofillTypePredictionsName[];
extern const char kShowAutofillTypePredictionsDescription[];
extern const char kShowPerformanceMetricsHudName[];
extern const char kShowPerformanceMetricsHudDescription[];
extern const char kShowOverdrawFeedbackName[];
extern const char kShowOverdrawFeedbackDescription[];
#if !BUILDFLAG(IS_CHROMEOS)
extern const char kFeedbackIncludeVariationsName[];
extern const char kFeedbackIncludeVariationsDescription[];
#endif
extern const char kSideBySideName[];
extern const char kSideBySideDescription[];
extern const char kSidePanelResizingFlagId[];
extern const char kSidePanelResizingName[];
extern const char kSidePanelResizingDescription[];
extern const char kSiteInstanceGroupsForDataUrlsName[];
extern const char kSiteInstanceGroupsForDataUrlsDescription[];
extern const char kDefaultSiteInstanceGroupsName[];
extern const char kDefaultSiteInstanceGroupsDescription[];
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || \
BUILDFLAG(IS_CHROMEOS)
extern const char kPwaNavigationCapturingName[];
extern const char kPwaNavigationCapturingDescription[];
#endif
extern const char kSkiaRendererName[];
extern const char kSkiaRendererDescription[];
extern const char kIsolateOriginsName[];
extern const char kIsolateOriginsDescription[];
extern const char kIsolationByDefaultName[];
extern const char kIsolationByDefaultDescription[];
extern const char kSignatureBasedSriName[];
extern const char kSignatureBasedSriDescription[];
extern const char kSiteIsolationOptOutName[];
extern const char kSiteIsolationOptOutDescription[];
extern const char kSiteIsolationOptOutChoiceDefault[];
extern const char kSiteIsolationOptOutChoiceOptOut[];
extern const char kSkiaGraphiteName[];
extern const char kSkiaGraphiteDescription[];
extern const char kSkiaGraphitePrecompilationName[];
extern const char kSkiaGraphitePrecompilationDescription[];
extern const char kBackdropFilterMirrorEdgeName[];
extern const char kBackdropFilterMirrorEdgeDescription[];
extern const char kSmoothScrollingName[];
extern const char kSmoothScrollingDescription[];
extern const char kStorageAccessApiFollowsSameOriginPolicyName[];
extern const char kStorageAccessApiFollowsSameOriginPolicyDescription[];
extern const char kStrictOriginIsolationName[];
extern const char kStrictOriginIsolationDescription[];
extern const char kSupportToolScreenshot[];
extern const char kSupportToolScreenshotDescription[];
extern const char kSystemKeyboardLockName[];
extern const char kSystemKeyboardLockDescription[];
extern const char kSyncAutofillWalletCredentialDataName[];
extern const char kSyncAutofillWalletCredentialDataDescription[];
extern const char kSyncSandboxName[];
extern const char kSyncSandboxDescription[];
extern const char kSyncTrustedVaultPassphrasePromoName[];
extern const char kSyncTrustedVaultPassphrasePromoDescription[];
extern const char kSystemProxyForSystemServicesName[];
extern const char kSystemProxyForSystemServicesDescription[];
extern const char kSystemShortcutBehaviorName[];
extern const char kSystemShortcutBehaviorDescription[];
extern const char kTabDragDropName[];
extern const char kTabDragDropDescription[];
extern const char kTabGroupEntryPointsAndroidName[];
extern const char kTabGroupEntryPointsAndroidDescription[];
extern const char kTabGroupParityBottomSheetAndroidName[];
extern const char kTabGroupParityBottomSheetAndroidDescription[];
extern const char kTabletTabStripAnimationName[];
extern const char kTabletTabStripAnimationDescription[];
extern const char kToolbarPhoneCleanupName[];
extern const char kToolbarPhoneCleanupDescription[];
extern const char kCommerceDeveloperName[];
extern const char kCommerceDeveloperDescription[];
extern const char kDataSharingDebugLogsName[];
extern const char kDataSharingDebugLogsDescription[];
extern const char kTabGroupSyncServiceDesktopMigrationId[];
extern const char kTabGroupSyncServiceDesktopMigrationName[];
extern const char kTabGroupSyncServiceDesktopMigrationDescription[];
extern const char kTabGroupShorcutsId[];
extern const char kTabGroupShorcutsName[];
extern const char kTabGroupShorcutsDescription[];
extern const char kTabHoverCardImagesName[];
extern const char kTabHoverCardImagesDescription[];
extern const char kTabSearchFuzzySearchName[];
extern const char kTabSearchFuzzySearchDescription[];
#if !BUILDFLAG(IS_ANDROID)
extern const char kTabSearchPositionSettingId[];
extern const char kTabSearchPositionSettingName[];
extern const char kTabSearchPositionSettingDescription[];
#endif
extern const char kTearOffWebAppAppTabOpensWebAppWindowName[];
extern const char kTearOffWebAppAppTabOpensWebAppWindowDescription[];
extern const char kTextBasedAudioDescriptionName[];
extern const char kTextBasedAudioDescriptionDescription[];
extern const char kTextInShelfName[];
extern const char kTextInShelfDescription[];
extern const char kTextSafetyClassifierName[];
extern const char kTextSafetyClassifierDescription[];
#if BUILDFLAG(IS_ANDROID)
extern const char kAutofillThirdPartyModeContentProviderName[];
extern const char kAutofillThirdPartyModeContentProviderDescription[];
#endif
#if !BUILDFLAG(IS_ANDROID)
extern const char kThreeButtonPasswordSaveDialogName[];
extern const char kThreeButtonPasswordSaveDialogDescription[];
#endif
extern const char kThrottleMainTo60HzName[];
extern const char kThrottleMainTo60HzDescription[];
extern const char kTintCompositedContentName[];
extern const char kTintCompositedContentDescription[];
#if !BUILDFLAG(IS_ANDROID)
extern const char kTopChromeToastsName[];
extern const char kTopChromeToastsDescription[];
extern const char kPinnedTabToastOnCloseName[];
extern const char kPinnedTabToastOnCloseDescription[];
#endif
#if BUILDFLAG(IS_ANDROID)
extern const char kTopControlsRefactorName[];
extern const char kTopControlsRefactorDescription[];
#endif
extern const char kTopChromeTouchUiName[];
extern const char kTopChromeTouchUiDescription[];
extern const char kTouchDragDropName[];
extern const char kTouchDragDropDescription[];
extern const char kTouchSelectionStrategyName[];
extern const char kTouchSelectionStrategyDescription[];
extern const char kTouchSelectionStrategyCharacter[];
extern const char kTouchSelectionStrategyDirection[];
extern const char kTouchTextEditingRedesignName[];
extern const char kTouchTextEditingRedesignDescription[];
extern const char kTranslateForceTriggerOnEnglishName[];
extern const char kTranslateForceTriggerOnEnglishDescription[];
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)
extern const char kEnableHistorySyncOptinName[];
extern const char kEnableHistorySyncOptinDescription[];
extern const char kTranslationAPIName[];
extern const char kTranslationAPIDescription[];
#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)
extern const char kTreatInsecureOriginAsSecureName[];
extern const char kTreatInsecureOriginAsSecureDescription[];
extern const char kTPCPhaseOutFacilitatedTestingName[];
extern const char kTPCPhaseOutFacilitatedTestingDescription[];
extern const char kTpcdHeuristicsGrantsName[];
extern const char kTpcdHeuristicsGrantsDescription[];
extern const char kTpcdMetadataGrantsName[];
extern const char kTpcdMetadataGrantsDescription[];
extern const char kTpcdTrialSettingsName[];
extern const char kTpcdTrialSettingsDescription[];
extern const char kTopLevelTpcdTrialSettingsName[];
extern const char kTopLevelTpcdTrialSettingsDescription[];
extern const char kBlockTpcsIncognitoName[];
extern const char kBlockTpcsIncognitoDescription[];
extern const char kTrackingProtection3pcdName[];
extern const char kTrackingProtection3pcdDescription[];
extern const char kRwsV2UiName[];
extern const char kRwsV2UiDescription[];
extern const char kUnifiedPasswordManagerAndroidReenrollmentName[];
extern const char kUnifiedPasswordManagerAndroidReenrollmentDescription[];
extern const char kUnsafeWebGPUName[];
extern const char kUnsafeWebGPUDescription[];
extern const char kForceHighPerformanceGPUName[];
extern const char kForceHighPerformanceGPUDescription[];
#if BUILDFLAG(IS_WIN)
extern const char kUiaProviderName[];
extern const char kUiaProviderDescription[];
#endif
extern const char kUiPartialSwapName[];
extern const char kUiPartialSwapDescription[];
#if BUILDFLAG(IS_ANDROID)
extern const char kUseAndroidBufferedInputDispatchName[];
extern const char kUseAndroidBufferedInputDispatchDescription[];
#endif
extern const char kUseSearchClickForRightClickName[];
extern const char kUseSearchClickForRightClickDescription[];
extern const char kVcBackgroundReplaceName[];
extern const char kVcBackgroundReplaceDescription[];
extern const char kVcRelightingInferenceBackendName[];
extern const char kVcRelightingInferenceBackendDescription[];
extern const char kVcRetouchInferenceBackendName[];
extern const char kVcRetouchInferenceBackendDescription[];
extern const char kVcSegmentationInferenceBackendName[];
extern const char kVcSegmentationInferenceBackendDescription[];
extern const char kVcSegmentationModelName[];
extern const char kVcSegmentationModelDescription[];
extern const char kVcStudioLookName[];
extern const char kVcStudioLookDescription[];
extern const char kVcTrayMicIndicatorName[];
extern const char kVcTrayMicIndicatorDescription[];
extern const char kVcTrayTitleHeaderName[];
extern const char kVcTrayTitleHeaderDescription[];
extern const char kVcLightIntensityName[];
extern const char kVcLightIntensityDescription[];
extern const char kVcWebApiName[];
extern const char kVcWebApiDescription[];
extern const char kVideoPictureInPictureControlsUpdate2024Name[];
extern const char kVideoPictureInPictureControlsUpdate2024Description[];
extern const char kViewportSegmentsName[];
extern const char kViewportSegmentsDescription[];
extern const char kVisitedURLRankingServiceDeduplicationName[];
extern const char kVisitedURLRankingServiceDeduplicationDescription[];
extern const char kVisitedURLRankingServiceHistoryVisibilityScoreFilterName[];
extern const char
kVisitedURLRankingServiceHistoryVisibilityScoreFilterDescription[];
extern const char kGroupPromoPrototypeName[];
extern const char kGroupPromoPrototypeDescription[];
extern const char kV8VmFutureName[];
extern const char kV8VmFutureDescription[];
extern const char kGlobalVaapiLockName[];
extern const char kGlobalVaapiLockDescription[];
extern const char kWalletServiceUseSandboxName[];
extern const char kWalletServiceUseSandboxDescription[];
extern const char kWallpaperFastRefreshName[];
extern const char kWallpaperFastRefreshDescription[];
extern const char kWallpaperGooglePhotosSharedAlbumsName[];
extern const char kWallpaperGooglePhotosSharedAlbumsDescription[];
extern const char kWallpaperSearchSettingsVisibilityName[];
extern const char kWallpaperSearchSettingsVisibilityDescription[];
extern const char
kWebAuthenticationAlignErrorTypeForPaymentCredentialCreateName[];
extern const char
kWebAuthenticationAlignErrorTypeForPaymentCredentialCreateDescription[];
#if !BUILDFLAG(IS_ANDROID)
extern const char kWebAuthnUsePasskeyFromAnotherDeviceInContextMenuName[];
extern const char
kWebAuthnUsePasskeyFromAnotherDeviceInContextMenuDescription[];
extern const char kWebAuthnPasskeyUpgradeName[];
extern const char kWebAuthnPasskeyUpgradeDescription[];
#endif
extern const char kWebAuthnImmediateGetName[];
extern const char kWebAuthnImmediateGetDescription[];
extern const char kWebBluetoothName[];
extern const char kWebBluetoothDescription[];
extern const char kWebBluetoothNewPermissionsBackendName[];
extern const char kWebBluetoothNewPermissionsBackendDescription[];
extern const char kWebOtpBackendName[];
extern const char kWebOtpBackendDescription[];
extern const char kWebOtpBackendSmsVerification[];
extern const char kWebOtpBackendUserConsent[];
extern const char kWebOtpBackendAuto[];
extern const char kWebglDeveloperExtensionsName[];
extern const char kWebglDeveloperExtensionsDescription[];
extern const char kWebglDraftExtensionsName[];
extern const char kWebglDraftExtensionsDescription[];
extern const char kWebGpuDeveloperFeaturesName[];
extern const char kWebGpuDeveloperFeaturesDescription[];
extern const char kWebPaymentsExperimentalFeaturesName[];
extern const char kWebPaymentsExperimentalFeaturesDescription[];
extern const char kAppStoreBillingDebugName[];
extern const char kAppStoreBillingDebugDescription[];
extern const char kWebrtcHideLocalIpsWithMdnsName[];
extern const char kWebrtcHideLocalIpsWithMdnsDecription[];
extern const char kWebRtcAllowInputVolumeAdjustmentName[];
extern const char kWebRtcAllowInputVolumeAdjustmentDescription[];
extern const char kWebRtcApmDownmixCaptureAudioMethodName[];
extern const char kWebRtcApmDownmixCaptureAudioMethodDescription[];
extern const char kWebrtcHwDecodingName[];
extern const char kWebrtcHwDecodingDescription[];
extern const char kWebrtcHwEncodingName[];
extern const char kWebrtcHwEncodingDescription[];
extern const char kWebrtcUseMinMaxVEADimensionsName[];
extern const char kWebrtcUseMinMaxVEADimensionsDescription[];
extern const char kWebTransportDeveloperModeName[];
extern const char kWebTransportDeveloperModeDescription[];
extern const char kWebUsbDeviceDetectionName[];
extern const char kWebUsbDeviceDetectionDescription[];
extern const char kWebXrForceRuntimeName[];
extern const char kWebXrForceRuntimeDescription[];
extern const char kWebXrRuntimeChoiceNone[];
extern const char kWebXrRuntimeChoiceArCore[];
extern const char kWebXrRuntimeChoiceCardboard[];
extern const char kWebXrRuntimeChoiceOpenXR[];
extern const char kWebXrRuntimeChoiceOrientationSensors[];
extern const char kWebXrHandAnonymizationStrategyName[];
extern const char kWebXrHandAnonymizationStrategyDescription[];
extern const char kWebXrHandAnonymizationChoiceNone[];
extern const char kWebXrHandAnonymizationChoiceRuntime[];
extern const char kWebXrHandAnonymizationChoiceFallback[];
extern const char kWebXrProjectionLayersName[];
extern const char kWebXrProjectionLayersDescription[];
extern const char kWebXrWebGpuBindingName[];
extern const char kWebXrWebGpuBindingDescription[];
extern const char kWebXRDepthPerformanceName[];
extern const char kWebXRDepthPerformanceDescription[];
extern const char kWebXrIncubationsName[];
extern const char kWebXrIncubationsDescription[];
extern const char kZeroCopyName[];
extern const char kZeroCopyDescription[];
extern const char kZeroCopyRBPPartialRasterWithGpuCompositorName[];
extern const char kZeroCopyRBPPartialRasterWithGpuCompositorDescription[];
extern const char kEnableVulkanName[];
extern const char kEnableVulkanDescription[];
extern const char kDefaultAngleVulkanName[];
extern const char kDefaultAngleVulkanDescription[];
extern const char kVulkanFromAngleName[];
extern const char kVulkanFromAngleDescription[];
extern const char kSharedHighlightingManagerName[];
extern const char kSharedHighlightingManagerDescription[];
extern const char kSanitizerApiName[];
extern const char kSanitizerApiDescription[];
extern const char kUsePassthroughCommandDecoderName[];
extern const char kUsePassthroughCommandDecoderDescription[];
extern const char kEnableUnsafeSwiftShaderName[];
extern const char kEnableUnsafeSwiftShaderDescription[];
extern const char kReduceAcceptLanguageHTTPName[];
extern const char kReduceAcceptLanguageHTTPDescription[];
extern const char kReduceAcceptLanguageName[];
extern const char kReduceAcceptLanguageDescription[];
extern const char kReduceTransferSizeUpdatedIPCName[];
extern const char kReduceTransferSizeUpdatedIPCDescription[];
#if BUILDFLAG(IS_LINUX)
extern const char kReduceUserAgentDataLinuxPlatformVersionName[];
extern const char kReduceUserAgentDataLinuxPlatformVersionDescription[];
#endif // #if BUILDFLAG(IS_LINUX)
extern const char kResetAudioSelectionImprovementPrefName[];
extern const char kResetAudioSelectionImprovementPrefDescription[];
extern const char kResetShortcutCustomizationsName[];
extern const char kResetShortcutCustomizationsDescription[];
extern const char kEnablePasswordSharingName[];
extern const char kEnablePasswordSharingDescription[];
extern const char kPredictableReportedQuotaName[];
extern const char kPredictableReportedQuotaDescription[];
extern const char kPromptAPIForGeminiNanoName[];
extern const char kPromptAPIForGeminiNanoDescription[];
extern const char* const kAIAPIsForGeminiNanoLinks[2];
extern const char kPromptAPIForGeminiNanoMultimodalInputName[];
extern const char kPromptAPIForGeminiNanoMultimodalInputDescription[];
extern const char kSummarizationAPIForGeminiNanoName[];
extern const char kSummarizationAPIForGeminiNanoDescription[];
extern const char kWriterAPIForGeminiNanoName[];
extern const char kWriterAPIForGeminiNanoDescription[];
extern const char kRewriterAPIForGeminiNanoName[];
extern const char kRewriterAPIForGeminiNanoDescription[];
// Android --------------------------------------------------------------------
#if BUILDFLAG(IS_ANDROID)
extern const char kAAudioPerStreamDeviceSelectionName[];
extern const char kAAudioPerStreamDeviceSelectionDescription[];
extern const char kAccessibilityDeprecateTypeAnnounceName[];
extern const char kAccessibilityDeprecateTypeAnnounceDescription[];
extern const char kAccessibilityIncludeLongClickActionName[];
extern const char kAccessibilityIncludeLongClickActionDescription[];
extern const char kAccessibilityTextFormattingName[];
extern const char kAccessibilityTextFormattingDescription[];
extern const char kAccessibilityUnifiedSnapshotsName[];
extern const char kAccessibilityUnifiedSnapshotsDescription[];
extern const char kAccessibilityManageBroadcastReceiverOnBackgroundName[];
extern const char
kAccessibilityManageBroadcastReceiverOnBackgroundDescription[];
extern const char kAccountBookmarksAndReadingListBehindOptInName[];
extern const char kAccountBookmarksAndReadingListBehindOptInDescription[];
extern const char kCCTAdaptiveButtonName[];
extern const char kCCTAdaptiveButtonDescription[];
extern const char kAdaptiveButtonInTopToolbarCustomizationName[];
extern const char kAdaptiveButtonInTopToolbarCustomizationDescription[];
extern const char kAdaptiveButtonInTopToolbarPageSummaryName[];
extern const char kAdaptiveButtonInTopToolbarPageSummaryDescription[];
extern const char kAndroidSurfaceControlName[];
extern const char kAndroidSurfaceControlDescription[];
extern const char kAnimatedImageDragShadowName[];
extern const char kAnimatedImageDragShadowDescription[];
extern const char kAnimateSuggestionsListAppearanceName[];
extern const char kAnimateSuggestionsListAppearanceDescription[];
extern const char kAndroidElegantTextHeightName[];
extern const char kAndroidElegantTextHeightDescription[];
extern const char kAndroidHubSearchName[];
extern const char kAndroidHubSearchDescription[];
extern const char kAndroidHubSearchTabGroupsName[];
extern const char kAndroidHubSearchTabGroupsDescription[];
extern const char kAndroidOpenPdfInlineName[];
extern const char kAndroidOpenPdfInlineDescription[];
extern const char kAndroidOpenPdfInlineBackportName[];
extern const char kAndroidOpenPdfInlineBackportDescription[];
extern const char kAndroidPdfAssistContentName[];
extern const char kAndroidPdfAssistContentDescription[];
extern const char kAndroidSurfaceColorUpdateName[];
extern const char kAndroidSurfaceColorUpdateDescription[];
extern const char kAndroidTabDeclutterAutoDeleteName[];
extern const char kAndroidTabDeclutterAutoDeleteDescription[];
extern const char kAndroidTabDeclutterAutoDeleteKillSwitchName[];
extern const char kAndroidTabDeclutterAutoDeleteKillSwitchDescription[];
extern const char kAndroidTabDeclutterArchiveAllButActiveTabName[];
extern const char kAndroidTabDeclutterArchiveAllButActiveTabDescription[];
extern const char kAndroidTabDeclutterArchiveDuplicateTabsName[];
extern const char kAndroidTabDeclutterArchiveDuplicateTabsDescription[];
extern const char kAndroidTabDeclutterArchiveTabGroupsName[];
extern const char kAndroidTabDeclutterArchiveTabGroupsDescription[];
extern const char kAndroidTabDeclutterPerformanceImprovementsName[];
extern const char kAndroidTabDeclutterPerformanceImprovementsDescription[];
extern const char kAndroidThemeModuleName[];
extern const char kAndroidThemeModuleDescription[];
extern const char kAppSpecificHistoryName[];
extern const char kAppSpecificHistoryDescription[];
extern const char kAuxiliaryNavigationStaysInBrowserName[];
extern const char kAuxiliaryNavigationStaysInBrowserDescription[];
extern const char kBackgroundNotPerceptibleBindingName[];
extern const char kBackgroundNotPerceptibleBindingDescription[];
extern const char kBatchTabRestoreName[];
extern const char kBatchTabRestoreDescription[];
extern const char kBoardingPassDetectorName[];
extern const char kBoardingPassDetectorDescription[];
extern const char kBookmarkPaneAndroidName[];
extern const char kBookmarkPaneAndroidDescription[];
extern const char kBrowserControlsDebuggingName[];
extern const char kBrowserControlsDebuggingDescription[];
extern const char kCCTAuthTabName[];
extern const char kCCTAuthTabDescription[];
extern const char kCCTAuthTabDisableAllExternalIntentsName[];
extern const char kCCTAuthTabDisableAllExternalIntentsDescription[];
extern const char kCCTAuthTabEnableHttpsRedirectsName[];
extern const char kCCTAuthTabEnableHttpsRedirectsDescription[];
extern const char kCCTEphemeralMediaViewerExperimentName[];
extern const char kCCTEphemeralMediaViewerExperimentDescription[];
extern const char kCCTEphemeralModeName[];
extern const char kCCTEphemeralModeDescription[];
extern const char kCCTIncognitoAvailableToThirdPartyName[];
extern const char kCCTIncognitoAvailableToThirdPartyDescription[];
extern const char kCCTMinimizedName[];
extern const char kCCTMinimizedDescription[];
extern const char kCCTNestedSecurityIconName[];
extern const char kCCTNestedSecurityIconDescription[];
extern const char kCCTGoogleBottomBarName[];
extern const char kCCTGoogleBottomBarDescription[];
extern const char kCCTGoogleBottomBarVariantLayoutsName[];
extern const char kCCTGoogleBottomBarVariantLayoutsDescription[];
extern const char kCCTOpenInBrowserButtonIfAllowedByEmbedderName[];
extern const char kCCTOpenInBrowserButtonIfAllowedByEmbedderDescription[];
extern const char kCCTOpenInBrowserButtonIfEnabledByEmbedderName[];
extern const char kCCTOpenInBrowserButtonIfEnabledByEmbedderDescription[];
extern const char kCCTPredictiveBackGestureName[];
extern const char kCCTPredictiveBackGestureDescription[];
extern const char kCCTResizableForThirdPartiesName[];
extern const char kCCTResizableForThirdPartiesDescription[];
extern const char kCCTRevampedBrandingName[];
extern const char kCCTRevampedBrandingDescription[];
extern const char kCCTSignInPromptName[];
extern const char kCCTSignInPromptDescription[];
extern const char kCCTToolbarRefactorName[];
extern const char kCCTToolbarRefactorDescription[];
extern const char kBottomBrowserControlsRefactorName[];
extern const char kBottomBrowserControlsRefactorDescription[];
extern const char kBrowsingDataModelName[];
extern const char kBrowsingDataModelDescription[];
extern const char kChimeAlwaysShowNotificationDescription[];
extern const char kChimeAlwaysShowNotificationName[];
extern const char kChimeAndroidSdkDescription[];
extern const char kChimeAndroidSdkName[];
extern const char kClankDefaultBrowserPromoName[];
extern const char kClankDefaultBrowserPromoDescription[];
extern const char kClankDefaultBrowserPromoRoleManagerName[];
extern const char kClankDefaultBrowserPromoRoleManagerDescription[];
extern const char kTabStateFlatBufferName[];
extern const char kTabStateFlatBufferDescription[];
extern const char kContextualSearchSuppressShortViewName[];
extern const char kContextualSearchSuppressShortViewDescription[];
extern const char kCpaSpecUpdateName[];
extern const char kCpaSpecUpdateDescription[];
extern const char kDeprecatedExternalPickerFunctionName[];
extern const char kDeprecatedExternalPickerFunctionDescription[];
extern const char kDrawCutoutEdgeToEdgeName[];
extern const char kDrawCutoutEdgeToEdgeDescription[];
extern const char kDrawKeyNativeEdgeToEdgeName[];
extern const char kDrawKeyNativeEdgeToEdgeDescription[];
extern const char kDynamicSafeAreaInsetsName[];
extern const char kDynamicSafeAreaInsetsDescription[];
extern const char kDynamicSafeAreaInsetsOnScrollName[];
extern const char kDynamicSafeAreaInsetsOnScrollDescription[];
extern const char kDynamicSafeAreaInsetsSupportedByCCName[];
extern const char kDynamicSafeAreaInsetsSupportedByCCDescription[];
extern const char kCSSSafeAreaMaxInsetName[];
extern const char kCSSSafeAreaMaxInsetDescription[];
extern const char kEdgeToEdgeBottomChinName[];
extern const char kEdgeToEdgeBottomChinDescription[];
extern const char kEdgeToEdgeEverywhereName[];
extern const char kEdgeToEdgeEverywhereDescription[];
extern const char kEdgeToEdgeSafeAreaConstraintName[];
extern const char kEdgeToEdgeSafeAreaConstraintDescription[];
extern const char kEdgeToEdgeTabletName[];
extern const char kEdgeToEdgeTabletDescription[];
extern const char kEdgeToEdgeWebOptInName[];
extern const char kEdgeToEdgeWebOptInDescription[];
extern const char kEducationalTipDefaultBrowserPromoCardName[];
extern const char kEducationalTipDefaultBrowserPromoCardDescription[];
extern const char kEducationalTipModuleName[];
extern const char kEducationalTipModuleDescription[];
extern const char kEnableCommandLineOnNonRootedName[];
extern const char kEnableCommandLineOnNoRootedDescription[];
extern const char kTabClosureMethodRefactorName[];
extern const char kTabClosureMethodRefactorDescription[];
extern const char kGridTabSwitcherUpdateName[];
extern const char kGridTabSwitcherUpdateDescription[];
extern const char kEnableClipboardDataControlsAndroidName[];
extern const char kEnableClipboardDataControlsAndroidDescription[];
extern const char kEwalletPaymentsName[];
extern const char kEwalletPaymentsDescription[];
extern const char kExternalNavigationDebugLogsName[];
extern const char kExternalNavigationDebugLogsDescription[];
extern const char kFeedFollowUiUpdateName[];
extern const char kFeedFollowUiUpdateDescription[];
extern const char kFeedLoadingPlaceholderName[];
extern const char kFeedLoadingPlaceholderDescription[];
extern const char kFeedSignedOutViewDemotionName[];
extern const char kFeedSignedOutViewDemotionDescription[];
extern const char kFeedStampName[];
extern const char kFeedStampDescription[];
extern const char kFeedCloseRefreshName[];
extern const char kFeedCloseRefreshDescription[];
extern const char kFeedContainmentName[];
extern const char kFeedContainmentDescription[];
extern const char kFeedDiscoFeedEndpointName[];
extern const char kFeedDiscoFeedEndpointDescription[];
extern const char kFeedHeaderRemovalName[];
extern const char kFeedHeaderRemovalDescription[];
extern const char kWebFeedDeprecationName[];
extern const char kWebFeedDeprecationDescription[];
extern const char kFloatingSnackbarName[];
extern const char kFloatingSnackbarDescription[];
extern const char kForceListTabSwitcherName[];
extern const char kForceListTabSwitcherDescription[];
extern const char kForceOffTextAutosizingName[];
extern const char kForceOffTextAutosizingDescription[];
extern const char kFullscreenInsetsApiMigrationName[];
extern const char kFullscreenInsetsApiMigrationDescription[];
extern const char kFullscreenInsetsApiMigrationOnAutomotiveName[];
extern const char kFullscreenInsetsApiMigrationOnAutomotiveDescription[];
extern const char kGridTabSwitcherSurfaceColorUpdateName[];
extern const char kGridTabSwitcherSurfaceColorUpdateDescription[];
extern const char kGtsCloseTabAnimationName[];
extern const char kGtsCloseTabAnimationDescription[];
extern const char kRefreshFeedOnRestartName[];
extern const char kRefreshFeedOnRestartDescription[];
extern const char kInterestFeedV2Name[];
extern const char kInterestFeedV2Description[];
extern const char kLegacyTabStateDeprecationName[];
extern const char kLegacyTabStateDeprecationDescription[];
extern const char kMagicStackAndroidName[];
extern const char kMagicStackAndroidDescription[];
extern const char kMaliciousApkDownloadCheckName[];
extern const char kMaliciousApkDownloadCheckDescription[];
extern const char kMayLaunchUrlUsesSeparateStoragePartitionName[];
extern const char kMayLaunchUrlUsesSeparateStoragePartitionDescription[];
extern const char kMiniOriginBarName[];
extern const char kMiniOriginBarDescription[];
extern const char kSegmentationPlatformAndroidHomeModuleRankerV2Name[];
extern const char kSegmentationPlatformAndroidHomeModuleRankerV2Description[];
extern const char kSegmentationPlatformEphemeralCardRankerName[];
extern const char kSegmentationPlatformEphemeralCardRankerDescription[];
extern const char kMediaPickerAdoptionStudyName[];
extern const char kMediaPickerAdoptionStudyDescription[];
extern const char kNavBarColorAnimationName[];
extern const char kNavBarColorAnimationDescription[];
extern const char kNavBarColorMatchesTabBackgroundName[];
extern const char kNavBarColorMatchesTabBackgroundDescription[];
extern const char kNavigationCaptureRefactorAndroidName[];
extern const char kNavigationCaptureRefactorAndroidDescription[];
extern const char kNotificationOneTapUnsubscribeName[];
extern const char kNotificationOneTapUnsubscribeDescription[];
extern const char kNotificationPermissionRationaleName[];
extern const char kNotificationPermissionRationaleDescription[];
extern const char kNotificationPermissionRationaleBottomSheetName[];
extern const char kNotificationPermissionRationaleBottomSheetDescription[];
extern const char kOfflineAutoFetchName[];
extern const char kOfflineAutoFetchDescription[];
extern const char kOmahaMinSdkVersionAndroidName[];
extern const char kOmahaMinSdkVersionAndroidDescription[];
extern const char kOmahaMinSdkVersionAndroidMinSdk1Description[];
extern const char kOmahaMinSdkVersionAndroidMinSdk1000Description[];
extern const char kOmniboxShortcutsAndroidName[];
extern const char kOmniboxShortcutsAndroidDescription[];
extern const char kPaymentLinkDetectionName[];
extern const char kPaymentLinkDetectionDescription[];
extern const char kProcessRankPolicyAndroidName[];
extern const char kProcessRankPolicyAndroidDescription[];
extern const char kProtectedTabsAndroidName[];
extern const char kProtectedTabsAndroidDescription[];
extern const char kReadAloudName[];
extern const char kReadAloudDescription[];
extern const char kReadAloudBackgroundPlaybackName[];
extern const char kReadAloudBackgroundPlaybackDescription[];
extern const char kReadAloudInCCTName[];
extern const char kReadAloudInCCTDescription[];
extern const char kReadAloudTapToSeekName[];
extern const char kReadAloudTapToSeekDescription[];
extern const char kReadAloudTapToSeekName[];
extern const char kReadAloudTapToSeekDescription[];
extern const char kReaderModeAutoDistillName[];
extern const char kReaderModeAutoDistillDescription[];
extern const char kReaderModeHeuristicsName[];
extern const char kReaderModeHeuristicsDescription[];
extern const char kReaderModeHeuristicsMarkup[];
extern const char kReaderModeHeuristicsAdaboost[];
extern const char kReaderModeHeuristicsAllArticles[];
extern const char kReaderModeHeuristicsAlwaysOff[];
extern const char kReaderModeHeuristicsAlwaysOn[];
extern const char kReaderModeImprovementsName[];
extern const char kReaderModeImprovementsDescription[];
extern const char kReparentAuxiliaryNavigationFromPWAName[];
extern const char kReparentAuxiliaryNavigationFromPWADescription[];
extern const char kReparentTopLevelNavigationFromPWAName[];
extern const char kReparentTopLevelNavigationFromPWADescription[];
extern const char kReengagementNotificationName[];
extern const char kReengagementNotificationDescription[];
extern const char kRelatedSearchesAllLanguageName[];
extern const char kRelatedSearchesAllLanguageDescription[];
extern const char kRelatedSearchesSwitchName[];
extern const char kRelatedSearchesSwitchDescription[];
extern const char kRightEdgeGoesForwardGestureNavName[];
extern const char kRightEdgeGoesForwardGestureNavDescription[];
extern const char kSafeBrowsingSyncCheckerCheckAllowlistName[];
extern const char kSafeBrowsingSyncCheckerCheckAllowlistDescription[];
extern const char kSecurePaymentConfirmationAndroidName[];
extern const char kSecurePaymentConfirmationAndroidDescription[];
extern const char kShareCustomActionsInCCTName[];
extern const char kShareCustomActionsInCCTDescription[];
extern const char kShowNewTabAnimationsName[];
extern const char kShowNewTabAnimationsDescription[];
extern const char kShowReadyToPayDebugInfoName[];
extern const char kShowReadyToPayDebugInfoDescription[];
extern const char kSetMarketUrlForTestingName[];
extern const char kSetMarketUrlForTestingDescription[];
extern const char kSiteIsolationForPasswordSitesName[];
extern const char kSiteIsolationForPasswordSitesDescription[];
extern const char kSmartZoomName[];
extern const char kSmartZoomDescription[];
extern const char kSmartSuggestionForLargeDownloadsName[];
extern const char kSmartSuggestionForLargeDownloadsDescription[];
extern const char kSearchResumptionModuleAndroidName[];
extern const char kSearchResumptionModuleAndroidDescription[];
extern const char kStrictSiteIsolationName[];
extern const char kStrictSiteIsolationDescription[];
extern const char kSupportMultipleServerRequestsForPixPaymentsName[];
extern const char kSupportMultipleServerRequestsForPixPaymentsDescription[];
extern const char kSwapNewTabAndNewTabInGroupAndroidName[];
extern const char kSwapNewTabAndNewTabInGroupAndroidDescription[];
extern const char kCrossDeviceTabPaneAndroidName[];
extern const char kCrossDeviceTabPaneAndroidDescription[];
extern const char kHistoryPaneAndroidName[];
extern const char kHistoryPaneAndroidDescription[];
extern const char kTabGroupsForTabletsName[];
extern const char kTabGroupsForTabletsDescription[];
extern const char kTabGroupSyncAndroidName[];
extern const char kTabGroupSyncAndroidDescription[];
extern const char kTabGroupSyncDisableNetworkLayerName[];
extern const char kTabGroupSyncDisableNetworkLayerDescription[];
extern const char kTabStripContextMenuAndroidName[];
extern const char kTabStripContextMenuAndroidDescription[];
extern const char kTabStripDensityChangeAndroidName[];
extern const char kTabStripDensityChangeAndroidDescription[];
extern const char kTabStripGroupDragDropAndroidName[];
extern const char kTabStripGroupDragDropAndroidDescription[];
extern const char kTabStripGroupReorderAndroidName[];
extern const char kTabStripGroupReorderAndroidDescription[];
extern const char kTabStripIncognitoMigrationName[];
extern const char kTabStripIncognitoMigrationDescription[];
extern const char kTabStripLayoutOptimizationName[];
extern const char kTabStripLayoutOptimizationDescription[];
extern const char kTabStripTransitionInDesktopWindowName[];
extern const char kTabStripTransitionInDesktopWindowDescription[];
extern const char kTabSwitcherColorBlendAnimateName[];
extern const char kTabSwitcherColorBlendAnimateDescription[];
extern const char kHideTabletToolbarDownloadButtonName[];
extern const char kHideTabletToolbarDownloadButtonDescription[];
extern const char kUpdateMenuBadgeName[];
extern const char kUpdateMenuBadgeDescription[];
extern const char kUpdateMenuItemCustomSummaryDescription[];
extern const char kUpdateMenuItemCustomSummaryName[];
extern const char kUpdateMenuTypeName[];
extern const char kUpdateMenuTypeDescription[];
extern const char kUpdateMenuTypeNone[];
extern const char kUpdateMenuTypeUpdateAvailable[];
extern const char kUpdateMenuTypeUnsupportedOSVersion[];
extern const char kUseHardwareBufferUsageFlagsFromVulkanName[];
extern const char kUseHardwareBufferUsageFlagsFromVulkanDescription[];
extern const char kVideoTutorialsName[];
extern const char kVideoTutorialsDescription[];
extern const char kWebFeedAwarenessName[];
extern const char kWebFeedAwarenessDescription[];
extern const char kWebFeedOnboardingName[];
extern const char kWebFeedOnboardingDescription[];
extern const char kWebFeedSortName[];
extern const char kWebFeedSortDescription[];
extern const char kWebXrSharedBuffersName[];
extern const char kWebXrSharedBuffersDescription[];
extern const char kXsurfaceMetricsReportingName[];
extern const char kXsurfaceMetricsReportingDescription[];
#if BUILDFLAG(ENABLE_VR) && BUILDFLAG(ENABLE_OPENXR)
extern const char kOpenXRExtendedFeaturesName[];
extern const char kOpenXRExtendedFeaturesDescription[];
extern const char kOpenXRName[];
extern const char kOpenXRDescription[];
extern const char kOpenXRAndroidSmoothDepthName[];
extern const char kOpenXRAndroidSmoothDepthDescription[];
#endif
// Non-Android ----------------------------------------------------------------
#else // !BUILDFLAG(IS_ANDROID)
extern const char kAccountStoragePrefsThemesAndSearchEnginesName[];
extern const char kAccountStoragePrefsThemesAndSearchEnginesDescription[];
extern const char kAllowAllSitesToInitiateMirroringName[];
extern const char kAllowAllSitesToInitiateMirroringDescription[];
extern const char kAXTreeFixingName[];
extern const char kAXTreeFixingDescription[];
extern const char kBrowserInitiatedAutomaticPictureInPictureName[];
extern const char kBrowserInitiatedAutomaticPictureInPictureDescription[];
extern const char kDialMediaRouteProviderName[];
extern const char kDialMediaRouteProviderDescription[];
extern const char kDelayMediaSinkDiscoveryName[];
extern const char kDelayMediaSinkDiscoveryDescription[];
extern const char kShowCastPermissionRejectedErrorName[];
extern const char kShowCastPermissionRejectedErrorDescription[];
extern const char kCastMirroringTargetPlayoutDelayName[];
extern const char kCastMirroringTargetPlayoutDelayDescription[];
extern const char kCastMirroringTargetPlayoutDelayDefault[];
extern const char kCastMirroringTargetPlayoutDelay100ms[];
extern const char kCastMirroringTargetPlayoutDelay150ms[];
extern const char kCastMirroringTargetPlayoutDelay250ms[];
extern const char kCastMirroringTargetPlayoutDelay300ms[];
extern const char kCastMirroringTargetPlayoutDelay350ms[];
extern const char kCastMirroringTargetPlayoutDelay400ms[];
extern const char kEnablePolicyTestPageName[];
extern const char kEnablePolicyTestPageDescription[];
extern const char kEnableLiveCaptionMultilangName[];
extern const char kEnableLiveCaptionMultilangDescription[];
extern const char kEnableHeadlessLiveCaptionName[];
extern const char kEnableHeadlessLiveCaptionDescription[];
extern const char kEnableCrOSLiveTranslateName[];
extern const char kEnableCrOSLiveTranslateDescription[];
extern const char kEnableCrOSSodaLanguagesName[];
extern const char kEnableCrOSSodaLanguagesDescription[];
extern const char kEnableCrOSSodaConchLanguagesName[];
extern const char kEnableCrOSSodaConchLanguagesDescription[];
extern const char kFreezingOnEnergySaverName[];
extern const char kFreezingOnEnergySaverDescription[];
extern const char kFreezingOnEnergySaverTestingName[];
extern const char kFreezingOnEnergySaverTestingDescription[];
extern const char kImprovedPasswordChangeServiceName[];
extern const char kImprovedPasswordChangeServiceDescription[];
extern const char kInfiniteTabsFreezingName[];
extern const char kInfiniteTabsFreezingDescription[];
extern const char kMemoryPurgeOnFreezeLimitName[];
extern const char kMemoryPurgeOnFreezeLimitDescription[];
extern const char kKeyboardLockPromptName[];
extern const char kKeyboardLockPromptDescription[];
extern const char kPressAndHoldEscToExitBrowserFullscreenName[];
extern const char kPressAndHoldEscToExitBrowserFullscreenDescription[];
extern const char kReadAnythingImagesViaAlgorithmName[];
extern const char kReadAnythingImagesViaAlgorithmDescription[];
extern const char kReadAnythingReadAloudName[];
extern const char kReadAnythingReadAloudDescription[];
extern const char kReadAnythingReadAloudPhraseHighlightingName[];
extern const char kReadAnythingReadAloudPhraseHighlightingDescription[];
extern const char kReadAnythingDocsIntegrationName[];
extern const char kReadAnythingDocsIntegrationDescription[];
extern const char kReadAnythingDocsLoadMoreButtonName[];
extern const char kReadAnythingDocsLoadMoreButtonDescription[];
extern const char kLinkPreviewName[];
extern const char kLinkPreviewDescription[];
extern const char kMarkAllCredentialsAsLeakedName[];
extern const char kMarkAllCredentialsAsLeakedDescription[];
extern const char kMuteNotificationSnoozeActionName[];
extern const char kMuteNotificationSnoozeActionDescription[];
extern const char kNtpAlphaBackgroundCollectionsName[];
extern const char kNtpAlphaBackgroundCollectionsDescription[];
extern const char kNtpBackgroundImageErrorDetectionName[];
extern const char kNtpBackgroundImageErrorDetectionDescription[];
extern const char kNtpCalendarModuleName[];
extern const char kNtpCalendarModuleDescription[];
extern const char kNtpChromeCartModuleName[];
extern const char kNtpChromeCartModuleDescription[];
extern const char kNtpSearchboxComposeboxName[];
extern const char kNtpSearchboxComposeboxDescription[];
extern const char kNtpSearchboxComposeEntrypointName[];
extern const char kNtpSearchboxComposeEntrypointDescription[];
extern const char kNtpDriveModuleName[];
extern const char kNtpDriveModuleDescription[];
extern const char kNtpDriveModuleNoSyncRequirementName[];
extern const char kNtpDriveModuleNoSyncRequirementDescription[];
extern const char kNtpDriveModuleSegmentationName[];
extern const char kNtpDriveModuleSegmentationDescription[];
extern const char kNtpDriveModuleShowSixFilesName[];
extern const char kNtpDriveModuleShowSixFilesDescription[];
#if !defined(OFFICIAL_BUILD)
extern const char kNtpDummyModulesName[];
extern const char kNtpDummyModulesDescription[];
#endif
extern const char kNtpFooterName[];
extern const char kNtpFooterDescription[];
extern const char kNtpMicrosoftAuthenticationModuleName[];
extern const char kNtpMicrosoftAuthenticationModuleDescription[];
extern const char kNtpMostRelevantTabResumptionModuleName[];
extern const char kNtpMostRelevantTabResumptionModuleDescription[];
extern const char kNtpMostRelevantTabResumptionModuleFallbackToHostName[];
extern const char
kNtpMostRelevantTabResumptionModuleFallbackToHostDescription[];
extern const char kNtpMiddleSlotPromoDismissalName[];
extern const char kNtpMiddleSlotPromoDismissalDescription[];
extern const char kNtpMobilePromoName[];
extern const char kNtpMobilePromoDescription[];
extern const char kForceNtpMobilePromoName[];
extern const char kForceNtpMobilePromoDescription[];
extern const char kNtpModulesDragAndDropName[];
extern const char kNtpModulesDragAndDropDescription[];
extern const char kNtpModulesRedesignedName[];
extern const char kNtpModulesRedesignedDescription[];
extern const char kNtpOneGoogleBarAsyncBarPartsName[];
extern const char kNtpOneGoogleBarAsyncBarPartsDescription[];
extern const char kNtpOutlookCalendarModuleName[];
extern const char kNtpOutlookCalendarModuleDescription[];
extern const char kNtpPhotosModuleOptInTitleName[];
extern const char kNtpPhotosModuleOptInTitleDescription[];
extern const char kNtpPhotosModuleOptInArtWorkName[];
extern const char kNtpPhotosModuleOptInArtWorkDescription[];
extern const char kNtpPhotosModuleName[];
extern const char kNtpPhotosModuleDescription[];
extern const char kNtpPhotosModuleSoftOptOutName[];
extern const char kNtpPhotosModuleSoftOptOutDescription[];
extern const char kNtpRealboxContextualAndTrendingSuggestionsName[];
extern const char kNtpRealboxContextualAndTrendingSuggestionsDescription[];
extern const char kNtpRealboxCr23ThemingName[];
extern const char kNtpRealboxCr23ThemingDescription[];
extern const char kNtpRealboxMatchSearchboxThemeName[];
extern const char kNtpRealboxMatchSearchboxThemeDescription[];
extern const char kNtpRealboxUseGoogleGIconName[];
extern const char kNtpRealboxUseGoogleGIconDescription[];
extern const char kNtpSafeBrowsingModuleName[];
extern const char kNtpSafeBrowsingModuleDescription[];
extern const char kNtpSharepointModuleName[];
extern const char kNtpSharepointModuleDescription[];
extern const char kNtpWallpaperSearchButtonName[];
extern const char kNtpWallpaperSearchButtonDescription[];
extern const char kNtpWallpaperSearchButtonAnimationName[];
extern const char kNtpWallpaperSearchButtonAnimationDescription[];
extern const char kNtpWideModulesName[];
extern const char kNtpWideModulesDescription[];
extern const char kHappinessTrackingSurveysForDesktopDemoName[];
extern const char kHappinessTrackingSurveysForDesktopDemoDescription[];
extern const char kMainNodeAnnotationsName[];
extern const char kMainNodeAnnotationsDescription[];
extern const char kOmniboxDriveSuggestionsNoSyncRequirementName[];
extern const char kOmniboxDriveSuggestionsNoSyncRequirementDescription[];
extern const char kProbabilisticMemorySaverName[];
extern const char kProbabilisticMemorySaverDescription[];
extern const char kSavePasswordsContextualUiName[];
extern const char kSavePasswordsContextualUiDescription[];
extern const char kSCTAuditingName[];
extern const char kSCTAuditingDescription[];
extern const char kSmartCardWebApiName[];
extern const char kSmartCardWebApiDescription[];
extern const char kTabCaptureInfobarLinksName[];
extern const char kTabCaptureInfobarLinksDescription[];
#if !BUILDFLAG(IS_ANDROID)
extern const char kTranslateOpenSettingsName[];
extern const char kTranslateOpenSettingsDescription[];
#endif
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC)
extern const char kWasmTtsComponentUpdaterEnabledName[];
extern const char kWasmTtsComponentUpdaterEnabledDescription[];
#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC)
extern const char kWebAuthenticationPermitEnterpriseAttestationName[];
extern const char kWebAuthenticationPermitEnterpriseAttestationDescription[];
#endif // BUILDFLAG(IS_ANDROID)
// Windows --------------------------------------------------------------------
#if BUILDFLAG(IS_WIN)
extern const char kCalculateNativeWinOcclusionName[];
extern const char kCalculateNativeWinOcclusionDescription[];
extern const char kEnableMediaFoundationVideoCaptureName[];
extern const char kEnableMediaFoundationVideoCaptureDescription[];
extern const char kHardwareSecureDecryptionName[];
extern const char kHardwareSecureDecryptionDescription[];
extern const char kHardwareSecureDecryptionExperimentName[];
extern const char kHardwareSecureDecryptionExperimentDescription[];
extern const char kHardwareSecureDecryptionFallbackName[];
extern const char kHardwareSecureDecryptionFallbackDescription[];
extern const char kHidGetFeatureReportFixName[];
extern const char kHidGetFeatureReportFixDescription[];
extern const char kMediaFoundationClearName[];
extern const char kMediaFoundationClearDescription[];
extern const char kMediaFoundationClearStrategyName[];
extern const char kMediaFoundationClearStrategyDescription[];
extern const char kMediaFoundationCameraUsageMonitoringName[];
extern const char kMediaFoundationCameraUsageMonitoringDescription[];
extern const char kRawAudioCaptureName[];
extern const char kRawAudioCaptureDescription[];
extern const char kRunVideoCaptureServiceInBrowserProcessName[];
extern const char kRunVideoCaptureServiceInBrowserProcessDescription[];
extern const char kUseAngleDescriptionWindows[];
extern const char kUseAngleD3D11[];
extern const char kUseAngleD3D9[];
extern const char kUseAngleD3D11on12[];
extern const char kUseWaitableSwapChainName[];
extern const char kUseWaitableSwapChainDescription[];
extern const char kUseWinrtMidiApiName[];
extern const char kUseWinrtMidiApiDescription[];
extern const char kWebRtcAllowWgcScreenCapturerName[];
extern const char kWebRtcAllowWgcScreenCapturerDescription[];
extern const char kWebRtcAllowWgcWindowCapturerName[];
extern const char kWebRtcAllowWgcWindowCapturerDescription[];
extern const char kWebRtcWgcRequireBorderName[];
extern const char kWebRtcWgcRequireBorderDescription[];
extern const char kWindows11MicaTitlebarName[];
extern const char kWindows11MicaTitlebarDescription[];
inline constexpr char kWindowsSystemTracingName[] = "System tracing";
inline constexpr char kWindowsSystemTracingDescription[] =
"When enabled, the system tracing service is started along with Chrome's "
"tracing service (if the system tracing service is registered).";
#if BUILDFLAG(ENABLE_EXTENSIONS)
extern const char kLaunchWindowsNativeHostsDirectlyName[];
extern const char kLaunchWindowsNativeHostsDirectlyDescription[];
#endif // ENABLE_EXTENSIONS
#if BUILDFLAG(ENABLE_PRINTING)
inline constexpr char kFastEnumeratePrintersName[] =
"Use faster method for printer enumeration";
inline constexpr char kFastEnumeratePrintersDescription[] =
"When enumerating printers, use a faster method to acquire the basic "
"information for each printer.";
extern const char kPrintWithPostScriptType42FontsName[];
extern const char kPrintWithPostScriptType42FontsDescription[];
extern const char kPrintWithReducedRasterizationName[];
extern const char kPrintWithReducedRasterizationDescription[];
extern const char kReadPrinterCapabilitiesWithXpsName[];
extern const char kReadPrinterCapabilitiesWithXpsDescription[];
extern const char kUseXpsForPrintingName[];
extern const char kUseXpsForPrintingDescription[];
extern const char kUseXpsForPrintingFromPdfName[];
extern const char kUseXpsForPrintingFromPdfDescription[];
#endif // BUILDFLAG(ENABLE_PRINTING)
#endif // BUILDFLAG(IS_WIN)
// Mac ------------------------------------------------------------------------
#if BUILDFLAG(IS_MAC)
extern const char kImmersiveFullscreenName[];
extern const char kImmersiveFullscreenDescription[];
extern const char kMacAccessibilityAPIMigrationName[];
extern const char kMacAccessibilityAPIMigrationDescription[];
extern const char kMacCatapSystemAudioLoopbackCaptureName[];
extern const char kMacCatapSystemAudioLoopbackCaptureDescription[];
extern const char kMacImeLiveConversionFixName[];
extern const char kMacImeLiveConversionFixDescription[];
extern const char kMacLoopbackAudioForScreenShareName[];
extern const char kMacLoopbackAudioForScreenShareDescription[];
extern const char kMacPWAsNotificationAttributionName[];
extern const char kMacPWAsNotificationAttributionDescription[];
extern const char kMacSyscallSandboxName[];
extern const char kMacSyscallSandboxDescription[];
extern const char kRetryGetVideoCaptureDeviceInfosName[];
extern const char kRetryGetVideoCaptureDeviceInfosDescription[];
extern const char kSonomaAccessibilityActivationRefinementsName[];
extern const char kSonomaAccessibilityActivationRefinementsDescription[];
extern const char kUseAngleDescriptionMac[];
extern const char kUseAngleMetal[];
extern const char kUseAdHocSigningForWebAppShimsName[];
extern const char kUseAdHocSigningForWebAppShimsDescription[];
extern const char kUseSCContentSharingPickerName[];
extern const char kUseSCContentSharingPickerDescription[];
extern const char kBlockRootWindowAccessibleNameChangeEventName[];
extern const char kBlockRootWindowAccessibleNameChangeEventDescription[];
#endif // BUILDFLAG(IS_MAC)
// Windows and Mac ------------------------------------------------------------
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC)
extern const char kEnforceSystemEchoCancellationName[];
extern const char kEnforceSystemEchoCancellationDescription[];
extern const char kLocationProviderManagerName[];
extern const char kLocationProviderManagerDescription[];
extern const char kUseAngleGL[];
#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC)
// Android --------------------------------------------------
#if BUILDFLAG(IS_ANDROID)
extern const char kAndroidMinimalUiLargeScreenName[];
extern const char kAndroidMinimalUiLargeScreenDescription[];
extern const char kAndroidUseCorrectDisplayWorkAreaName[];
extern const char kAndroidUseCorrectDisplayWorkAreaDescription[];
extern const char kAndroidWindowManagementWebApiName[];
extern const char kAndroidWindowManagementWebApiDescription[];
extern const char kAndroidWindowOcclusionName[];
extern const char kAndroidWindowOcclusionDescription[];
extern const char kAndroidWindowPopupLargeScreenName[];
extern const char kAndroidWindowPopupLargeScreenDescription[];
extern const char kBackgroundCompactMessageName[];
extern const char kBackgroundCompactDescription[];
extern const char kRunningCompactMessageName[];
extern const char kRunningCompactDescription[];
extern const char kUseAngleDescriptionAndroid[];
extern const char kUseAngleGLES[];
extern const char kUseAngleVulkan[];
#endif // BUILDFLAG(IS_ANDROID)
// Windows, Mac and Android --------------------------------------------------
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_ANDROID)
extern const char kUseAngleName[];
extern const char kUseAngleDefault[];
#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_ANDROID)
// ChromeOS -------------------------------------------------------------------
#if BUILDFLAG(IS_CHROMEOS)
extern const char kAcceleratedMjpegDecodeName[];
extern const char kAcceleratedMjpegDecodeDescription[];
extern const char kAccessibilityBounceKeysName[];
extern const char kAccessibilityBounceKeysDescription[];
extern const char kAccessibilitySlowKeysName[];
extern const char kAccessibilitySlowKeysDescription[];
extern const char kAllowApnModificationPolicyName[];
extern const char kAllowApnModificationPolicyDescription[];
extern const char kAllowCrossDeviceFeatureSuiteName[];
extern const char kAllowCrossDeviceFeatureSuiteDescription[];
extern const char kLinkCrossDeviceInternalsName[];
extern const char kLinkCrossDeviceInternalsDescription[];
extern const char kAllowUserInstalledChromeAppsName[];
extern const char kAllowUserInstalledChromeAppsDescription[];
extern const char kAltClickAndSixPackCustomizationName[];
extern const char kAltClickAndSixPackCustomizationDescription[];
extern const char kAlwaysEnableHdcpName[];
extern const char kAlwaysEnableHdcpDescription[];
extern const char kAlwaysEnableHdcpDefault[];
extern const char kAlwaysEnableHdcpType0[];
extern const char kAlwaysEnableHdcpType1[];
extern const char kApnPoliciesName[];
extern const char kApnPoliciesDescription[];
extern const char kApnRevampName[];
extern const char kApnRevampDescription[];
extern const char kAppLaunchAutomationName[];
extern const char kAppLaunchAutomationDescription[];
extern const char kArcArcOnDemandExperimentName[];
extern const char kArcArcOnDemandExperimentDescription[];
extern const char kArcCustomTabsExperimentName[];
extern const char kArcCustomTabsExperimentDescription[];
extern const char kArcEnableAttestationName[];
extern const char kArcEnableAttestationDescription[];
extern const char kArcExtendInputAnrTimeoutName[];
extern const char kArcExtendInputAnrTimeoutDescription[];
extern const char kArcExtendIntentAnrTimeoutName[];
extern const char kArcExtendIntentAnrTimeoutDescription[];
extern const char kArcExtendServiceAnrTimeoutName[];
extern const char kArcExtendServiceAnrTimeoutDescription[];
extern const char kArcFriendlierErrorDialogName[];
extern const char kArcFriendlierErrorDialogDescription[];
extern const char kArcIdleManagerName[];
extern const char kArcIdleManagerDescription[];
extern const char kArcInstantResponseWindowOpenName[];
extern const char kArcInstantResponseWindowOpenDescription[];
extern const char kArcNativeBridgeToggleName[];
extern const char kArcNativeBridgeToggleDescription[];
extern const char kArcPerAppLanguageName[];
extern const char kArcPerAppLanguageDescription[];
extern const char kArcResizeCompatName[];
extern const char kArcResizeCompatDescription[];
extern const char kArcRoundedWindowCompatName[];
extern const char kArcRoundedWindowCompatDescription[];
extern const char kArcRtVcpuDualCoreName[];
extern const char kArcRtVcpuDualCoreDesc[];
extern const char kArcRtVcpuQuadCoreName[];
extern const char kArcRtVcpuQuadCoreDesc[];
extern const char kArcSwitchToKeyMintDaemonName[];
extern const char kArcSwitchToKeyMintDaemonDesc[];
extern const char kArcSwitchToKeyMintOnTName[];
extern const char kArcSwitchToKeyMintOnTDesc[];
extern const char kArcSwitchToKeyMintOnTOverrideName[];
extern const char kArcSwitchToKeyMintOnTOverrideDesc[];
extern const char kArcSyncInstallPriorityName[];
extern const char kArcSyncInstallPriorityDescription[];
extern const char kArcTouchscreenEmulationName[];
extern const char kArcTouchscreenEmulationDesc[];
extern const char kArcVmmSwapKBShortcutName[];
extern const char kArcVmmSwapKBShortcutDesc[];
extern const char kArcVmMemorySizeName[];
extern const char kArcVmMemorySizeDesc[];
extern const char kArcAAudioMMAPLowLatencyName[];
extern const char kArcAAudioMMAPLowLatencyDescription[];
extern const char kArcEnableVirtioBlkForDataName[];
extern const char kArcEnableVirtioBlkForDataDesc[];
extern const char kArcExternalStorageAccessName[];
extern const char kArcExternalStorageAccessDescription[];
extern const char kArcUnthrottleOnActiveAudioV2Name[];
extern const char kArcUnthrottleOnActiveAudioV2Description[];
extern const char kAshEnableUnifiedDesktopName[];
extern const char kAshEnableUnifiedDesktopDescription[];
extern const char kAshModifierSplitName[];
extern const char kAshModifierSplitDescription[];
extern const char kAshPickerName[];
extern const char kAshPickerDescription[];
extern const char kAshPickerAlwaysShowFeatureTourName[];
extern const char kAshPickerAlwaysShowFeatureTourDescription[];
extern const char kAshPickerCloudName[];
extern const char kAshPickerCloudDescription[];
extern const char kAshPickerGifsName[];
extern const char kAshPickerGifsDescription[];
extern const char kAshPickerGridName[];
extern const char kAshPickerGridDescription[];
extern const char kAshSplitKeyboardRefactorName[];
extern const char kAshSplitKeyboardRefactorDescription[];
extern const char kAshNullTopRowFixName[];
extern const char kAshNullTopRowFixDescription[];
extern const char kAssistantIphName[];
extern const char kAssistantIphDescription[];
extern const char kAudioSelectionImprovementName[];
extern const char kAudioSelectionImprovementDescription[];
extern const char kAutoFramingOverrideName[];
extern const char kAutoFramingOverrideDescription[];
extern const char kAutocorrectByDefaultName[];
extern const char kAutocorrectByDefaultDescription[];
extern const char kAutocorrectParamsTuningName[];
extern const char kAutocorrectParamsTuningDescription[];
extern const char kBatteryBadgeIconName[];
extern const char kBatteryBadgeIconDescription[];
extern const char kBlockTelephonyDevicePhoneMuteName[];
extern const char kBlockTelephonyDevicePhoneMuteDescription[];
extern const char kBluetoothAudioLEAudioOnlyName[];
extern const char kBluetoothAudioLEAudioOnlyDescription[];
extern const char kBluetoothBtsnoopInternalsName[];
extern const char kBluetoothBtsnoopInternalsDescription[];
extern const char kBluetoothFlossTelephonyName[];
extern const char kBluetoothFlossTelephonyDescription[];
extern const char kBluetoothUseFlossName[];
extern const char kBluetoothUseFlossDescription[];
extern const char kBluetoothWifiQSPodRefreshName[];
extern const char kBluetoothWifiQSPodRefreshDescription[];
extern const char kBluetoothUseLLPrivacyName[];
extern const char kBluetoothUseLLPrivacyDescription[];
extern const char kCampbellGlyphName[];
extern const char kCampbellGlyphDescription[];
extern const char kCampbellKeyName[];
extern const char kCampbellKeyDescription[];
extern const char kCaptureModeEducationName[];
extern const char kCaptureModeEducationDescription[];
extern const char kCaptureModeEducationBypassLimitsName[];
extern const char kCaptureModeEducationBypassLimitsDescription[];
extern const char kCrosContentAdjustedRefreshRateName[];
extern const char kCrosContentAdjustedRefreshRateDescription[];
extern const char kCrosSoulName[];
extern const char kCrosSoulDescription[];
extern const char kCrosSoulGravediggerName[];
extern const char kCrosSoulGravediggerDescription[];
extern const char kDesksTemplatesName[];
extern const char kDesksTemplatesDescription[];
extern const char kForceControlFaceAeName[];
extern const char kForceControlFaceAeDescription[];
extern const char kCellularBypassESimInstallationConnectivityCheckName[];
extern const char kCellularBypassESimInstallationConnectivityCheckDescription[];
extern const char kCellularUseSecondEuiccName[];
extern const char kCellularUseSecondEuiccDescription[];
extern const char kClipboardHistoryLongpressName[];
extern const char kClipboardHistoryLongpressDescription[];
extern const char kClipboardHistoryUrlTitlesName[];
extern const char kClipboardHistoryUrlTitlesDescription[];
extern const char kCloudGamingDeviceName[];
extern const char kCloudGamingDeviceDescription[];
extern const char kComponentUpdaterTestRequestName[];
extern const char kComponentUpdaterTestRequestDescription[];
extern const char kCroshSWAName[];
extern const char kCroshSWADescription[];
extern const char kEnableServiceWorkersForChromeUntrustedName[];
extern const char kEnableServiceWorkersForChromeUntrustedDescription[];
extern const char kEnterpriseReportingUIName[];
extern const char kEnterpriseReportingUIDescription[];
extern const char kESimEmptyActivationCodeSupportedName[];
extern const char kESimEmptyActivationCodeSupportedDescription[];
extern const char kPermissiveUsbPassthroughName[];
extern const char kPermissiveUsbPassthroughDescription[];
extern const char kCameraAngleBackendName[];
extern const char kCameraAngleBackendDescription[];
extern const char kDisableBruschettaInstallChecksName[];
extern const char kDisableBruschettaInstallChecksDescription[];
extern const char kCrostiniContainerInstallName[];
extern const char kCrostiniContainerInstallDescription[];
extern const char kCrostiniGpuSupportName[];
extern const char kCrostiniGpuSupportDescription[];
extern const char kCrostiniResetLxdDbName[];
extern const char kCrostiniResetLxdDbDescription[];
extern const char kCrostiniContainerlessName[];
extern const char kCrostiniContainerlessDescription[];
extern const char kCrostiniMultiContainerName[];
extern const char kCrostiniMultiContainerDescription[];
extern const char kCrostiniQtImeSupportName[];
extern const char kCrostiniQtImeSupportDescription[];
extern const char kCrostiniVirtualKeyboardSupportName[];
extern const char kCrostiniVirtualKeyboardSupportDescription[];
extern const char kChromeboxUsbPassthroughRestrictionsName[];
extern const char kChromeboxUsbPassthroughRestrictionsDescription[];
extern const char kConchName[];
extern const char kConchDescription[];
extern const char kConchSystemAudioFromMicName[];
extern const char kConchSystemAudioFromMicDescription[];
extern const char kDisableCancelAllTouchesName[];
extern const char kDisableCancelAllTouchesDescription[];
extern const char kDisableExplicitDmaFencesName[];
extern const char kDisableExplicitDmaFencesDescription[];
extern const char kDisplayAlignmentAssistanceName[];
extern const char kDisplayAlignmentAssistanceDescription[];
extern const char kFaceRetouchOverrideName[];
extern const char kFaceRetouchOverrideDescription[];
extern const char kFastPairDebugMetadataName[];
extern const char kFastPairDebugMetadataDescription[];
extern const char kFastPairHandshakeLongTermRefactorName[];
extern const char kFastPairHandshakeLongTermRefactorDescription[];
extern const char kFastPairKeyboardsName[];
extern const char kFastPairKeyboardsDescription[];
extern const char kFastPairPwaCompanionName[];
extern const char kFastPairPwaCompanionDescription[];
extern const char kFrameSinkDesktopCapturerInCrdName[];
extern const char kFrameSinkDesktopCapturerInCrdDescription[];
extern const char kUseHDRTransferFunctionName[];
extern const char kUseHDRTransferFunctionDescription[];
extern const char kEnableExternalDisplayHdr10Name[];
extern const char kEnableExternalDisplayHdr10Description[];
extern const char kDoubleTapToZoomInTabletModeName[];
extern const char kDoubleTapToZoomInTabletModeDescription[];
extern const char kQuickSettingsPWANotificationsDescription[];
extern const char kDriveFsMirroringName[];
extern const char kDriveFsMirroringDescription[];
extern const char kDriveFsShowCSEFilesName[];
extern const char kDriveFsShowCSEFilesDescription[];
extern const char kEnableAssistantRoutinesName[];
extern const char kEnableAssistantRoutinesDescription[];
extern const char kEnableBackgroundBlurName[];
extern const char kEnableBackgroundBlurDescription[];
extern const char kEnableBrightnessControlInSettingsName[];
extern const char kEnableBrightnessControlInSettingsDescription[];
extern const char kEnableDisplayPerformanceModeName[];
extern const char kEnableDisplayPerformanceModeDescription[];
extern const char kDisableDnsProxyName[];
extern const char kDisableDnsProxyDescription[];
extern const char kDisconnectWiFiOnEthernetConnectedName[];
extern const char kDisconnectWiFiOnEthernetConnectedDescription[];
extern const char kEnableRFC8925Name[];
extern const char kEnableRFC8925Description[];
extern const char kEnableRootNsDnsProxyName[];
extern const char kEnableRootNsDnsProxyDescription[];
extern const char kEnableEdidBasedDisplayIdsName[];
extern const char kEnableEdidBasedDisplayIdsDescription[];
extern const char kTiledDisplaySupportName[];
extern const char kTiledDisplaySupportDescription[];
extern const char kEnableDozeModePowerSchedulerName[];
extern const char kEnableDozeModePowerSchedulerDescription[];
extern const char kEnableExternalKeyboardsInDiagnosticsAppName[];
extern const char kEnableExternalKeyboardsInDiagnosticsAppDescription[];
extern const char kEnableFastInkForSoftwareCursorName[];
extern const char kEnableFastInkForSoftwareCursorDescription[];
extern const char kEnableGetDebugdLogsInParallelName[];
extern const char kEnableGetDebugdLogsInParallelDescription[];
extern const char kEnableHostnameSettingName[];
extern const char kEnableHostnameSettingDescription[];
extern const char kEnableGesturePropertiesDBusServiceName[];
extern const char kEnableGesturePropertiesDBusServiceDescription[];
extern const char kEnableGoogleAssistantDspName[];
extern const char kEnableGoogleAssistantDspDescription[];
extern const char kEnableGoogleAssistantStereoInputName[];
extern const char kEnableGoogleAssistantStereoInputDescription[];
extern const char kEnableGoogleAssistantAecName[];
extern const char kEnableGoogleAssistantAecDescription[];
extern const char kEnableInputEventLoggingName[];
extern const char kEnableInputEventLoggingDescription[];
extern const char kEnableKeyboardBacklightControlInSettingsName[];
extern const char kEnableKeyboardBacklightControlInSettingsDescription[];
extern const char kEnableKeyboardRewriterFixName[];
extern const char kEnableKeyboardRewriterFixDescription[];
extern const char kEnableLibinputToHandleTouchpadName[];
extern const char kEnableLibinputToHandleTouchpadDescription[];
extern const char kEnableFakeKeyboardHeuristicName[];
extern const char kEnableFakeKeyboardHeuristicDescription[];
extern const char kEnableFakeMouseHeuristicName[];
extern const char kEnableFakeMouseHeuristicDescription[];
extern const char kEnableHeatmapPalmDetectionName[];
extern const char kEnableHeatmapPalmDetectionDescription[];
extern const char kEnableKeyboardUsedPalmSuppressionName[];
extern const char kEnableKeyboardUsedPalmSuppressionDescription[];
extern const char kEnableNeuralStylusPalmRejectionName[];
extern const char kEnableNeuralStylusPalmRejectionDescription[];
extern const char kEnableEdgeDetectionName[];
extern const char kEnableEdgeDetectionDescription[];
extern const char kEnableFastTouchpadClickName[];
extern const char kEnableFastTouchpadClickDescription[];
extern const char kEnablePalmSuppressionName[];
extern const char kEnablePalmSuppressionDescription[];
extern const char kEnableSeamlessRefreshRateSwitchingName[];
extern const char kEnableSeamlessRefreshRateSwitchingDescription[];
extern const char kEnableToggleCameraShortcutName[];
extern const char kEnableToggleCameraShortcutDescription[];
extern const char kEnableTouchpadsInDiagnosticsAppName[];
extern const char kEnableTouchpadsInDiagnosticsAppDescription[];
extern const char kEnableTouchscreensInDiagnosticsAppName[];
extern const char kEnableTouchscreensInDiagnosticsAppDescription[];
extern const char kEnableWifiQosName[];
extern const char kEnableWifiQosDescription[];
extern const char kEnableWifiQosEnterpriseName[];
extern const char kEnableWifiQosEnterpriseDescription[];
extern const char kEapGtcWifiAuthenticationName[];
extern const char kEapGtcWifiAuthenticationDescription[];
extern const char kEcheSWAName[];
extern const char kEcheSWADescription[];
extern const char kEcheLauncherName[];
extern const char kEcheLauncherDescription[];
extern const char kEcheLauncherListViewName[];
extern const char kEcheLauncherListViewDescription[];
extern const char kEcheLauncherIconsInMoreAppsButtonName[];
extern const char kEcheLauncherIconsInMoreAppsButtonDescription[];
extern const char kEcheSWADebugModeName[];
extern const char kEcheSWADebugModeDescription[];
extern const char kEcheSWAMeasureLatencyName[];
extern const char kEcheSWAMeasureLatencyDescription[];
extern const char kEcheSWASendStartSignalingName[];
extern const char kEcheSWASendStartSignalingDescription[];
extern const char kEcheSWADisableStunServerName[];
extern const char kEcheSWADisableStunServerDescription[];
extern const char kEcheSWACheckAndroidNetworkInfoName[];
extern const char kEcheSWACheckAndroidNetworkInfoDescription[];
extern const char kEnableOAuthIppName[];
extern const char kEnableOAuthIppDescription[];
extern const char kEnableOngoingProcessesName[];
extern const char kEnableOngoingProcessesDescription[];
extern const char kPanelSelfRefresh2Name[];
extern const char kPanelSelfRefresh2Description[];
extern const char kEnableVariableRefreshRateName[];
extern const char kEnableVariableRefreshRateDescription[];
extern const char kEnterOverviewFromWallpaperName[];
extern const char kEnterOverviewFromWallpaperDescription[];
extern const char kEolIncentiveName[];
extern const char kEolIncentiveDescription[];
extern const char kEolResetDismissedPrefsName[];
extern const char kEolResetDismissedPrefsDescription[];
extern const char kEventBasedLogUpload[];
extern const char kEventBasedLogUploadDescription[];
extern const char kExcludeDisplayInMirrorModeName[];
extern const char kExcludeDisplayInMirrorModeDescription[];
extern const char kExoGamepadVibrationName[];
extern const char kExoGamepadVibrationDescription[];
extern const char kExoOrdinalMotionName[];
extern const char kExoOrdinalMotionDescription[];
extern const char kExperimentalAccessibilityDictationContextCheckingName[];
extern const char
kExperimentalAccessibilityDictationContextCheckingDescription[];
extern const char kExperimentalAccessibilityGoogleTtsHighQualityVoicesName[];
extern const char
kExperimentalAccessibilityGoogleTtsHighQualityVoicesDescription[];
extern const char kExperimentalAccessibilityManifestV3Name[];
extern const char kExperimentalAccessibilityManifestV3Description[];
extern const char kAccessibilityManifestV3AccessibilityCommonName[];
extern const char kAccessibilityManifestV3AccessibilityCommonDescription[];
extern const char kAccessibilityManifestV3BrailleImeName[];
extern const char kAccessibilityManifestV3BrailleImeDescription[];
extern const char kAccessibilityManifestV3ChromeVoxName[];
extern const char kAccessibilityManifestV3ChromeVoxDescription[];
extern const char kAccessibilityManifestV3EnhancedNetworkTtsName[];
extern const char kAccessibilityManifestV3EnhancedNetworkTtsDescription[];
extern const char kAccessibilityManifestV3EspeakNGName[];
extern const char kAccessibilityManifestV3EspeakNGDescription[];
extern const char kAccessibilityManifestV3SelectToSpeakName[];
extern const char kAccessibilityManifestV3SelectToSpeakDescription[];
extern const char kAccessibilityManifestV3SwitchAccessName[];
extern const char kAccessibilityManifestV3SwitchAccessDescription[];
extern const char kExperimentalAccessibilitySwitchAccessTextName[];
extern const char kExperimentalAccessibilitySwitchAccessTextDescription[];
extern const char kFastDrmMasterDropName[];
extern const char kFastDrmMasterDropDescription[];
extern const char kFileTransferEnterpriseConnectorName[];
extern const char kFileTransferEnterpriseConnectorDescription[];
extern const char kFileTransferEnterpriseConnectorUIName[];
extern const char kFileTransferEnterpriseConnectorUIDescription[];
extern const char kFilesConflictDialogName[];
extern const char kFilesConflictDialogDescription[];
extern const char kFilesExtractArchiveName[];
extern const char kFilesExtractArchiveDescription[];
extern const char kFilesLocalImageSearchName[];
extern const char kFilesLocalImageSearchDescription[];
extern const char kFilesMaterializedViewsName[];
extern const char kFilesMaterializedViewsDescription[];
extern const char kFilesSinglePartitionFormatName[];
extern const char kFilesSinglePartitionFormatDescription[];
extern const char kFilesTrashAutoCleanupName[];
extern const char kFilesTrashAutoCleanupDescription[];
extern const char kFilesTrashDriveName[];
extern const char kFilesTrashDriveDescription[];
extern const char kFileSystemProviderCloudFileSystemName[];
extern const char kFileSystemProviderCloudFileSystemDescription[];
extern const char kFileSystemProviderContentCacheName[];
extern const char kFileSystemProviderContentCacheDescription[];
extern const char kFirmwareUpdateUIV2Name[];
extern const char kFirmwareUpdateUIV2Description[];
extern const char kFirstPartyVietnameseInputName[];
extern const char kFirstPartyVietnameseInputDescription[];
extern const char kFocusFollowsCursorName[];
extern const char kFocusFollowsCursorDescription[];
extern const char kFuseBoxDebugName[];
extern const char kFuseBoxDebugDescription[];
extern const char kGameDashboardGamepadSupport[];
extern const char kGameDashboardGamepadSupportDescription[];
extern const char kGameDashboardGamePWAs[];
extern const char kGameDashboardGamePWAsDescription[];
extern const char kGameDashboardGamesInTest[];
extern const char kGameDashboardGamesInTestDescription[];
extern const char kGameDashboardUtilities[];
extern const char kGameDashboardUtilitiesDescription[];
extern const char kAppLaunchShortcut[];
extern const char kAppLaunchShortcutDescription[];
extern const char kGlanceablesTimeManagementClassroomStudentViewName[];
extern const char kGlanceablesTimeManagementClassroomStudentViewDescription[];
extern const char kGlanceablesTimeManagementTasksViewName[];
extern const char kGlanceablesTimeManagementTasksViewDescription[];
extern const char kHelpAppAppDetailPageName[];
extern const char kHelpAppAppDetailPageDescription[];
extern const char kHelpAppAppsListName[];
extern const char kHelpAppAppsListDescription[];
extern const char kHelpAppAutoTriggerInstallDialogName[];
extern const char kHelpAppAutoTriggerInstallDialogDescription[];
extern const char kHelpAppHomePageAppArticlesName[];
extern const char kHelpAppHomePageAppArticlesDescription[];
extern const char kHelpAppLauncherSearchName[];
extern const char kHelpAppLauncherSearchDescription[];
extern const char kHelpAppOnboardingRevampName[];
extern const char kHelpAppOnboardingRevampDescription[];
extern const char kHelpAppOpensInsteadOfReleaseNotesNotificationName[];
extern const char kHelpAppOpensInsteadOfReleaseNotesNotificationDescription[];
extern const char kHoldingSpaceSuggestionsName[];
extern const char kHoldingSpaceSuggestionsDescription[];
extern const char kHotspotName[];
extern const char kHotspotDescription[];
extern const char kImeAssistMultiWordName[];
extern const char kImeAssistMultiWordDescription[];
extern const char kImeFstDecoderParamsUpdateName[];
extern const char kImeFstDecoderParamsUpdateDescription[];
extern const char kImeKoreanOnlyModeSwitchOnRightAltName[];
extern const char kImeKoreanOnlyModeSwitchOnRightAltDescription[];
extern const char kImeSwitchCheckConnectionStatusName[];
extern const char kImeSwitchCheckConnectionStatusDescription[];
extern const char kIppFirstSetupForUsbPrintersName[];
extern const char kIppFirstSetupForUsbPrintersDescription[];
extern const char kHindiInscriptLayoutName[];
extern const char kHindiInscriptLayoutDescription[];
extern const char kImeManifestV3Name[];
extern const char kImeManifestV3Description[];
extern const char kImeSystemEmojiPickerGIFSupportName[];
extern const char kImeSystemEmojiPickerGIFSupportDescription[];
extern const char kImeSystemEmojiPickerJellySupportName[];
extern const char kImeSystemEmojiPickerJellySupportDescription[];
extern const char kImeSystemEmojiPickerMojoSearchName[];
extern const char kImeSystemEmojiPickerMojoSearchDescription[];
extern const char kImeSystemEmojiPickerVariantGroupingName[];
extern const char kImeSystemEmojiPickerVariantGroupingDescription[];
extern const char kImeUsEnglishModelUpdateName[];
extern const char kImeUsEnglishModelUpdateDescription[];
extern const char kCrosComponentsName[];
extern const char kCrosComponentsDescription[];
extern const char kLanguagePacksInSettingsName[];
extern const char kLanguagePacksInSettingsDescription[];
extern const char kUseMlServiceForNonLongformHandwritingOnAllBoardsName[];
extern const char
kUseMlServiceForNonLongformHandwritingOnAllBoardsDescription[];
extern const char kLauncherContinueSectionWithRecentsName[];
extern const char kLauncherContinueSectionWithRecentsDescription[];
extern const char kLauncherItemSuggestName[];
extern const char kLauncherItemSuggestDescription[];
extern const char kLimitShelfItemsToActiveDeskName[];
extern const char kLimitShelfItemsToActiveDeskDescription[];
extern const char kListAllDisplayModesName[];
extern const char kListAllDisplayModesDescription[];
extern const char kLockScreenNotificationName[];
extern const char kLockScreenNotificationDescription[];
extern const char kMahiName[];
extern const char kMahiDescription[];
extern const char kMahiPanelResizableName[];
extern const char kMahiPanelResizableDescription[];
extern const char kMahiSummarizeSelectedName[];
extern const char kMahiSummarizeSelectedDescription[];
extern const char kMahiDebuggingName[];
extern const char kMahiDebuggingDescription[];
extern const char kMediaAppImageMantisReimagineName[];
extern const char kMediaAppImageMantisReimagineDescription[];
extern const char kMediaAppPdfMahiName[];
extern const char kMediaAppPdfMahiDescription[];
extern const char kMicrophoneMuteSwitchDeviceName[];
extern const char kMicrophoneMuteSwitchDeviceDescription[];
extern const char kMultiCalendarSupportName[];
extern const char kMultiCalendarSupportDescription[];
extern const char kMultiZoneRgbKeyboardName[];
extern const char kMultiZoneRgbKeyboardDescription[];
extern const char kNotificationWidthIncreaseName[];
extern const char kNotificationWidthIncreaseDescription[];
extern const char kEnableNearbyBleV2Name[];
extern const char kEnableNearbyBleV2Description[];
extern const char kEnableNearbyBleV2ExtendedAdvertisingName[];
extern const char kEnableNearbyBleV2ExtendedAdvertisingDescription[];
extern const char kEnableNearbyBleV2GattServerName[];
extern const char kEnableNearbyBleV2GattServerDescription[];
extern const char kEnableNearbyBluetoothClassicAdvertisingName[];
extern const char kEnableNearbyBluetoothClassicAdvertisingDescription[];
extern const char kEnableNearbyMdnsName[];
extern const char kEnableNearbyMdnsDescription[];
extern const char kEnableNearbyWebRtcName[];
extern const char kEnableNearbyWebRtcDescription[];
extern const char kEnableNearbyWifiDirectName[];
extern const char kEnableNearbyWifiDirectDescription[];
extern const char kEnableNearbyWifiLanName[];
extern const char kEnableNearbyWifiLanDescription[];
extern const char kNearbyPresenceName[];
extern const char kNearbyPresenceDescription[];
extern const char kNotificationsIgnoreRequireInteractionName[];
extern const char kNotificationsIgnoreRequireInteractionDescription[];
extern const char kOfflineItemsInNotificationsName[];
extern const char kOfflineItemsInNotificationsDescription[];
extern const char kOnDeviceAppControlsName[];
extern const char kOnDeviceAppControlsDescription[];
extern const char kPcieBillboardNotificationName[];
extern const char kPcieBillboardNotificationDescription[];
extern const char kPerformantSplitViewResizing[];
extern const char kPerformantSplitViewResizingDescription[];
extern const char kPhoneHubCallNotificationName[];
extern const char kPhoneHubCallNotificationDescription[];
extern const char kPompanoName[];
extern const char kPompanoDescritpion[];
extern const char kPrintingPpdChannelName[];
extern const char kPrintingPpdChannelDescription[];
extern const char kPrintPreviewCrosAppName[];
extern const char kPrintPreviewCrosAppDescription[];
extern const char kProductivityLauncherImageSearchName[];
extern const char kProductivityLauncherImageSearchDescription[];
extern const char kProjectorAppDebugName[];
extern const char kProjectorAppDebugDescription[];
extern const char kProjectorGm3Name[];
extern const char kProjectorGm3Description[];
extern const char kProjectorServerSideSpeechRecognitionName[];
extern const char kProjectorServerSideSpeechRecognitionDescription[];
extern const char kProjectorServerSideUsmName[];
extern const char kProjectorServerSideUsmDescription[];
extern const char kProjectorUseDVSPlaybackEndpointName[];
extern const char kProjectorUseDVSPlaybackEndpointDescription[];
extern const char kReleaseNotesNotificationAllChannelsName[];
extern const char kReleaseNotesNotificationAllChannelsDescription[];
extern const char kReleaseNotesNotificationAlwaysEligibleName[];
extern const char kReleaseNotesNotificationAlwaysEligibleDescription[];
extern const char kRenderArcNotificationsByChromeName[];
extern const char kRenderArcNotificationsByChromeDescription[];
extern const char kRunVideoCaptureServiceInBrowserProcessName[];
extern const char kRunVideoCaptureServiceInBrowserProcessDescription[];
extern const char kArcWindowPredictorName[];
extern const char kArcWindowPredictorDescription[];
extern const char kScalableIphDebugName[];
extern const char kScalableIphDebugDescription[];
extern const char kScannerDisclaimerDebugOverrideName[];
extern const char kScannerDisclaimerDebugOverrideDescription[];
extern const char kScannerDisclaimerDebugOverrideChoiceDefault[];
extern const char kScannerDisclaimerDebugOverrideChoiceAlwaysReminder[];
extern const char kScannerDisclaimerDebugOverrideChoiceAlwaysFull[];
extern const char kSealKeyName[];
extern const char kSealKeyDescription[];
extern const char kShelfAutoHideSeparationName[];
extern const char kShelfAutoHideSeparationDescription[];
extern const char kShimlessRMAOsUpdateName[];
extern const char kShimlessRMAOsUpdateDescription[];
extern const char kShimlessRMAHardwareValidationSkipName[];
extern const char kShimlessRMAHardwareValidationSkipDescription[];
extern const char kShimlessRMADynamicDeviceInfoInputsName[];
extern const char kShimlessRMADynamicDeviceInfoInputsDescription[];
extern const char kSchedulerConfigurationName[];
extern const char kSchedulerConfigurationDescription[];
extern const char kSchedulerConfigurationConservative[];
extern const char kSchedulerConfigurationPerformance[];
extern const char kSnapGroupsName[];
extern const char kSnapGroupsDescription[];
extern const char kMediaDynamicCgroupName[];
extern const char kMediaDynamicCgroupDescription[];
extern const char kMissiveStorageName[];
extern const char kMissiveStorageDescription[];
extern const char kShowBluetoothDebugLogToggleName[];
extern const char kShowBluetoothDebugLogToggleDescription[];
extern const char kShowTapsName[];
extern const char kShowTapsDescription[];
extern const char kShowTouchHudName[];
extern const char kShowTouchHudDescription[];
extern const char kSnoopingProtectionName[];
extern const char kSnoopingProtectionDescription[];
extern const char kContinuousOverviewScrollAnimationName[];
extern const char kContinuousOverviewScrollAnimationDescription[];
extern const char kSpectreVariant2MitigationName[];
extern const char kSpectreVariant2MitigationDescription[];
extern const char kSystemJapanesePhysicalTypingName[];
extern const char kSystemJapanesePhysicalTypingDescription[];
extern const char kSupportF11AndF12ShortcutsName[];
extern const char kSupportF11AndF12ShortcutsDescription[];
extern const char kTerminalDevName[];
extern const char kTerminalDevDescription[];
extern const char kTetherName[];
extern const char kTetherDescription[];
extern const char kTilingWindowResizeName[];
extern const char kTilingWindowResizeDescription[];
extern const char kTouchscreenCalibrationName[];
extern const char kTouchscreenCalibrationDescription[];
extern const char kTouchscreenMappingName[];
extern const char kTouchscreenMappingDescription[];
extern const char kTrafficCountersEnabledName[];
extern const char kTrafficCountersEnabledDescription[];
extern const char kTrafficCountersForWiFiTestingName[];
extern const char kTrafficCountersForWiFiTestingDescription[];
extern const char kUiDevToolsName[];
extern const char kUiDevToolsDescription[];
extern const char kUiSlowAnimationsName[];
extern const char kUiSlowAnimationsDescription[];
extern const char kUploadOfficeToCloudName[];
extern const char kUploadOfficeToCloudDescription[];
extern const char kUseAnnotatedAccountIdName[];
extern const char kUseAnnotatedAccountIdDescription[];
extern const char kUseFakeDeviceForMediaStreamName[];
extern const char kUseFakeDeviceForMediaStreamDescription[];
extern const char kUseLegacyDHCPCDName[];
extern const char kUseLegacyDHCPCDDescription[];
extern const char kUseManagedPrintJobOptionsInPrintPreviewName[];
extern const char kUseManagedPrintJobOptionsInPrintPreviewDescription[];
extern const char kVcDlcUiName[];
extern const char kVcDlcUiDescription[];
extern const char kVirtualKeyboardName[];
extern const char kVirtualKeyboardDescription[];
extern const char kVirtualKeyboardDisabledName[];
extern const char kVirtualKeyboardDisabledDescription[];
extern const char kVirtualKeyboardGlobalEmojiPreferencesName[];
extern const char kVirtualKeyboardGlobalEmojiPreferencesDescription[];
extern const char kWakeOnWifiAllowedName[];
extern const char kWakeOnWifiAllowedDescription[];
extern const char kWelcomeExperienceName[];
extern const char kWelcomeExperienceDescription[];
extern const char kWelcomeExperienceTestUnsupportedDevicesName[];
extern const char kWelcomeExperienceTestUnsupportedDevicesDescription[];
extern const char kWelcomeTourName[];
extern const char kWelcomeTourDescription[];
extern const char kWelcomeTourForceUserEligibilityName[];
extern const char kWelcomeTourForceUserEligibilityDescription[];
extern const char kWifiConnectMacAddressRandomizationName[];
extern const char kWifiConnectMacAddressRandomizationDescription[];
extern const char kWifiConcurrencyName[];
extern const char kWifiConcurrencyDescription[];
extern const char kWindowSplittingName[];
extern const char kWindowSplittingDescription[];
extern const char kLauncherKeyShortcutInBestMatchName[];
extern const char kLauncherKeyShortcutInBestMatchDescription[];
extern const char kLauncherKeywordExtractionScoring[];
extern const char kLauncherKeywordExtractionScoringDescription[];
extern const char kLauncherLocalImageSearchName[];
extern const char kLauncherLocalImageSearchDescription[];
extern const char kLauncherLocalImageSearchConfidenceName[];
extern const char kLauncherLocalImageSearchConfidenceDescription[];
extern const char kLauncherLocalImageSearchRelevanceName[];
extern const char kLauncherLocalImageSearchRelevanceDescription[];
extern const char kLauncherLocalImageSearchOcrName[];
extern const char kLauncherLocalImageSearchOcrDescription[];
extern const char kLauncherLocalImageSearchIcaName[];
extern const char kLauncherLocalImageSearchIcaDescription[];
extern const char kLauncherSearchControlName[];
extern const char kLauncherSearchControlDescription[];
extern const char kLauncherNudgeSessionResetName[];
extern const char kLauncherNudgeSessionResetDescription[];
extern const char kMacAddressRandomizationName[];
extern const char kMacAddressRandomizationDescription[];
extern const char kSysUiShouldHoldbackDriveIntegrationName[];
extern const char kSysUiShouldHoldbackDriveIntegrationDescription[];
extern const char kSysUiShouldHoldbackTaskManagementName[];
extern const char kSysUiShouldHoldbackTaskManagementDescription[];
extern const char kTetheringExperimentalFunctionalityName[];
extern const char kTetheringExperimentalFunctionalityDescription[];
// Prefer keeping this section sorted to adding new declarations down here.
#endif // #if BUILDFLAG(IS_CHROMEOS)
#if BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX)
extern const char kGetAllScreensMediaName[];
extern const char kGetAllScreensMediaDescription[];
#endif // BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX)
#if BUILDFLAG(IS_CHROMEOS)
extern const char kAddPrinterViaPrintscanmgrName[];
extern const char kAddPrinterViaPrintscanmgrDescription[];
extern const char kCrosAppsBackgroundEventHandlingName[];
extern const char kCrosAppsBackgroundEventHandlingDescription[];
extern const char kRunOnOsLoginName[];
extern const char kRunOnOsLoginDescription[];
extern const char kPreventCloseName[];
extern const char kPreventCloseDescription[];
extern const char kFileSystemAccessGetCloudIdentifiersName[];
extern const char kFileSystemAccessGetCloudIdentifiersDescription[];
extern const char kCrOSDspBasedAecAllowedName[];
extern const char kCrOSDspBasedAecAllowedDescription[];
extern const char kCrOSDspBasedNsAllowedName[];
extern const char kCrOSDspBasedNsAllowedDescription[];
extern const char kCrOSDspBasedAgcAllowedName[];
extern const char kCrOSDspBasedAgcAllowedDescription[];
extern const char kCrosMallName[];
extern const char kCrosMallDescription[];
extern const char kCrosMallManagedName[];
extern const char kCrosMallManagedDescription[];
extern const char kCrosMallUrlName[];
extern const char kCrosMallUrlDescription[];
extern const char kCrosPrivacyHubName[];
extern const char kCrosPrivacyHubDescription[];
extern const char kCrosSeparateGeoApiKeyName[];
extern const char kCrosSeparateGeoApiKeyDescription[];
extern const char kCrOSEnforceMonoAudioCaptureName[];
extern const char kCrOSEnforceMonoAudioCaptureDescription[];
extern const char kCrOSEnforceSystemAecName[];
extern const char kCrOSEnforceSystemAecDescription[];
extern const char kCrOSEnforceSystemAecAgcName[];
extern const char kCrOSEnforceSystemAecAgcDescription[];
extern const char kCrOSEnforceSystemAecNsName[];
extern const char kCrOSEnforceSystemAecNsDescription[];
extern const char kCrOSEnforceSystemAecNsAgcName[];
extern const char kCrOSEnforceSystemAecNsAgcDescription[];
extern const char kDisableIdleSocketsCloseOnMemoryPressureName[];
extern const char kDisableIdleSocketsCloseOnMemoryPressureDescription[];
extern const char kLockedModeName[];
extern const char kLockedModeDescription[];
extern const char kOneGroupPerRendererName[];
extern const char kOneGroupPerRendererDescription[];
extern const char kPlatformKeysChangesWave1Name[];
extern const char kPlatformKeysChangesWave1Description[];
extern const char kPrintPreviewCrosPrimaryName[];
extern const char kPrintPreviewCrosPrimaryDescription[];
extern const char kDisableQuickAnswersV2TranslationName[];
extern const char kDisableQuickAnswersV2TranslationDescription[];
extern const char kQuickAnswersRichCardName[];
extern const char kQuickAnswersRichCardDescription[];
extern const char kQuickAnswersMaterialNextUIName[];
extern const char kQuickAnswersMaterialNextUIDescription[];
extern const char kQuickOfficeForceFileDownloadName[];
extern const char kQuickOfficeForceFileDownloadDescription[];
extern const char kWebPrintingApiName[];
extern const char kWebPrintingApiDescription[];
extern const char kIgnoreUiGainsName[];
extern const char kIgnoreUiGainsDescription[];
extern const char kShowForceRespectUiGainsToggleName[];
extern const char kShowForceRespectUiGainsToggleDescription[];
extern const char kCrOSSystemVoiceIsolationOptionName[];
extern const char kCrOSSystemVoiceIsolationOptionDescription[];
extern const char kShowSpatialAudioToggleName[];
extern const char kShowSpatialAudioToggleDescription[];
extern const char kSingleCaCertVerificationPhase0Name[];
extern const char kSingleCaCertVerificationPhase0Description[];
extern const char kSingleCaCertVerificationPhase1Name[];
extern const char kSingleCaCertVerificationPhase1Description[];
extern const char kSingleCaCertVerificationPhase2Name[];
extern const char kSingleCaCertVerificationPhase2Description[];
#endif // BUILDFLAG(IS_CHROMEOS)
#if BUILDFLAG(IS_CHROMEOS) && BUILDFLAG(USE_LINUX_VIDEO_ACCELERATION)
extern const char kChromeOSHWVBREncodingName[];
extern const char kChromeOSHWVBREncodingDescription[];
#if defined(ARCH_CPU_ARM_FAMILY)
extern const char kUseGLForScalingName[];
extern const char kUseGLForScalingDescription[];
extern const char kPreferGLImageProcessorName[];
extern const char kPreferGLImageProcessorDescription[];
extern const char kPreferSoftwareMT21Name[];
extern const char kPreferSoftwareMT21Description[];
extern const char kEnableProtectedVulkanDetilingName[];
extern const char kEnableProtectedVulkanDetilingDescription[];
extern const char kEnableArmHwdrm10bitOverlaysName[];
extern const char kEnableArmHwdrm10bitOverlaysDescription[];
#if BUILDFLAG(USE_CHROMEOS_PROTECTED_MEDIA)
extern const char kEnableArmHwdrmName[];
extern const char kEnableArmHwdrmDescription[];
#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)
extern const char kOzonePlatformHintChoiceDefault[];
extern const char kOzonePlatformHintChoiceAuto[];
extern const char kOzonePlatformHintChoiceX11[];
extern const char kOzonePlatformHintChoiceWayland[];
extern const char kOzonePlatformHintName[];
extern const char kOzonePlatformHintDescription[];
extern const char kPulseaudioLoopbackForCastName[];
extern const char kPulseaudioLoopbackForCastDescription[];
extern const char kPulseaudioLoopbackForScreenShareName[];
extern const char kPulseaudioLoopbackForScreenShareDescription[];
extern const char kSimplifiedTabDragUIName[];
extern const char kSimplifiedTabDragUIDescription[];
extern const char kWaylandLinuxDrmSyncobjName[];
extern const char kWaylandLinuxDrmSyncobjDescription[];
extern const char kWaylandPerWindowScalingName[];
extern const char kWaylandPerWindowScalingDescription[];
extern const char kWaylandSessionManagementName[];
extern const char kWaylandSessionManagementDescription[];
extern const char kWaylandTextInputV3Name[];
extern const char kWaylandTextInputV3Description[];
extern const char kWaylandUiScalingName[];
extern const char kWaylandUiScalingDescription[];
#endif // BUILDFLAG(IS_LINUX)
// Random platform combinations -----------------------------------------------
#if BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN)
extern const char kZeroCopyVideoCaptureName[];
extern const char kZeroCopyVideoCaptureDescription[];
#endif // BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN)
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX)
extern const char kWebBluetoothConfirmPairingSupportName[];
extern const char kWebBluetoothConfirmPairingSupportDescription[];
#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX)
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC)
#if BUILDFLAG(ENABLE_PRINTING)
extern const char kCupsIppPrintingBackendName[];
extern const char kCupsIppPrintingBackendDescription[];
#endif // BUILDFLAG(ENABLE_PRINTING)
#endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC)
#if BUILDFLAG(IS_CHROMEOS)
extern const char kScreenlockReauthCardName[];
extern const char kScreenlockReauthCardDescription[];
#endif // BUILDFLAG(IS_CHROMEOS)
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || \
BUILDFLAG(IS_CHROMEOS)
extern const char kFollowingFeedSidepanelName[];
extern const char kFollowingFeedSidepanelDescription[];
extern const char kLocalNetworkAccessChecksName[];
extern const char kLocalNetworkAccessChecksDescription[];
#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) ||
// BUILDFLAG(IS_CHROMEOS)
#if BUILDFLAG(IS_ANDROID)
extern const char kTaskManagerClankName[];
extern const char kTaskManagerClankDescription[];
#else
extern const char kTaskManagerDesktopRefreshName[];
extern const char kTaskManagerDesktopRefreshDescription[];
#endif // BUILDFLAG(IS_ANDROID)
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
extern const char kEnableNetworkServiceSandboxName[];
extern const char kEnableNetworkServiceSandboxDescription[];
extern const char kUseOutOfProcessVideoDecodingName[];
extern const char kUseOutOfProcessVideoDecodingDescription[];
#endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
#if BUILDFLAG(CHROME_WIDE_ECHO_CANCELLATION)
extern const char kChromeWideEchoCancellationName[];
extern const char kChromeWideEchoCancellationDescription[];
#endif // BUILDFLAG(CHROME_WIDE_ECHO_CANCELLATION)
#if BUILDFLAG(DCHECK_IS_CONFIGURABLE)
extern const char kDcheckIsFatalName[];
extern const char kDcheckIsFatalDescription[];
#endif // BUILDFLAG(DCHECK_IS_CONFIGURABLE)
#if BUILDFLAG(ENABLE_NACL)
extern const char kNaclName[];
extern const char kNaclDescription[];
extern const char kVerboseLoggingInNaclName[];
extern const char kVerboseLoggingInNaclDescription[];
extern const char kVerboseLoggingInNaclChoiceDefault[];
extern const char kVerboseLoggingInNaclChoiceLow[];
extern const char kVerboseLoggingInNaclChoiceMedium[];
extern const char kVerboseLoggingInNaclChoiceHigh[];
extern const char kVerboseLoggingInNaclChoiceHighest[];
extern const char kVerboseLoggingInNaclChoiceDisabled[];
#endif // ENABLE_NACL
#if BUILDFLAG(ENABLE_OOP_PRINTING)
extern const char kEnableOopPrintDriversName[];
extern const char kEnableOopPrintDriversDescription[];
#endif // BUILDFLAG(ENABLE_OOP_PRINTING)
#if BUILDFLAG(ENABLE_PAINT_PREVIEW) && BUILDFLAG(IS_ANDROID)
extern const char kPaintPreviewDemoName[];
extern const char kPaintPreviewDemoDescription[];
#endif // ENABLE_PAINT_PREVIEW && BUILDFLAG(IS_ANDROID)
#if BUILDFLAG(ENABLE_PDF)
extern const char kAccessiblePDFFormName[];
extern const char kAccessiblePDFFormDescription[];
#if BUILDFLAG(ENABLE_PDF_INK2)
extern const char kPdfInk2Name[];
extern const char kPdfInk2Description[];
#endif // BUILDFLAG(ENABLE_PDF_INK2)
extern const char kPdfOopifName[];
extern const char kPdfOopifDescription[];
extern const char kPdfPortfolioName[];
extern const char kPdfPortfolioDescription[];
extern const char kPdfUseSkiaRendererName[];
extern const char kPdfUseSkiaRendererDescription[];
#endif // BUILDFLAG(ENABLE_PDF)
#if BUILDFLAG(ENABLE_VR)
extern const char kWebXrInternalsName[];
extern const char kWebXrInternalsDescription[];
#endif // #if defined(ENABLE_VR)
#if BUILDFLAG(ENABLE_WEBUI_TAB_STRIP)
extern const char kWebUITabStripFlagId[];
extern const char kWebUITabStripName[];
extern const char kWebUITabStripDescription[];
extern const char kWebUITabStripContextMenuAfterTapName[];
extern const char kWebUITabStripContextMenuAfterTapDescription[];
#endif // BUILDFLAG(ENABLE_WEBUI_TAB_STRIP)
#if defined(TOOLKIT_VIEWS) || BUILDFLAG(IS_ANDROID)
extern const char kAutofillCreditCardUploadName[];
extern const char kAutofillCreditCardUploadDescription[];
#endif // defined(TOOLKIT_VIEWS) || BUILDFLAG(IS_ANDROID)
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_ANDROID)
extern const char kElasticOverscrollName[];
extern const char kElasticOverscrollDescription[];
#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_ANDROID)
#if !BUILDFLAG(IS_ANDROID)
extern const char kElementCaptureName[];
extern const char kElementCaptureDescription[];
#endif // !BUILDFLAG(IS_ANDROID)
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC)
extern const char kUIDebugToolsName[];
extern const char kUIDebugToolsDescription[];
#endif
#if defined(WEBRTC_USE_PIPEWIRE)
extern const char kWebrtcPipeWireCameraName[];
extern const char kWebrtcPipeWireCameraDescription[];
#endif // #if defined(WEBRTC_USE_PIPEWIRE)
#if BUILDFLAG(IS_CHROMEOS)
extern const char kPromiseIconsName[];
extern const char kPromiseIconsDescription[];
extern const char kEnableAudioFocusEnforcementName[];
extern const char kEnableAudioFocusEnforcementDescription[];
#endif // BUILDFLAG(IS_CHROMEOS)
#if BUILDFLAG(ENABLE_COMPOSE)
extern const char kComposeId[];
extern const char kComposeName[];
extern const char kComposeDescription[];
extern const char kComposeNudgeAtCursorName[];
extern const char kComposeNudgeAtCursorDescription[];
extern const char kComposeProactiveNudgeName[];
extern const char kComposeProactiveNudgeDescription[];
extern const char kComposeSegmentationPromotionName[];
extern const char kComposeSegmentationPromotionDescription[];
extern const char kComposeSelectionNudgeName[];
extern const char kComposeSelectionNudgeDescription[];
extern const char kComposeUpfrontInputModesName[];
extern const char kComposeUpfrontInputModesDescription[];
#endif // BUILDFLAG(ENABLE_COMPOSE)
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN)
extern const char kThirdPartyProfileManagementName[];
extern const char kThirdPartyProfileManagementDescription[];
extern const char kOidcAuthProfileManagementName[];
extern const char kOidcAuthProfileManagementDescription[];
extern const char kGlicName[];
extern const char kGlicDescription[];
extern const char kGlicZOrderChangesName[];
extern const char kGlicZOrderChangesDescription[];
extern const char kDesktopPWAsUserLinkCapturingScopeExtensionsName[];
extern const char kDesktopPWAsUserLinkCapturingScopeExtensionsDescription[];
extern const char kSyncEnableBookmarksInTransportModeName[];
extern const char kSyncEnableBookmarksInTransportModeDescription[];
extern const char kReadingListEnableSyncTransportModeUponSignInName[];
extern const char kReadingListEnableSyncTransportModeUponSignInDescription[];
extern const char kEnableGenericOidcAuthProfileManagementName[];
extern const char kEnableGenericOidcAuthProfileManagementDescription[];
#endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN)
#if BUILDFLAG(ENABLE_HLS_DEMUXER)
extern const char kEnableBuiltinHlsName[];
extern const char kEnableBuiltinHlsDescription[];
#endif // BUILDFLAG(ENABLE_HLS_DEMUXER)
#if !BUILDFLAG(IS_CHROMEOS)
extern const char kProfilesReorderingName[];
extern const char kProfilesReorderingDescription[];
#endif
#if BUILDFLAG(ENABLE_DICE_SUPPORT)
extern const char kEnableHistorySyncOptinExpansionPillName[];
extern const char kEnableHistorySyncOptinExpansionPillDescription[];
#endif // BUILDFLAG(ENABLE_DICE_SUPPORT)
#if BUILDFLAG(ENABLE_DICE_SUPPORT) && BUILDFLAG(ENABLE_EXTENSIONS)
extern const char kEnableExtensionsExplicitBrowserSigninName[];
extern const char kEnableExtensionsExplicitBrowserSigninDescription[];
#endif // BUILDFLAG(ENABLE_DICE_SUPPORT) && BUILDFLAG(ENABLE_EXTENSIONS)
#if BUILDFLAG(ENABLE_BOUND_SESSION_CREDENTIALS)
extern const char kEnableBoundSessionCredentialsName[];
extern const char kEnableBoundSessionCredentialsDescription[];
extern const char
kEnableBoundSessionCredentialsSoftwareKeysForManualTestingName[];
extern const char
kEnableBoundSessionCredentialsSoftwareKeysForManualTestingDescription[];
extern const char kEnableChromeRefreshTokenBindingName[];
extern const char kEnableChromeRefreshTokenBindingDescription[];
#endif // BUILDFLAG(ENABLE_BOUND_SESSION_CREDENTIALS)
extern const char kEnableStandardBoundSessionCredentialsName[];
extern const char kEnableStandardBoundSessionCredentialsDescription[];
extern const char kEnableStandardBoundSessionPersistenceName[];
extern const char kEnableStandardBoundSessionPersistenceDescription[];
extern const char kEnableStandardBoundSessionRefreshQuotaName[];
extern const char kEnableStandardBoundSessionRefreshQuotaDescription[];
#if !BUILDFLAG(IS_ANDROID)
extern const char kEnablePolicyPromotionBannerName[];
extern const char kEnablePolicyPromotionBannerDescription[];
#endif // !BUILDFLAG(IS_ANDROID)
extern const char kSupervisedUserBlockInterstitialV3Name[];
extern const char kSupervisedUserBlockInterstitialV3Description[];
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN)
extern const char kSupervisedProfileHideGuestName[];
extern const char kSupervisedProfileHideGuestDescription[];
extern const char kSupervisedProfileSafeSearchName[];
extern const char kSupervisedProfileSafeSearchDescription[];
extern const char kSupervisedProfileReauthForBlockedSiteName[];
extern const char kSupervisedProfileReauthForBlockedSiteDescription[];
extern const char kSupervisedProfileSubframeReauthName[];
extern const char kSupervisedProfileSubframeReauthDescription[];
extern const char kSupervisedProfileFilteringFallbackName[];
extern const char kSupervisedProfileFilteringFallbackDescription[];
extern const char kSupervisedProfileCustomStringsName[];
extern const char kSupervisedProfileCustomStringsDescription[];
extern const char kSupervisedProfileSignInIphName[];
extern const char kSupervisedProfileSignInIphDescription[];
extern const char kSupervisedProfileShowKiteBadgeName[];
extern const char kSupervisedProfileShowKiteBadgeDescription[];
extern const char kSupervisedUserLocalWebApprovalsName[];
extern const char kSupervisedUserLocalWebApprovalsDescription[];
#endif // #if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN)
#if BUILDFLAG(IS_ANDROID)
extern const char kHistoryPageHistorySyncPromoName[];
extern const char kHistoryPageHistorySyncPromoDescription[];
extern const char kHistoryOptInEducationalTipName[];
extern const char kHistoryOptInEducationalTipDescription[];
extern const char kWebSerialOverBluetoothName[];
extern const char kWebSerialOverBluetoothDescription[];
#endif // BUILDFLAG(IS_ANDROID)
#if BUILDFLAG(ENTERPRISE_CONTENT_ANALYSIS)
extern const char kEnterpriseFileObfuscationName[];
extern const char kEnterpriseFileObfuscationDescription[];
#endif // BUILDFLAG(ENTERPRISE_CONTENT_ANALYSIS)
// ============================================================================
// Don't just add flags to the end, put them in the right section in
// alphabetical order. See top instructions for more.
// ============================================================================
} // namespace flag_descriptions
#endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
|