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
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "chrome/browser/app_controller_mac.h"
#include <AppKit/AppKit.h>
#include <dispatch/dispatch.h>
#include <stddef.h>
#include <memory>
#include <vector>
#include "base/apple/bridging.h"
#include "base/apple/foundation_util.h"
#include "base/auto_reset.h"
#include "base/check_op.h"
#include "base/command_line.h"
#include "base/containers/flat_map.h"
#include "base/debug/dump_without_crashing.h"
#include "base/files/file_path.h"
#include "base/functional/bind.h"
#include "base/mac/mac_util.h"
#include "base/memory/raw_ptr.h"
#include "base/run_loop.h"
#include "base/scoped_multi_source_observation.h"
#include "base/scoped_observation.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/sys_string_conversions.h"
#include "base/strings/utf_string_conversions.h"
#include "base/task/thread_pool.h"
#include "base/threading/scoped_blocking_call.h"
#include "base/threading/thread_restrictions.h"
#include "build/branding_buildflags.h"
#include "chrome/app/chrome_command_ids.h"
#include "chrome/browser/apps/app_shim/app_shim_termination_manager.h"
#include "chrome/browser/apps/platform_apps/app_window_registry_util.h"
#include "chrome/browser/browser_features.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/browser_process_platform_part.h"
#include "chrome/browser/command_updater_impl.h"
#include "chrome/browser/download/download_core_service.h"
#include "chrome/browser/download/download_core_service_factory.h"
#include "chrome/browser/extensions/extension_service.h"
#include "chrome/browser/first_run/first_run.h"
#include "chrome/browser/lifetime/application_lifetime_desktop.h"
#include "chrome/browser/lifetime/browser_shutdown.h"
#include "chrome/browser/mac/auth_session_request.h"
#include "chrome/browser/mac/key_window_notifier.h"
#include "chrome/browser/policy/chrome_browser_policy_connector.h"
#include "chrome/browser/prefs/incognito_mode_prefs.h"
#include "chrome/browser/profiles/keep_alive/profile_keep_alive_types.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_attributes_entry.h"
#include "chrome/browser/profiles/profile_attributes_storage.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/browser/profiles/profile_manager_observer.h"
#include "chrome/browser/profiles/profile_observer.h"
#include "chrome/browser/profiles/profiles_state.h"
#include "chrome/browser/sessions/session_restore.h"
#include "chrome/browser/sessions/session_service.h"
#include "chrome/browser/sessions/session_service_factory.h"
#include "chrome/browser/sessions/tab_restore_service_factory.h"
#include "chrome/browser/shortcuts/chrome_webloc_file.h"
#include "chrome/browser/task_manager/task_manager_metrics_recorder.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_command_controller.h"
#include "chrome/browser/ui/browser_commands.h"
#include "chrome/browser/ui/browser_dialogs.h"
#include "chrome/browser/ui/browser_finder.h"
#include "chrome/browser/ui/browser_list.h"
#include "chrome/browser/ui/browser_live_tab_context.h"
#include "chrome/browser/ui/browser_mac.h"
#include "chrome/browser/ui/browser_window.h"
#include "chrome/browser/ui/chrome_pages.h"
#include "chrome/browser/ui/cocoa/apps/quit_with_apps_controller_mac.h"
#import "chrome/browser/ui/cocoa/bookmarks/bookmark_menu_bridge.h"
#import "chrome/browser/ui/cocoa/confirm_quit.h"
#import "chrome/browser/ui/cocoa/confirm_quit_panel_controller.h"
#include "chrome/browser/ui/cocoa/handoff_observer.h"
#import "chrome/browser/ui/cocoa/history_menu_bridge.h"
#import "chrome/browser/ui/cocoa/profiles/profile_menu_controller.h"
#import "chrome/browser/ui/cocoa/share_menu_controller.h"
#import "chrome/browser/ui/cocoa/tab_menu_bridge.h"
#include "chrome/browser/ui/extensions/application_launch.h"
#include "chrome/browser/ui/profiles/profile_picker.h"
#include "chrome/browser/ui/startup/first_run_service.h"
#include "chrome/browser/ui/startup/startup_browser_creator.h"
#include "chrome/browser/ui/startup/startup_browser_creator_impl.h"
#include "chrome/browser/ui/startup/startup_tab.h"
#include "chrome/browser/ui/startup/startup_types.h"
#include "chrome/browser/ui/tabs/tab_enums.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/browser/web_applications/web_app_helpers.h"
#include "chrome/common/chrome_paths_internal.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/extensions/extension_constants.h"
#include "chrome/common/mac/app_mode_common.h"
#include "chrome/common/pref_names.h"
#include "chrome/common/url_constants.h"
#include "chrome/common/webui_url_constants.h"
#include "chrome/grit/branded_strings.h"
#include "chrome/grit/generated_resources.h"
#include "components/enterprise/browser/controller/chrome_browser_cloud_management_controller.h"
#include "components/handoff/handoff_manager.h"
#include "components/handoff/handoff_utility.h"
#include "components/keep_alive_registry/keep_alive_types.h"
#include "components/keep_alive_registry/scoped_keep_alive.h"
#include "components/policy/core/common/policy_pref_names.h"
#include "components/prefs/pref_service.h"
#include "components/sessions/core/tab_restore_service.h"
#include "content/public/browser/download_manager.h"
#include "extensions/browser/extension_registry.h"
#include "extensions/browser/extension_system.h"
#include "net/base/apple/url_conversions.h"
#include "net/base/filename_util.h"
#import "ui/base/cocoa/nsmenu_additions.h"
#import "ui/base/cocoa/nsmenuitem_additions.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/l10n/l10n_util_mac.h"
#include "ui/color/color_provider.h"
#include "ui/color/color_provider_manager.h"
#include "ui/gfx/native_widget_types.h"
#include "ui/native_theme/native_theme_mac.h"
#include "ui/native_theme/native_theme_observer.h"
#include "url/gurl.h"
namespace {
// True while AppController is calling chrome::NewEmptyWindow(). We need a
// global flag here, analogue to StartupBrowserCreator::InProcessStartup()
// because otherwise the SessionService will try to restore sessions when we
// make a new window while there are no other active windows.
bool g_is_opening_new_window = false;
// Stores the pending web auth requests (typically while the profile is being
// loaded) until they are passed to the AuthSessionRequest class.
NSMutableDictionary<NSUUID*, ASWebAuthenticationSessionRequest*>*
GetPendingWebAuthRequests() {
static NSMutableDictionary* g_pending_requests =
[[NSMutableDictionary alloc] init];
return g_pending_requests;
}
// Open the urls in the last used browser from a regular profile.
void OpenUrlsInBrowserWithProfile(const std::vector<GURL>& urls,
Profile* profile);
// Returns true if the profile requires signin before being used.
bool IsProfileSignedOut(const base::FilePath& profile_path);
// Starts a web authentication session request.
void BeginHandlingWebAuthenticationSessionRequestWithProfile(
ASWebAuthenticationSessionRequest* request,
Profile* profile) {
NSUUID* key = request.UUID;
if (![GetPendingWebAuthRequests() objectForKey:key])
return; // The request has been canceled, do not start the session.
[GetPendingWebAuthRequests() removeObjectForKey:key];
// If there is no safe profile, |profile| is nullptr, and the session will
// fail immediately.
AuthSessionRequest::StartNewAuthSession(request, profile);
}
// Activates a browser window having the given profile (the last one active) if
// possible and returns a pointer to the activate |Browser| or NULL if this was
// not possible. If the last active browser is minimized (in particular, if
// there are only minimized windows), it will unminimize it.
Browser* ActivateBrowser(Profile* profile) {
Browser* browser = chrome::FindLastActiveWithProfile(
profile->IsGuestSession()
? profile->GetPrimaryOTRProfile(/*create_if_needed=*/true)
: profile);
if (browser) {
browser = browser->GetBrowserForOpeningWebUi();
}
if (browser)
browser->window()->Activate();
return browser;
}
// Launches a browser window associated with |profile|. Checks if we are in the
// first run of Chrome to decide if we need to launch a browser or not.
// The profile can be `nullptr` and in that case the last-used profile will be
// used.
void LaunchBrowserStartup(Profile* profile) {
if (StartupProfileModeFromReason(ProfilePicker::GetStartupModeReason()) ==
StartupProfileMode::kProfilePicker) {
ProfilePicker::Show(ProfilePicker::Params::FromEntryPoint(
ProfilePicker::EntryPoint::kNewSessionOnExistingProcess));
return;
}
CHECK(profile);
base::AutoReset<bool> auto_reset_in_run(&g_is_opening_new_window, true);
StartupBrowserCreator browser_creator;
browser_creator.LaunchBrowser(
*base::CommandLine::ForCurrentProcess(), profile, base::FilePath(),
chrome::startup::IsProcessStartup::kNo, chrome::startup::IsFirstRun::kYes,
/*restore_tabbed_browser=*/true);
}
// Creates an empty browser window with the given profile and returns a pointer
// to the new |Browser|.
Browser* CreateBrowser(Profile* profile) {
// Closes the first run if we open a new window.
if (auto* fre_service =
FirstRunServiceFactory::GetForBrowserContextIfExists(profile)) {
fre_service->FinishFirstRunWithoutResumeTask();
}
{
base::AutoReset<bool> auto_reset_in_run(&g_is_opening_new_window, true);
chrome::NewEmptyWindow(profile);
}
Browser* browser = chrome::FindLastActive();
CHECK(browser);
return browser;
}
// Activates a browser window having the given profile (the last one active) if
// possible or creates an empty one if necessary. Returns a pointer to the
// activated/new |Browser|.
Browser* ActivateOrCreateBrowser(Profile* profile) {
if (Browser* browser = ActivateBrowser(profile))
return browser;
return CreateBrowser(profile);
}
// Attempts restoring a previous session if there is one. Otherwise, opens
// either the profile picker or a new browser, depending on user preferences.
void AttemptSessionRestore(Profile* profile) {
DCHECK(!profile->IsGuestSession());
DCHECK(!IsProfileSignedOut(profile->GetPath()));
SessionService* sessionService =
SessionServiceFactory::GetForProfileForSessionRestore(profile);
if (sessionService &&
sessionService->RestoreIfNecessary(StartupTabs(),
/*restore_apps=*/false)) {
// Session was restored.
return;
}
// No session to restore, proceed with normal startup.
LaunchBrowserStartup(profile);
}
// Record the location of the application bundle (containing the main framework)
// from which Chromium was loaded. This is used by app mode shims to find
// Chromium.
void RecordLastRunAppBundlePath() {
// Going up three levels from |chrome::GetVersionedDirectory()| gives the
// real, user-visible app bundle directory. (The alternatives give either the
// framework's path or the initial app's path, which may be an app mode shim
// or a unit test.)
base::ScopedBlockingCall scoped_blocking_call(FROM_HERE,
base::BlockingType::MAY_BLOCK);
// Go up five levels from the versioned sub-directory of the framework, which
// is at C.app/Contents/Frameworks/C.framework/Versions/V.
base::FilePath app_bundle_path = chrome::GetFrameworkBundlePath()
.DirName()
.DirName()
.DirName()
.DirName()
.DirName();
base::apple::ScopedCFTypeRef<CFStringRef> app_bundle_path_cfstring =
base::apple::FilePathToCFString(app_bundle_path);
CFPreferencesSetAppValue(
base::apple::NSToCFPtrCast(app_mode::kLastRunAppBundlePathPrefsKey),
app_bundle_path_cfstring.get(),
base::SysUTF8ToCFStringRef(base::apple::BaseBundleID()).get());
}
bool IsProfileSignedOut(const base::FilePath& profile_path) {
ProfileAttributesEntry* entry =
g_browser_process->profile_manager()
->GetProfileAttributesStorage()
.GetProfileAttributesWithPath(profile_path);
return entry && entry->IsSigninRequired();
}
void ConfigureNSAppForKioskMode() {
NSApp.presentationOptions =
NSApplicationPresentationHideDock | NSApplicationPresentationHideMenuBar |
NSApplicationPresentationDisableProcessSwitching |
NSApplicationPresentationDisableSessionTermination |
NSApplicationPresentationDisableForceQuit |
NSApplicationPresentationFullScreen;
}
// Returns the list of windows for all browser windows (excluding apps).
NSSet<NSWindow*>* GetBrowserWindows() {
NSMutableSet<NSWindow*>* result = [NSMutableSet set];
for (Browser* browser : *BrowserList::GetInstance()) {
// When focusing Chrome, don't focus any browser windows associated with
// an app (https://crbug.com/40626510).
if (browser->is_type_app()) {
continue;
}
[result addObject:browser->window()->GetNativeWindow().GetNativeNSWindow()];
}
return result;
}
void FocusWindowSetOnCurrentSpace(NSSet<NSWindow*>* windows) {
// This callback runs before AppKit picks its own window to
// deminiaturize, so we get to pick one from the right set. Limit to
// the windows on the current workspace. Otherwise we jump spaces
// haphazardly.
//
// Also consider both visible and hidden windows; this call races
// with the system unhiding the application. http://crbug.com/368238
//
// NOTE: If this is called in the
// -applicationShouldHandleReopen:hasVisibleWindows: hook when
// clicking the dock icon, and that caused macOS to begin switch
// spaces, isOnActiveSpace gives the answer for the PREVIOUS
// space. This means that we actually raise and focus the wrong
// space's windows, leaving the new key window off-screen. To detect
// this, check if the key window is on the active space prior to
// calling.
//
// Also, if we decide to deminiaturize a window during a space switch,
// that can switch spaces and then switch back. Fortunately, this only
// happens if, say, space 1 contains an app, space 2 contains a
// miniaturized browser. We click the icon, macOS switches to space 1,
// we deminiaturize the browser, and that triggers switching back.
//
// TODO(davidben): To limit those cases, consider preferentially
// deminiaturizing a window on the current space.
NSWindow* frontmost_window = nil;
NSWindow* frontmost_miniaturized_window = nil;
bool all_miniaturized = true;
for (NSWindow* win in [NSApp.orderedWindows reverseObjectEnumerator]) {
if (![windows containsObject:win]) {
continue;
}
if (win.miniaturized) {
frontmost_miniaturized_window = win;
} else if (win.visible) {
all_miniaturized = false;
if (win.onActiveSpace) {
// Raise the old |frontmost_window| (if any). The topmost |win| will be
// raised with makeKeyAndOrderFront: below.
[frontmost_window orderFront:nil];
frontmost_window = win;
}
}
}
if (all_miniaturized && frontmost_miniaturized_window) {
DCHECK(!frontmost_window);
// Note the call to makeKeyAndOrderFront: will deminiaturize the window.
frontmost_window = frontmost_miniaturized_window;
}
if (frontmost_window) {
[frontmost_window makeKeyAndOrderFront:nil];
[NSApp activateIgnoringOtherApps:YES];
}
}
// Returns the profile path to be used at startup.
base::FilePath GetStartupProfilePathMac() {
// This profile path is used to open URLs passed in application:openURLs: and
// should not default to Guest when the profile picker is shown.
// TODO(crbug.com/40159795): Remove the ignore_profile_picker parameter
// once the picker supports opening URLs.
StartupProfilePathInfo profile_path_info = GetStartupProfilePath(
/*cur_dir=*/base::FilePath(), *base::CommandLine::ForCurrentProcess(),
/*ignore_profile_picker=*/true);
DCHECK_EQ(StartupProfileModeFromReason(profile_path_info.reason),
StartupProfileMode::kBrowserWindow);
return profile_path_info.path;
}
// Open the urls in the last used browser. Loads the profile asynchronously if
// needed.
void OpenUrlsInBrowser(const std::vector<GURL>& urls) {
std::vector<GURL> regular_urls;
std::vector<base::FilePath> shortcuts;
for (const auto& url : urls) {
base::FilePath path;
if (net::FileURLToFilePath(url, &path) &&
path.Extension() == shortcuts::ChromeWeblocFile::kFileExtension) {
shortcuts.push_back(path);
} else {
regular_urls.push_back(url);
}
}
if (!shortcuts.empty()) {
// Parse/read the shortcut files on the thread pool to avoid blocking the
// UI thread.
base::ThreadPool::PostTaskAndReplyWithResult(
FROM_HERE,
{base::MayBlock(), base::TaskPriority::USER_BLOCKING,
base::TaskShutdownBehavior::BLOCK_SHUTDOWN},
base::BindOnce(
[](const std::vector<base::FilePath>& shortcuts) {
base::flat_map<base::FilePath, std::vector<GURL>> profile_url_map;
for (const auto& path : shortcuts) {
auto shortcut = shortcuts::ChromeWeblocFile::LoadFromFile(path);
if (!shortcut.has_value()) {
// TODO: Consider opening the original file URL?
continue;
}
profile_url_map[shortcut->profile_path_name().path()].push_back(
shortcut->target_url());
}
return profile_url_map;
},
std::move(shortcuts)),
base::BindOnce(
[](const base::flat_map<base::FilePath, std::vector<GURL>>
profile_url_map) {
const base::FilePath& user_data_dir =
g_browser_process->profile_manager()->user_data_dir();
ProfileAttributesStorage& profile_attributes_storage =
g_browser_process->profile_manager()
->GetProfileAttributesStorage();
for (const auto& [profile, urls_for_profile] : profile_url_map) {
const base::FilePath profile_path =
user_data_dir.Append(profile);
if (profile_attributes_storage.GetProfileAttributesWithPath(
profile_path)) {
RunInProfileSafely(
profile_path,
base::BindOnce(&OpenUrlsInBrowserWithProfile,
urls_for_profile),
app_controller_mac::kShowProfilePickerOnFailure);
} else {
// If the target profile doesn't exist, fall back to the
// last profile.
RunInLastProfileSafely(
base::BindOnce(&OpenUrlsInBrowserWithProfile,
urls_for_profile),
app_controller_mac::kShowProfilePickerOnFailure);
}
}
}));
}
if (!regular_urls.empty()) {
app_controller_mac::RunInLastProfileSafely(
base::BindOnce(&OpenUrlsInBrowserWithProfile, regular_urls),
app_controller_mac::kShowProfilePickerOnFailure);
}
}
} // namespace
// This is extracted as a standalone function in order
// to be friend with base::ScopedAllowBlocking.
Profile* GetLastProfileMac() {
ProfileManager* profile_manager = g_browser_process->profile_manager();
if (!profile_manager)
return nullptr;
base::FilePath profile_path = GetStartupProfilePathMac();
// ProfileManager::GetProfile() is blocking if the profile was not loaded yet.
// TODO(crbug.com/40054768): Change this code to return nullptr when
// the profile is not loaded, and update all callers to handle this case.
base::ScopedAllowBlocking allow_blocking;
return profile_manager->GetProfile(profile_path);
}
@interface AppController () <HandoffObserverDelegate>
- (void)initMenuState;
- (void)initProfileMenu;
- (void)updateConfirmToQuitPrefMenuItem:(NSMenuItem*)item;
- (void)registerServicesMenuTypesTo:(NSApplication*)app;
- (void)checkForAnyKeyWindows;
- (BOOL)userWillWaitForInProgressDownloads:(int)downloadCount;
- (BOOL)shouldQuitWithInProgressDownloads;
- (void)profileWasRemoved:(const base::FilePath&)profilePath
forIncognito:(bool)isIncognito;
// This class cannot open urls until startup has finished. The urls that cannot
// be opened are cached in |startupUrls_|. This method must be called exactly
// once after startup has completed. It opens the urls in |startupUrls_|, and
// clears |startupUrls_|.
- (void)openStartupUrls;
// Opens a tab for each GURL in |urls|. If there is exactly one tab open before
// this method is called, and that tab is the NTP, then this method closes the
// NTP after all the |urls| have been opened.
- (void)openUrlsReplacingNTP:(const std::vector<GURL>&)urls;
// Returns |YES| if |webContents| can be sent to another device via Handoff.
- (BOOL)isHandoffEligible:(content::WebContents*)webContents;
// This method passes |handoffURL| and |handoffTitle| to |handoffManager_|.
// This is a separate method (vs. being inlined into `updateHandoffManager`
// below) so that it can be swizzled in tests.
- (void)updateHandoffManagerWithURL:(const GURL&)handoffURL
title:(const std::u16string&)handoffTitle;
// Lazily creates the Handoff Manager. Updates the state of the Handoff
// Manager. This method is idempotent. This should be called:
// - During initialization.
// - When the current tab navigates to a new URL.
// - When the active browser changes.
// - When the active browser's active tab switches.
// |webContents| should be the new, active WebContents.
- (void)updateHandoffManager:(content::WebContents*)webContents;
// Return false if Chrome startup is paused by dialog and AppController is
// called without any initialized Profile.
- (BOOL)isProfileReady;
// Reset `_keepAlive` if Chrome is running in hidden mode, recreating it when
// Chrome is no longer hidden.
- (void)resetKeepAliveWhileHidden;
@end
class AppControllerProfileObserver : public ProfileAttributesStorage::Observer,
public ProfileManagerObserver,
public ProfileObserver {
public:
AppControllerProfileObserver(
ProfileManager* profile_manager, AppController* app_controller)
: profile_manager_(profile_manager),
app_controller_(app_controller) {
DCHECK(profile_manager_);
DCHECK(app_controller_);
// Listen to ProfileObserver and ProfileManagerObserver.
profile_manager_observer_.Observe(profile_manager_.get());
for (Profile* profile : profile_manager_->GetLoadedProfiles()) {
profile_observers_.AddObservation(profile);
Profile* otr_profile =
profile->GetPrimaryOTRProfile(/*create_if_needed=*/false);
if (otr_profile) {
profile_observers_.AddObservation(otr_profile);
}
}
storage_observer_.Observe(&profile_manager_->GetProfileAttributesStorage());
}
AppControllerProfileObserver(const AppControllerProfileObserver&) = delete;
AppControllerProfileObserver& operator=(const AppControllerProfileObserver&) =
delete;
~AppControllerProfileObserver() override = default;
private:
// ProfileAttributesStorage::Observer implementation:
// `ProfileAttributesStorage::Observer::OnProfileAdded()` must be explicitly
// defined even if it's empty, because of the competing overload
// `ProfileManager::Observer::OnProfileAdded()`.
void OnProfileAdded(const base::FilePath& profile_path) override {}
void OnProfileWasRemoved(const base::FilePath& profile_path,
const std::u16string& profile_name) override {
// When a profile is deleted we need to notify the AppController,
// so it can correctly update its pointer to the last used profile.
[app_controller_ profileWasRemoved:profile_path forIncognito:false];
}
// ProfileManager::Observer implementation:
void OnProfileAdded(Profile* profile) override {
profile_observers_.AddObservation(profile);
}
// ProfileObserver implementation:
void OnProfileWillBeDestroyed(Profile* profile) override {
profile_observers_.RemoveObservation(profile);
bool is_profile_observed =
profile->IsOffTheRecord() || ObserveRegularProfiles();
// If the profile is not observed, then no need to call rest.
if (!is_profile_observed)
return;
[app_controller_ profileWasRemoved:profile->GetPath()
forIncognito:profile->IsOffTheRecord()];
}
void OnOffTheRecordProfileCreated(Profile* off_the_record) override {
profile_observers_.AddObservation(off_the_record);
}
static bool ObserveRegularProfiles() {
return base::FeatureList::IsEnabled(
features::kDestroyProfileOnBrowserClose);
}
base::ScopedMultiSourceObservation<Profile, ProfileObserver>
profile_observers_{this};
base::ScopedObservation<ProfileAttributesStorage,
ProfileAttributesStorage::Observer>
storage_observer_{this};
base::ScopedObservation<ProfileManager, ProfileManagerObserver>
profile_manager_observer_{this};
const raw_ptr<ProfileManager> profile_manager_;
AppController* const app_controller_; // Weak; owns us.
};
class AppControllerNativeThemeObserver : public ui::NativeThemeObserver {
public:
explicit AppControllerNativeThemeObserver(AppController* app_controller)
: app_controller_(app_controller) {
native_theme_observation_.Observe(
ui::NativeThemeMac::GetInstanceForNativeUi());
}
// NativeThemeObserver:
void OnNativeThemeUpdated(ui::NativeTheme* observed_theme) override {
[app_controller_ nativeThemeDidChange];
}
private:
base::ScopedObservation<ui::NativeTheme, ui::NativeThemeObserver>
native_theme_observation_{this};
AppController* const app_controller_; // Weak; owns us.
};
@implementation AppController {
// Manages the state of the command menu items.
std::unique_ptr<CommandUpdater> _menuState;
// The profile last used by a Browser. It is this profile that was used to
// build the user-data specific main menu items.
raw_ptr<Profile, DanglingUntriaged> _lastProfile;
// The ProfileObserver observes the ProfileAttributesStorage and gets notified
// when a profile has been deleted.
std::unique_ptr<AppControllerProfileObserver>
_profileAttributesStorageObserver;
// The NativeThemeObserver observes system-wide theme related settings
// change.
std::unique_ptr<AppControllerNativeThemeObserver> _nativeThemeObserver;
// Management of the bookmark menu which spans across all windows
// (and Browser*s). |profileBookmarkMenuBridgeMap_| is a cache that owns one
// pointer to a BookmarkMenuBridge for each profile. |bookmarkMenuBridge_| is
// a weak pointer that is updated to match the corresponding cache entry
// during a profile switch.
raw_ptr<BookmarkMenuBridge, DanglingUntriaged> _bookmarkMenuBridge;
std::map<base::FilePath, std::unique_ptr<BookmarkMenuBridge>>
_profileBookmarkMenuBridgeMap;
std::unique_ptr<HistoryMenuBridge> _historyMenuBridge;
// The profile menu, which appears right before the Help menu. It is only
// available when multiple profiles is enabled.
ProfileMenuController* __strong _profileMenuController;
// Controller for the macOS system share menu.
ShareMenuController* __strong _shareMenuController;
std::unique_ptr<TabMenuBridge> _tabMenuBridge;
// If we're told to open URLs (in particular, via |-application:openURLs:| by
// Launch Services) before we've launched the browser, we queue them up in
// |startupUrls_| so that they can go in the first browser window/tab.
std::vector<GURL> _startupUrls;
BOOL _startupComplete;
// Outlets for testing close tab/window menu items.
NSMenuItem* __strong _cmdWMenuItemForTesting;
NSMenuItem* __strong _shiftCmdWMenuItemForTesting;
NSWindow* __strong _mainWindowForTesting;
std::unique_ptr<PrefChangeRegistrar> _profilePrefRegistrar;
PrefChangeRegistrar _localPrefRegistrar;
// Displays a notification when quitting while apps are running.
scoped_refptr<QuitWithAppsController> _quitWithAppsController;
// Responsible for maintaining all state related to the Handoff feature.
HandoffManager* __strong _handoffManager;
// Observes changes to the active web contents.
std::unique_ptr<HandoffObserver> _handoffObserver;
// This will be true after receiving a NSWorkspaceWillPowerOffNotification.
BOOL _isPoweringOff;
// This will be true after receiving a |-applicationWillTerminate:| event.
BOOL _isShuttingDown;
// Request to keep the browser alive during that object's lifetime. Every
// Browser instance holds a ScopedKeepAlive as well to make sure the browser
// stays alive as long as any windows are open, but on macOS we want the
// browser process to also stay alive without any windows open. To support
// this, this ScopedKeepAlive is created in -applicationDidFinishLaunching.
//
// When the user launches an app shim while Chrome isn't running, the app shim
// launches Chrome with the _kLSOpenOptionBackgroundLaunchKey option. This
// causes the activationPolicy to be equal to
// NSApplicationActivationPolicyProhibited (i.e. Chrome is not visibly running
// in the Dock and task switcher). In this state we don't want to keep the
// browser process alive indefinitely (but can't skip creating this
// ScopedKeepAlive entirely, as that could result in the browser process
// terminating before it has fully initialized and had a chance to for example
// process messages from app shims). Once the app shim launch has been
// processed to the point of having created the expected Browser instances or
// other ScopedKeepAlive instances, -resetKeepAliveWhileHidden is called to
// reset `_keepAlive`.
//
// When the user explicitly launches Chrome, or when Chrome creates any
// windows, the `activationPolicy` is changed by the OS. By observing
// `activationPolicy` for `NSRunningApplication.currentApplication` we can
// recreate `_keepAlive` if and when the activation policy changes.
std::unique_ptr<ScopedKeepAlive> _keepAlive;
// Set to `NSRunningApplication.currentApplication` while we're observing
// the `activationPolicy` of ourselves.
NSRunningApplication* __strong _runningApplication;
// Remembers whether _lastProfile had TabRestoreService entries. This is saved
// when _lastProfile is destroyed and Chromium enters the zero-profile state.
//
// By remembering this bit, Chromium knows whether to enable or disable
// Cmd+Shift+T and the related "File > Reopen Closed Tab" entry.
BOOL _tabRestoreWasEnabled;
// The color provider associated with the last active browser view.
raw_ptr<const ui::ColorProvider, DanglingUntriaged> _lastActiveColorProvider;
}
@synthesize startupComplete = _startupComplete;
+ (AppController*)sharedController {
static AppController* sharedController = [] {
AppController* sharedController = [[AppController alloc] init];
NSApp.delegate = sharedController;
return sharedController;
}();
CHECK_NE(nil, sharedController);
CHECK_EQ(NSApp.delegate, sharedController);
return sharedController;
}
- (instancetype)init {
if (self = [super init]) {
// -[NSMenu cr_menuItemForKeyEquivalentEvent:] lives in /content, but
// we need to execute special update code before the search begins.
// Setting this block gives us the hook we need.
[NSMenu cr_setMenuItemForKeyEquivalentEventPreSearchBlock:^{
// We avoid calling -[NSMenuDelegate menuNeedsUpdate:] on each submenu's
// delegate as that can be slow. Instead, we update the relevant
// NSMenuItems.
[AppController.sharedController updateMenuItemKeyEquivalents];
}];
}
return self;
}
- (void)dealloc {
NOTREACHED();
}
- (NSMenu*)fileMenu {
return [[NSApp.mainMenu itemWithTag:IDC_FILE_MENU] submenu];
}
// Returns the ⌘W menu item in the File menu. Returns nil if no such menu item
// exists (e.g. the user has custom shortcut settings).
- (NSMenuItem*)cmdWMenuItem {
NSArray* fileMenuItemArray = [self fileMenu].itemArray;
if (_cmdWMenuItemForTesting) {
fileMenuItemArray = @[ _cmdWMenuItemForTesting ];
}
NSMenuItem* cmdWMenuItem = nil;
for (NSMenuItem* item in fileMenuItemArray) {
if ([@"w" isEqualToString:item.keyEquivalent] &&
item.keyEquivalentModifierMask == NSEventModifierFlagCommand) {
cmdWMenuItem = item;
break;
}
}
// Make sure the user hasn't reassigned ⌘W.
if (cmdWMenuItem.tag != 0 && cmdWMenuItem.tag != IDC_CLOSE_WINDOW &&
cmdWMenuItem.tag != IDC_CLOSE_TAB) {
return nil;
}
return cmdWMenuItem;
}
// Returns the ⇧⌘W menu item in the File menu. Returns nil if no such menu item
// exists (e.g. the user has custom shortcut settings).
- (NSMenuItem*)shiftCmdWMenuItem {
NSArray* fileMenuItemArray = [self fileMenu].itemArray;
if (_shiftCmdWMenuItemForTesting) {
fileMenuItemArray = @[ _shiftCmdWMenuItemForTesting ];
}
NSMenuItem* shiftCmdWMenuItem = nil;
for (NSMenuItem* item in fileMenuItemArray) {
// "Shift" is part of the keyEquivalent. It doesn't live in the modifier
// mask.
if ([@"W" isEqualToString:item.keyEquivalent] &&
item.keyEquivalentModifierMask == NSEventModifierFlagCommand) {
shiftCmdWMenuItem = item;
break;
}
}
// Make sure the user hasn't reassigned ⇧⌘W.
if (shiftCmdWMenuItem.tag != 0 && shiftCmdWMenuItem.tag != IDC_CLOSE_WINDOW &&
shiftCmdWMenuItem.tag != IDC_CLOSE_TAB) {
return nil;
}
return shiftCmdWMenuItem;
}
// This method is called very early in application startup (ie, before
// the profile is loaded or any preferences have been registered). Defer any
// user-data initialization until -applicationDidFinishLaunching:.
- (void)mainMenuCreated {
NSNotificationCenter* notificationCenter = NSNotificationCenter.defaultCenter;
[notificationCenter
addObserver:self
selector:@selector(windowDidResignKey:)
name:NSWindowDidResignKeyNotification
object:nil];
[notificationCenter
addObserver:self
selector:@selector(windowDidBecomeMain:)
name:NSWindowDidBecomeMainNotification
object:nil];
[NSWorkspace.sharedWorkspace.notificationCenter
addObserver:self
selector:@selector(willPowerOff:)
name:NSWorkspaceWillPowerOffNotification
object:nil];
// Set up the command updater for when there are no windows open
[self initMenuState];
// Initialize the Profile menu.
[self initProfileMenu];
}
- (void)unregisterEventHandlers {
[NSNotificationCenter.defaultCenter removeObserver:self];
[NSWorkspace.sharedWorkspace.notificationCenter removeObserver:self];
}
// (NSApplicationDelegate protocol) This is the Apple-approved place to override
// the default handlers.
- (void)applicationWillFinishLaunching:(NSNotification*)notification {
NSWindow.allowsAutomaticWindowTabbing = NO;
[self initShareMenu];
}
- (BOOL)tryToTerminateApplication:(NSApplication*)app {
// Reset this now that we've received the call to terminate.
BOOL isPoweringOff = _isPoweringOff;
_isPoweringOff = NO;
// Stop the browser from re-opening when we close Chrome while
// in the first run experience.
if (auto* profile = [self lastProfileIfLoaded]) {
if (auto* fre_service =
FirstRunServiceFactory::GetForBrowserContextIfExists(profile)) {
fre_service->FinishFirstRunWithoutResumeTask();
}
}
// Check for in-process downloads, and prompt the user if they really want
// to quit (and thus cancel downloads). Only check if we're not already
// shutting down, else the user might be prompted multiple times if the
// download isn't stopped before terminate is called again.
if (!browser_shutdown::IsTryingToQuit() &&
![self shouldQuitWithInProgressDownloads])
return NO;
// TODO(viettrungluu): Remove Apple Event handlers here? (It's safe to leave
// them in, but I'm not sure about UX; we'd also want to disable other things
// though.) http://crbug.com/40861
// Check for active apps. If quitting is prevented, only close browsers and
// sessions.
if (!browser_shutdown::IsTryingToQuit() && !isPoweringOff &&
_quitWithAppsController.get() && !_quitWithAppsController->ShouldQuit()) {
chrome::OnClosingAllBrowsers(true);
// This will close all browser sessions.
chrome::CloseAllBrowsers();
// At this point, the user has already chosen to cancel downloads. If we
// were to shut down as usual, the downloads would be cancelled in
// DownloadCoreService::Shutdown().
DownloadCoreService::CancelAllDownloads(
DownloadCoreService::CancelDownloadsTrigger::kShutdown);
return NO;
}
size_t num_browsers = chrome::GetTotalBrowserCount();
// Initiate a shutdown (via chrome::CloseAllBrowsersAndQuit()) if we aren't
// already shutting down.
if (!browser_shutdown::IsTryingToQuit()) {
chrome::OnClosingAllBrowsers(true);
chrome::CloseAllBrowsersAndQuit();
}
return num_browsers == 0 ? YES : NO;
}
- (void)stopTryingToTerminateApplication:(NSApplication*)app {
if (browser_shutdown::IsTryingToQuit()) {
// Reset the "trying to quit" state, so that closing all browser windows
// will no longer lead to termination.
browser_shutdown::SetTryingToQuit(false);
[[ConfirmQuitPanelController sharedController] cancel];
// TODO(viettrungluu): Were we to remove Apple Event handlers above, we
// would have to reinstall them here. http://crbug.com/40861
}
}
- (void)allowApplicationToTerminate {
// Tell BrowserList to stop the RunLoop and terminate the application when the
// last Browser is closed.
_keepAlive.reset();
}
- (BOOL)runConfirmQuitPanel {
// If there are no windows, quit immediately.
if (BrowserList::GetInstance()->empty() &&
!AppWindowRegistryUtil::IsAppWindowVisibleInAnyProfile(0)) {
return YES;
}
// Check if the preference is turned on.
const PrefService* prefs = g_browser_process->local_state();
if (!prefs->GetBoolean(prefs::kConfirmToQuitEnabled)) {
confirm_quit::RecordHistogram(confirm_quit::kNoConfirm);
return YES;
}
// Run only for keyboard-initiated quits.
if ([[NSApp currentEvent] type] != NSEventTypeKeyDown)
return NSTerminateNow;
return [[ConfirmQuitPanelController sharedController] runModalLoop];
}
// Called when the app is shutting down. Clean-up as appropriate.
- (void)applicationWillTerminate:(NSNotification*)aNotification {
// There better be no browser windows left at this point.
CHECK_EQ(0u, chrome::GetTotalBrowserCount());
// Tell BrowserList not to keep the browser process alive. Once all the
// browsers get dealloc'd, it will stop the RunLoop and fall back into main().
_keepAlive.reset();
// Stop observing NSRunningApplication.
if (_runningApplication) {
[_runningApplication removeObserver:self
forKeyPath:@"activationPolicy"
context:nullptr];
}
// Reset local state watching, as this object outlives the prefs system.
_localPrefRegistrar.RemoveAll();
_isShuttingDown = true;
// `_historyMenuBridge` has a dependency on `_lastProfile`, so that’s why it’s
// deleted first.
_historyMenuBridge.reset();
// It's safe to delete |_lastProfile| now.
[self setLastProfile:nullptr];
_profileAttributesStorageObserver.reset();
[self unregisterEventHandlers];
_profileBookmarkMenuBridgeMap.clear();
}
- (void)didEndMainMessageLoop {
if (!_lastProfile) {
// If only the profile picker is open and closed again, there is no profile
// loaded when main message loop ends and we cannot load it from disk now.
return;
}
DCHECK_EQ(0u, chrome::GetBrowserCount(_lastProfile));
if (!chrome::GetBrowserCount(_lastProfile)) {
// As we're shutting down, we need to nuke the TabRestoreService, which
// will start the shutdown of the NavigationControllers and allow for
// proper shutdown. If we don't do this, Chrome won't shut down cleanly,
// and may end up crashing when some thread tries to use the IO thread (or
// another thread) that is no longer valid.
TabRestoreServiceFactory::ResetForProfile(_lastProfile);
}
}
// See if the focused window window has tabs, and adjust the key equivalents for
// Close Tab/Close Window accordingly.
- (void)menuNeedsUpdate:(NSMenu*)menu {
DCHECK(menu == [self fileMenu]);
[self updateMenuItemKeyEquivalents];
}
- (void)windowDidResignKey:(NSNotification*)notify {
// If a window is closed, this notification is fired but |[NSApp keyWindow]|
// returns nil regardless of whether any suitable candidates for the key
// window remain. It seems that the new key window for the app is not set
// until after this notification is fired, so a check is performed after the
// run loop is allowed to spin.
[self performSelector:@selector(checkForAnyKeyWindows)
withObject:nil
afterDelay:0.0];
}
- (void)windowDidBecomeMain:(NSNotification*)notify {
Browser* browser =
chrome::FindBrowserWithWindow(gfx::NativeWindow([notify object]));
if (!browser)
return;
if (browser->is_type_normal()) {
_tabMenuBridge = std::make_unique<TabMenuBridge>(
browser->tab_strip_model(),
[[NSApp mainMenu] itemWithTag:IDC_TAB_MENU]);
_tabMenuBridge->BuildMenu();
} else {
_tabMenuBridge.reset();
}
Profile* profile = browser->profile();
[self setLastProfile:profile];
_lastActiveColorProvider = browser->window()->GetColorProvider();
}
// Called when shutting down or logging out.
- (void)willPowerOff:(NSNotification*)notify {
// Don't attempt any shutdown here. Cocoa will shortly call
// -[BrowserCrApplication terminate:].
_isPoweringOff = YES;
}
- (void)checkForAnyKeyWindows {
if ([NSApp keyWindow])
return;
g_browser_process->platform_part()->key_window_notifier().NotifyNoKeyWindow();
}
// If the auto-update interval is not set, make it 5 hours.
// Placed here for 2 reasons:
// 1) Same spot as other Pref stuff
// 2) Try and be friendly by keeping this after app launch
- (void)setUpdateCheckInterval {
#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
CFStringRef app = CFSTR("com.google.Keystone.Agent");
CFStringRef checkInterval = CFSTR("checkInterval");
CFPropertyListRef plist = CFPreferencesCopyAppValue(checkInterval, app);
if (!plist) {
const float fiveHoursInSeconds = 5.0 * 60.0 * 60.0;
CFPreferencesSetAppValue(
checkInterval, base::apple::NSToCFPtrCast(@(fiveHoursInSeconds)), app);
CFPreferencesAppSynchronize(app);
}
#endif
}
- (void)openStartupUrls {
DCHECK(_startupComplete);
[self openUrlsReplacingNTP:_startupUrls];
_startupUrls.clear();
}
- (void)openUrlsReplacingNTP:(const std::vector<GURL>&)urls {
if (urls.empty())
return;
// On Mac, the URLs are passed in via Cocoa, not command line. The Chrome
// NSApplication is created in MainMessageLoop, and then the shortcut urls
// are passed in via Apple events. At this point, the first browser is
// already loaded in PreMainMessageLoop. If we initialize NSApplication
// before PreMainMessageLoop to capture shortcut URL events, it may cause
// more problems because it relies on things created in PreMainMessageLoop
// and may break existing message loop design.
// If the browser hasn't started yet, just queue up the URLs.
if (!_startupComplete) {
_startupUrls.insert(_startupUrls.end(), urls.begin(), urls.end());
return;
}
OpenUrlsInBrowser(urls);
}
- (void)resetKeepAliveWhileHidden {
NSRunningApplication* app = NSRunningApplication.currentApplication;
if (_keepAlive &&
app.activationPolicy == NSApplicationActivationPolicyProhibited) {
// `_runningApplication` should only be set while `_keepAlive` is not set,
// as that is the only time we're observing the activationPolicy.
CHECK(!_runningApplication);
// Don't keep alive if we're in background/hidden mode. Start observing
// changes to activationPolicy to re-create `keepAlive_` when chrome stops
// being hidden.
_runningApplication = app;
[_runningApplication addObserver:self
forKeyPath:@"activationPolicy"
options:NSKeyValueObservingOptionNew
context:nullptr];
_keepAlive.reset();
}
}
// This is called after profiles have been loaded and preferences registered.
// It is safe to access the default profile here.
- (void)applicationDidFinishLaunching:(NSNotification*)notify {
if (g_browser_process->browser_policy_connector()
->chrome_browser_cloud_management_controller()
->IsEnterpriseStartupDialogShowing()) {
// As Chrome is not ready when the Enterprise startup dialog is being shown.
// Store the notification as it will be reposted when the dialog is closed.
return;
}
// Notify BrowserList to keep the application running so it doesn't go away
// when all the browser windows get closed.
_keepAlive = std::make_unique<ScopedKeepAlive>(
KeepAliveOrigin::APP_CONTROLLER, KeepAliveRestartOption::DISABLED);
[self setUpdateCheckInterval];
// If enabled, keep Chrome alive when apps are open instead of quitting all
// apps.
_quitWithAppsController = new QuitWithAppsController();
// Dynamically update shortcuts for "Close Window" and "Close Tab" menu items.
[self fileMenu].delegate = self;
// Instantiate the ProfileAttributesStorage observer so that we can get
// notified when a profile is deleted.
_profileAttributesStorageObserver =
std::make_unique<AppControllerProfileObserver>(
g_browser_process->profile_manager(), self);
// Observe native theme change (e.g. light and dark mode).
_nativeThemeObserver =
std::make_unique<AppControllerNativeThemeObserver>(self);
// Record the path to the (browser) app bundle; this is used by the app mode
// shim.
if (base::apple::AmIBundled()) {
base::ThreadPool::PostTask(
FROM_HERE,
{base::MayBlock(), base::TaskPriority::BEST_EFFORT,
base::TaskShutdownBehavior::CONTINUE_ON_SHUTDOWN},
base::BindOnce(&RecordLastRunAppBundlePath));
}
// Makes "Services" menu items available.
[self registerServicesMenuTypesTo:[notify object]];
_startupComplete = YES;
if (base::CommandLine::ForCurrentProcess()->HasSwitch(switches::kKioskMode))
ConfigureNSAppForKioskMode();
Browser* browser = chrome::FindLastActive();
content::WebContents* activeWebContents = nullptr;
_lastActiveColorProvider = nullptr;
if (browser) {
activeWebContents = browser->tab_strip_model()->GetActiveWebContents();
_lastActiveColorProvider = browser->window()->GetColorProvider();
}
[self updateHandoffManager:activeWebContents];
[self openStartupUrls];
PrefService* localState = g_browser_process->local_state();
if (localState) {
_localPrefRegistrar.Init(localState);
_localPrefRegistrar.Add(
prefs::kAllowFileSelectionDialogs,
base::BindRepeating(
[](CommandUpdater* commandUpdater) {
bool enabled = g_browser_process->local_state()->GetBoolean(
prefs::kAllowFileSelectionDialogs);
commandUpdater->UpdateCommandEnabled(IDC_OPEN_FILE, enabled);
},
_menuState.get()));
}
_handoffObserver = std::make_unique<HandoffObserver>(self);
ASWebAuthenticationSessionWebBrowserSessionManager.sharedManager
.sessionHandler = self;
}
- (void)observeValueForKeyPath:(NSString*)keyPath
ofObject:(id)object
change:(NSDictionary*)change
context:(void*)context {
if (object != _runningApplication) {
return;
}
// If activationPolicy is no longer set to Prohibited, we can stop observing
// changes to activationPolicy and recreate `keepAlive_` to keep the browser
// process alive even without windows present.
CHECK([keyPath isEqualToString:@"activationPolicy"]);
if (![change[@"new"] isEqual:@(NSApplicationActivationPolicyProhibited)]) {
[_runningApplication removeObserver:self
forKeyPath:@"activationPolicy"
context:nullptr];
_runningApplication = nil;
_keepAlive = std::make_unique<ScopedKeepAlive>(
KeepAliveOrigin::APP_CONTROLLER, KeepAliveRestartOption::DISABLED);
}
}
// Helper function for populating and displaying the in progress downloads at
// exit alert panel.
- (BOOL)userWillWaitForInProgressDownloads:(int)downloadCount {
// Set the dialog text based on whether or not there are multiple downloads.
// Dialog text: warning and explanation.
NSString* titleText = l10n_util::GetPluralNSStringF(
IDS_ABANDON_DOWNLOAD_DIALOG_TITLE, downloadCount);
NSString* explanationText =
l10n_util::GetNSString(IDS_ABANDON_DOWNLOAD_DIALOG_BROWSER_MESSAGE);
// "Cancel download and exit" button text.
NSString* exitTitle =
l10n_util::GetNSString(IDS_ABANDON_DOWNLOAD_DIALOG_EXIT_BUTTON);
// "Wait for download" button text.
NSString* waitTitle =
l10n_util::GetNSString(IDS_ABANDON_DOWNLOAD_DIALOG_CONTINUE_BUTTON);
NSAlert* alert = [[NSAlert alloc] init];
alert.messageText = titleText;
alert.informativeText = explanationText;
[alert addButtonWithTitle:waitTitle];
[alert addButtonWithTitle:exitTitle];
// 'waitButton' is the default choice.
int choice = [alert runModal];
return choice == NSAlertFirstButtonReturn ? YES : NO;
}
// Check all profiles for in progress downloads, and if we find any, prompt the
// user to see if we should continue to exit (and thus cancel the downloads), or
// if we should wait.
- (BOOL)shouldQuitWithInProgressDownloads {
ProfileManager* profile_manager = g_browser_process->profile_manager();
if (!profile_manager)
return YES;
std::vector<Profile*> profiles(profile_manager->GetLoadedProfiles());
std::vector<Profile*> added_profiles;
for (Profile* profile : profiles) {
for (Profile* otr : profile->GetAllOffTheRecordProfiles())
added_profiles.push_back(otr);
}
profiles.insert(profiles.end(), added_profiles.begin(), added_profiles.end());
for (Profile* profile : profiles) {
DownloadCoreService* download_core_service =
DownloadCoreServiceFactory::GetForBrowserContext(profile);
// `DownloadCoreService` can be nullptr for some irregular profiles, e.g.
// the System Profile.
content::DownloadManager* download_manager =
download_core_service &&
download_core_service->HasCreatedDownloadManager()
? profile->GetDownloadManager()
: nullptr;
if (download_manager && download_manager->BlockingShutdownCount() > 0) {
int downloadCount = download_manager->BlockingShutdownCount();
if ([self userWillWaitForInProgressDownloads:downloadCount]) {
// Create a new browser window (if necessary) and navigate to the
// downloads page if the user chooses to wait.
Browser* browser = chrome::FindBrowserWithProfile(profile);
if (!browser) {
browser = Browser::Create(Browser::CreateParams(profile, true));
browser->window()->Show();
}
[[ConfirmQuitPanelController sharedController] cancel];
DCHECK(browser);
chrome::ShowDownloads(browser);
return NO;
}
// User wants to exit.
return YES;
}
}
// No profiles or active downloads found, okay to exit.
return YES;
}
// Called to determine if we should enable the "restore tab" menu item.
// Checks with the TabRestoreService to see if there's anything there to
// restore and returns YES if so.
//
// In the zero-profile state, use the value from when the last profile was
// still loaded (if ever).
- (BOOL)canRestoreTab {
Profile* lastProfile = [self lastProfileIfLoaded];
if (!lastProfile)
return _tabRestoreWasEnabled;
sessions::TabRestoreService* service =
TabRestoreServiceFactory::GetForProfile(lastProfile);
return service && !service->entries().empty();
}
// Called from the AppControllerProfileObserver every time a profile is deleted.
- (void)profileWasRemoved:(const base::FilePath&)profilePath
forIncognito:(bool)isOffTheRecord {
// If the lastProfile has been deleted, the profile manager has
// already loaded a new one, so the pointer needs to be updated;
// otherwise we will try to start up a browser window with a pointer
// to the old profile.
//
// In a browser test, the application is not brought to the front, so
// |_lastProfile| might be null.
if (!_lastProfile || (profilePath == _lastProfile->GetPath() &&
isOffTheRecord == _lastProfile->IsOffTheRecord())) {
Profile* last_used_profile = nullptr;
auto* profile_manager = g_browser_process->profile_manager();
if (profile_manager) {
// |profile_manager| is null in browser tests during shutdown.
last_used_profile = profile_manager->GetLastUsedProfileIfLoaded();
}
[self setLastProfile:last_used_profile];
}
auto it = _profileBookmarkMenuBridgeMap.find(profilePath);
if (it != _profileBookmarkMenuBridgeMap.end() &&
(!base::FeatureList::IsEnabled(features::kDestroyProfileOnBrowserClose) ||
(it->second->GetProfile() && !isOffTheRecord))) {
// Clean up the dangling Profile* in |_profileBookmarkMenuBridgeMap|.
//
// No need to clean up when |isOffTheRecord|, because BookmarkMenuBridge
// always points to a non-OTR profile.
_profileBookmarkMenuBridgeMap.erase(it);
}
}
// Returns true if there is a modal window (either window- or application-
// modal) blocking the active browser. Note that tab modal dialogs (HTTP auth
// sheets) will not count as blocking the browser. But things like open/save
// dialogs that are window modal will block the browser.
- (BOOL)keyWindowIsModal {
if ([NSApp modalWindow])
return YES;
Browser* browser = chrome::FindLastActive();
return browser && [[browser->window()->GetNativeWindow().GetNativeNSWindow()
attachedSheet] isKindOfClass:[NSWindow class]];
}
- (BOOL)canOpenNewBrowser {
Profile* unsafeLastProfile = [self lastProfileIfLoaded];
// If the profile is not loaded, try to load it. If it's not usable, the
// profile picker will be open instead.
if (!unsafeLastProfile)
return YES;
return [self safeProfileForNewWindows:unsafeLastProfile] ? YES : NO;
}
// Validates menu items in the dock (always) and in the menu bar (if there is no
// browser).
- (BOOL)validateUserInterfaceItem:(id<NSValidatedUserInterfaceItem>)item {
SEL action = [item action];
BOOL enable = NO;
// Whether the profile is loaded and opening a new browser window is allowed.
BOOL canOpenNewBrowser = [self canOpenNewBrowser];
BOOL hasLoadedProfile = [self lastProfileIfLoaded] ? YES : NO;
// Commands from dock are always handled by commandFromDock:, but commands
// from the menu bar are only handled by commandDispatch: if there is no key
// window.
if (action == @selector(commandDispatch:) ||
action == @selector(commandFromDock:)) {
NSInteger tag = [item tag];
if (_menuState && // NULL in tests.
_menuState->SupportsCommand(tag)) {
switch (tag) {
// The File Menu commands are not automatically disabled by Cocoa when a
// dialog sheet obscures the browser window, so we disable several of
// them here. We don't need to include IDC_CLOSE_WINDOW, because
// app_controller is only activated when there are no key windows (see
// function comment).
case IDC_RESTORE_TAB:
enable = ![self keyWindowIsModal] && [self canRestoreTab];
break;
// Profile-level items that affect how the profile's UI looks should
// only be available while there is a Profile opened.
case IDC_SHOW_FULL_URLS:
case IDC_SHOW_GOOGLE_LENS_SHORTCUT:
enable = hasLoadedProfile;
break;
// Browser-level items that open in new tabs or perform an action in a
// current tab should not open if there's a window- or app-modal dialog.
case IDC_OPEN_FILE:
case IDC_NEW_TAB:
case IDC_FOCUS_LOCATION:
case IDC_FOCUS_SEARCH:
case IDC_SHOW_HISTORY:
case IDC_SHOW_BOOKMARK_MANAGER:
case IDC_CLEAR_BROWSING_DATA:
case IDC_SHOW_DOWNLOADS:
case IDC_IMPORT_SETTINGS:
case IDC_MANAGE_EXTENSIONS:
case IDC_HELP_PAGE_VIA_MENU:
case IDC_OPTIONS:
enable = canOpenNewBrowser && ![self keyWindowIsModal];
break;
// Browser-level items that open in new windows: allow the user to open
// a new window even if there's a window-modal dialog.
case IDC_NEW_WINDOW:
enable = canOpenNewBrowser;
break;
case IDC_TASK_MANAGER_MAIN_MENU:
enable = YES;
break;
case IDC_NEW_INCOGNITO_WINDOW:
enable = _menuState->IsCommandEnabled(tag) ? canOpenNewBrowser : NO;
break;
default:
enable = _menuState->IsCommandEnabled(tag) ?
![self keyWindowIsModal] : NO;
break;
}
}
// "Show as tab" should only appear when the current window is a popup.
// Since |validateUserInterfaceItem:| is called only when there are no
// key windows, we should just hide this.
// This is handled outside of the switch statement because we want to hide
// this regardless if the command is supported or not.
if (tag == IDC_SHOW_AS_TAB) {
NSMenuItem* menuItem = base::apple::ObjCCast<NSMenuItem>(item);
[menuItem setHidden:YES];
}
} else if (action == @selector(terminate:)) {
enable = YES;
} else if (action == @selector(showPreferences:)) {
enable = canOpenNewBrowser;
} else if (action == @selector(orderFrontStandardAboutPanel:)) {
enable = canOpenNewBrowser;
} else if (action == @selector(toggleConfirmToQuit:)) {
[self updateConfirmToQuitPrefMenuItem:static_cast<NSMenuItem*>(item)];
enable = [self shouldEnableConfirmToQuitPrefMenuItem];
}
return enable;
}
- (void)commandDispatch:(id)sender {
// Drop commands received after shutdown was initiated.
if (g_browser_process->IsShuttingDown())
return;
// Handle the case where we're dispatching a command from a sender that's in a
// browser window. This means that the command came from a background window
// and is getting here because the foreground window is not a browser window.
if ([sender respondsToSelector:@selector(window)]) {
id delegate = [[sender window] windowController];
if ([delegate respondsToSelector:@selector(commandDispatch:)]) {
[delegate commandDispatch:sender];
return;
}
}
// If not between -applicationDidFinishLaunching: and
// -applicationWillTerminate:, ignore. This can happen when events are sitting
// in the event queue while the browser is shutting down.
if (!_keepAlive) {
return;
}
Profile* unsafeLastProfile = [self lastProfileIfLoaded];
Profile* lastProfile = [self safeProfileForNewWindows:unsafeLastProfile];
// Ignore commands during session restore's browser creation. It uses a
// nested run loop and commands dispatched during this operation cause
// havoc.
if (lastProfile && SessionRestore::IsRestoring(lastProfile) &&
base::RunLoop::IsNestedOnCurrentThread()) {
return;
}
NSInteger tag = [sender tag];
// The task manager can be shown without profile.
if (tag == IDC_TASK_MANAGER_MAIN_MENU) {
chrome::OpenTaskManager(nullptr, task_manager::StartAction::kMainMenu);
return;
}
if (unsafeLastProfile && !lastProfile) {
// The profile is disallowed by policy (locked or guest mode disabled).
ProfilePicker::Show(ProfilePicker::Params::FromEntryPoint(
ProfilePicker::EntryPoint::kProfileLocked));
return;
}
// Asynchronously load profile first if needed.
app_controller_mac::RunInLastProfileSafely(
base::BindOnce(^(Profile* profile) {
[self executeCommand:sender withProfile:profile];
}),
app_controller_mac::kShowProfilePickerOnFailure);
}
- (void)executeCommand:(id)sender withProfile:(Profile*)profile {
if (!profile) {
// Couldn't load the Profile. RunInSafeProfileHelper will show the
// ProfilePicker instead.
return;
}
NSInteger tag = [sender tag];
switch (tag) {
case IDC_NEW_TAB:
// Create a new tab in an existing browser window (which we activate) if
// possible.
if (Browser* browser = ActivateBrowser(profile)) {
chrome::ExecuteCommand(browser, IDC_NEW_TAB);
break;
}
[[fallthrough]]; // To create new window.
case IDC_NEW_WINDOW:
CreateBrowser(profile->GetOriginalProfile());
break;
case IDC_FOCUS_LOCATION:
chrome::ExecuteCommand(ActivateOrCreateBrowser(profile),
IDC_FOCUS_LOCATION);
break;
case IDC_FOCUS_SEARCH:
chrome::ExecuteCommand(ActivateOrCreateBrowser(profile),
IDC_FOCUS_SEARCH);
break;
case IDC_NEW_INCOGNITO_WINDOW:
CreateBrowser(profile->GetPrimaryOTRProfile(/*create_if_needed=*/true));
break;
case IDC_RESTORE_TAB:
app_controller_mac::TabRestorer::RestoreMostRecent(profile);
break;
case IDC_OPEN_FILE:
chrome::ExecuteCommand(CreateBrowser(profile), IDC_OPEN_FILE);
break;
case IDC_CLEAR_BROWSING_DATA: {
// There may not be a browser open, so use the default profile.
if (Browser* browser = ActivateBrowser(profile)) {
chrome::ShowClearBrowsingDataDialog(browser);
} else {
chrome::OpenClearBrowsingDataDialogWindow(profile);
}
break;
}
case IDC_IMPORT_SETTINGS: {
if (Browser* browser = ActivateBrowser(profile)) {
chrome::ShowImportDialog(browser);
} else {
chrome::OpenImportSettingsDialogWindow(profile);
}
break;
}
case IDC_SHOW_BOOKMARK_MANAGER:
if (Browser* browser = ActivateBrowser(profile)) {
chrome::ShowBookmarkManager(browser);
} else {
// No browser window, so create one for the bookmark manager tab.
chrome::OpenBookmarkManagerWindow(profile);
}
break;
case IDC_SHOW_HISTORY:
if (Browser* browser = ActivateBrowser(profile))
chrome::ShowHistory(browser);
else
chrome::OpenHistoryWindow(profile);
break;
case IDC_SHOW_DOWNLOADS:
if (Browser* browser = ActivateBrowser(profile))
chrome::ShowDownloads(browser);
else
chrome::OpenDownloadsWindow(profile);
break;
case IDC_MANAGE_EXTENSIONS:
if (Browser* browser = ActivateBrowser(profile))
chrome::ShowExtensions(browser);
else
chrome::OpenExtensionsWindow(profile);
break;
case IDC_HELP_PAGE_VIA_MENU:
if (Browser* browser = ActivateBrowser(profile))
chrome::ShowHelp(browser, chrome::HELP_SOURCE_MENU);
else
chrome::OpenHelpWindow(profile, chrome::HELP_SOURCE_MENU);
break;
case IDC_OPTIONS:
[self showPreferences:sender];
break;
}
}
// Same as |-commandDispatch:|, but executes commands using a disposition
// determined by the key flags. This will get called in the case where the
// frontmost window is not a browser window, and the user has command-clicked
// a button in a background browser window whose action is
// |-commandDispatchUsingKeyModifiers:|
- (void)commandDispatchUsingKeyModifiers:(id)sender {
DCHECK(sender);
if ([sender respondsToSelector:@selector(window)]) {
id delegate = [[sender window] windowController];
if ([delegate respondsToSelector:
@selector(commandDispatchUsingKeyModifiers:)]) {
[delegate commandDispatchUsingKeyModifiers:sender];
}
}
}
// NSApplication delegate method called when someone clicks on the dock icon.
// To match standard mac behavior, we should open a new window if there are no
// browser windows.
- (BOOL)applicationShouldHandleReopen:(NSApplication*)theApplication
hasVisibleWindows:(BOOL)hasVisibleWindows {
// If the browser is currently trying to quit, don't do anything and return NO
// to prevent AppKit from doing anything.
if (browser_shutdown::IsTryingToQuit())
return NO;
// Bring all browser windows to the front. Specifically, this brings them in
// front of any app windows. FocusWindowSet will also unminimize the most
// recently minimized window if no windows in the set are visible.
// If there are any, return here. Otherwise, the windows are panels or
// notifications so we still need to open a new window.
if (hasVisibleWindows) {
NSSet<NSWindow*>* browserWindows = GetBrowserWindows();
if (browserWindows.count) {
FocusWindowSetOnCurrentSpace(browserWindows);
// We've performed the unminimize, so AppKit shouldn't do anything.
return NO;
}
}
base::FilePath lastProfilePath = GetStartupProfilePathMac();
DCHECK_NE(lastProfilePath, ProfileManager::GetSystemProfilePath());
// If launched as a hidden login item (due to installation of a persistent app
// or by the user, for example in System Settings->General->Login Items),
// allow the session to be restored first time the user clicks on a Dock icon.
// Normally, it'd just open a new empty page.
static BOOL doneOnce = NO;
BOOL attemptRestore =
apps::AppShimTerminationManager::Get()->ShouldRestoreSession() ||
(!doneOnce && base::mac::WasLaunchedAsHiddenLoginItem());
doneOnce = YES;
// If the profile is locked or was off-the-record, open the profile picker.
if (lastProfilePath == ProfileManager::GetGuestProfilePath() ||
IsProfileSignedOut(lastProfilePath)) {
ProfilePicker::Show(ProfilePicker::Params::FromEntryPoint(
ProfilePicker::EntryPoint::kProfileLocked));
return NO;
}
if (attemptRestore) {
// Load the profile and attempt session restore.
app_controller_mac::RunInLastProfileSafely(
base::BindOnce(&AttemptSessionRestore),
app_controller_mac::kShowProfilePickerOnFailure);
return NO;
}
// Open the profile picker (for multi-profile users) or a new window.
if (StartupProfileModeFromReason(ProfilePicker::GetStartupModeReason()) ==
StartupProfileMode::kProfilePicker) {
ProfilePicker::Show(ProfilePicker::Params::FromEntryPoint(
ProfilePicker::EntryPoint::kNewSessionOnExistingProcess));
} else {
// Asynchronously load profile first if needed.
// TODO(crbug.com/40261514): Replace CreateBrowser by LaunchBrowserStartup
app_controller_mac::RunInLastProfileSafely(
base::BindOnce(base::IgnoreResult(&CreateBrowser)),
app_controller_mac::kShowProfilePickerOnFailure);
}
// We've handled the reopen event, so return NO to tell AppKit not
// to do anything.
return NO;
}
- (void)initMenuState {
_menuState = std::make_unique<CommandUpdaterImpl>(nullptr);
_menuState->UpdateCommandEnabled(IDC_NEW_TAB, true);
_menuState->UpdateCommandEnabled(IDC_NEW_WINDOW, true);
_menuState->UpdateCommandEnabled(IDC_NEW_INCOGNITO_WINDOW, true);
_menuState->UpdateCommandEnabled(IDC_OPEN_FILE, true);
_menuState->UpdateCommandEnabled(IDC_CLEAR_BROWSING_DATA, true);
_menuState->UpdateCommandEnabled(IDC_RESTORE_TAB, false);
_menuState->UpdateCommandEnabled(IDC_FOCUS_LOCATION, true);
_menuState->UpdateCommandEnabled(IDC_FOCUS_SEARCH, true);
_menuState->UpdateCommandEnabled(IDC_SHOW_BOOKMARK_MANAGER, true);
_menuState->UpdateCommandEnabled(IDC_SHOW_HISTORY, true);
_menuState->UpdateCommandEnabled(IDC_SHOW_DOWNLOADS, true);
_menuState->UpdateCommandEnabled(IDC_MANAGE_EXTENSIONS, true);
_menuState->UpdateCommandEnabled(IDC_HELP_PAGE_VIA_MENU, true);
_menuState->UpdateCommandEnabled(IDC_IMPORT_SETTINGS, true);
#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
_menuState->UpdateCommandEnabled(IDC_FEEDBACK, true);
#endif
_menuState->UpdateCommandEnabled(IDC_TASK_MANAGER_MAIN_MENU, true);
}
// Conditionally adds the Profile menu to the main menu bar.
- (void)initProfileMenu {
NSMenu* mainMenu = [NSApp mainMenu];
NSMenuItem* profileMenu = [mainMenu itemWithTag:IDC_PROFILE_MAIN_MENU];
if (!profiles::IsMultipleProfilesEnabled()) {
[mainMenu removeItem:profileMenu];
return;
}
// The controller will unhide the menu if necessary.
[profileMenu setHidden:YES];
_profileMenuController =
[[ProfileMenuController alloc] initWithMainMenuItem:profileMenu];
}
- (void)initShareMenu {
_shareMenuController = [[ShareMenuController alloc] init];
NSMenu* fileMenu = [self fileMenu];
NSString* shareMenuTitle = l10n_util::GetNSString(IDS_SHARE_MAC);
NSMenuItem* shareMenuItem = [fileMenu itemWithTitle:shareMenuTitle];
NSMenu* shareSubmenu = [[NSMenu alloc] initWithTitle:shareMenuTitle];
shareSubmenu.delegate = _shareMenuController;
shareMenuItem.submenu = shareSubmenu;
}
// The Confirm to Quit preference is atypical in that the preference lives in
// the app menu right above the Quit menu item. This method will refresh the
// display of that item depending on the preference state.
- (void)updateConfirmToQuitPrefMenuItem:(NSMenuItem*)item {
// Format the string so that the correct key equivalent is displayed.
NSString* acceleratorString = [ConfirmQuitPanelController keyCommandString];
NSString* title = l10n_util::GetNSStringF(IDS_CONFIRM_TO_QUIT_OPTION,
base::SysNSStringToUTF16(acceleratorString));
[item setTitle:title];
const PrefService* prefService = g_browser_process->local_state();
bool enabled = prefService->GetBoolean(prefs::kConfirmToQuitEnabled);
[item setState:enabled ? NSControlStateValueOn : NSControlStateValueOff];
}
- (BOOL)shouldEnableConfirmToQuitPrefMenuItem {
const PrefService* prefService = g_browser_process->local_state();
return !prefService->FindPreference(prefs::kConfirmToQuitEnabled)
->IsManaged();
}
- (void)registerServicesMenuTypesTo:(NSApplication*)app {
// Note that RenderWidgetHostViewCocoa implements NSServicesRequests which
// handles requests from services.
[app registerServicesMenuSendTypes:@[ NSPasteboardTypeString ]
returnTypes:@[ NSPasteboardTypeString ]];
}
// Returns null if the profile is not loaded in memory.
- (Profile*)lastProfileIfLoaded {
// Return the profile of the last-used Browser, if available.
if (_lastProfile)
return _lastProfile;
if (![self isProfileReady])
return nullptr;
ProfileManager* profile_manager = g_browser_process->profile_manager();
if (!profile_manager)
return nullptr;
// GetProfileByPath() returns nullptr if the profile is not loaded.
return profile_manager->GetProfileByPath(GetStartupProfilePathMac());
}
// Returns null if Chrome is not ready or there is no ProfileManager.
// DEPRECATED: use lastProfileIfLoaded instead.
// TODO(crbug.com/40054768): May be blocking, migrate all callers to
// |-lastProfileIfLoaded|.
- (Profile*)lastProfile {
Profile* lastLoadedProfile = [self lastProfileIfLoaded];
if (lastLoadedProfile)
return lastLoadedProfile;
if (![self isProfileReady])
return nullptr;
return GetLastProfileMac();
}
- (Profile*)safeProfileForNewWindows:(Profile*)profile {
if (!profile)
return nullptr;
DCHECK(!profile->IsSystemProfile());
if (profile->IsGuestSession() && !profiles::IsGuestModeEnabled())
return nullptr;
if (IsProfileSignedOut(profile->GetPath()))
return nullptr; // Profile is locked.
return ProfileManager::MaybeForceOffTheRecordMode(profile);
}
- (void)application:(NSApplication*)sender openURLs:(NSArray<NSURL*>*)urls {
std::vector<GURL> gurlVector;
for (NSURL* url in urls)
gurlVector.push_back(net::GURLWithNSURL(url));
if (!gurlVector.empty())
[self openUrlsReplacingNTP:gurlVector];
}
// Show the preferences window, or bring it to the front if it's already
// visible.
- (IBAction)showPreferences:(id)sender {
// Asynchronously load profile first if needed.
app_controller_mac::RunInLastProfileSafely(
base::BindOnce(^(Profile* profile) {
[self showPreferencesForProfile:profile];
}),
app_controller_mac::kShowProfilePickerOnFailure);
}
- (IBAction)showPreferencesForProfile:(Profile*)profile {
if (!profile) {
// Failed to load profile, show Profile Picker instead.
return;
}
// Re-use an existing browser, or create a new one.
if (Browser* browser = ActivateBrowser(profile))
chrome::ShowSettings(browser);
else
chrome::OpenOptionsWindow(profile);
}
- (IBAction)orderFrontStandardAboutPanel:(id)sender {
// Asynchronously load profile first if needed.
app_controller_mac::RunInLastProfileSafely(
base::BindOnce(^(Profile* profile) {
[self orderFrontStandardAboutPanelForProfile:profile];
}),
app_controller_mac::kShowProfilePickerOnFailure);
}
- (IBAction)orderFrontStandardAboutPanelForProfile:(Profile*)profile {
if (!profile) {
// Failed to load profile, show Profile Picker instead.
return;
}
// Re-use an existing browser, or create a new one.
if (Browser* browser = ActivateBrowser(profile))
chrome::ShowAboutChrome(browser);
else
chrome::OpenAboutWindow(profile);
}
- (IBAction)toggleConfirmToQuit:(id)sender {
PrefService* prefService = g_browser_process->local_state();
bool enabled = prefService->GetBoolean(prefs::kConfirmToQuitEnabled);
prefService->SetBoolean(prefs::kConfirmToQuitEnabled, !enabled);
}
// Explicitly bring to the foreground when creating new windows from the dock.
- (void)commandFromDock:(id)sender {
[NSApp activateIgnoringOtherApps:YES];
[self commandDispatch:sender];
}
- (NSMenu*)applicationDockMenu:(NSApplication*)sender {
NSMenu* dockMenu = [[NSMenu alloc] initWithTitle:@""];
BOOL profilesAdded = [_profileMenuController insertItemsIntoMenu:dockMenu
atOffset:0
fromDock:YES];
if (profilesAdded) {
[dockMenu addItem:[NSMenuItem separatorItem]];
}
NSString* titleStr = l10n_util::GetNSStringWithFixup(IDS_NEW_WINDOW_MAC);
NSMenuItem* item =
[[NSMenuItem alloc] initWithTitle:titleStr
action:@selector(commandFromDock:)
keyEquivalent:@""];
item.target = self;
item.tag = IDC_NEW_WINDOW;
item.enabled = [self validateUserInterfaceItem:item];
[dockMenu addItem:item];
Profile* profile = [self lastProfileIfLoaded];
// Buttons below require the profile to be loaded. In particular, if the
// profile picker is shown at startup, these buttons won't be added until the
// user picks a profile.
if (!profile) {
return dockMenu;
}
if (IncognitoModePrefs::GetAvailability(profile->GetPrefs()) !=
policy::IncognitoModeAvailability::kDisabled) {
titleStr = l10n_util::GetNSStringWithFixup(IDS_NEW_INCOGNITO_WINDOW_MAC);
item = [[NSMenuItem alloc] initWithTitle:titleStr
action:@selector(commandFromDock:)
keyEquivalent:@""];
item.target = self;
item.tag = IDC_NEW_INCOGNITO_WINDOW;
item.enabled = [self validateUserInterfaceItem:item];
[dockMenu addItem:item];
}
return dockMenu;
}
- (const std::vector<GURL>&)startupUrls {
return _startupUrls;
}
- (BookmarkMenuBridge*)bookmarkMenuBridge {
return _bookmarkMenuBridge;
}
- (HistoryMenuBridge*)historyMenuBridge {
return _historyMenuBridge.get();
}
- (TabMenuBridge*)tabMenuBridge {
return _tabMenuBridge.get();
}
- (void)setLastProfile:(Profile*)profile {
if (profile == _lastProfile)
return;
// If _lastProfile becomes null, remember the last state of Cmd+Shift+T so the
// command can continue working (or stay disabled). This is primarily meant
// for the zero-profile state.
_tabRestoreWasEnabled = profile == nullptr && [self canRestoreTab];
// Before tearing down the menu controller bridges, return the history menu to
// its initial state.
if (profile != nullptr) {
if (_historyMenuBridge)
_historyMenuBridge->ResetMenu();
_historyMenuBridge.reset();
} else if (_historyMenuBridge && !_isShuttingDown) {
_historyMenuBridge->OnProfileWillBeDestroyed();
}
_profilePrefRegistrar.reset();
NSMenuItem* bookmarkItem = [NSApp.mainMenu itemWithTag:IDC_BOOKMARKS_MENU];
BOOL hidden = bookmarkItem.hidden;
if (profile != nullptr) {
// Rebuild the menus with the new profile. The bookmarks submenu is cached
// to avoid slowdowns when switching between profiles with large numbers of
// bookmarks. Before caching, store whether it is hidden, make the menu item
// visible, and restore its original hidden state after resetting the
// submenu. This works around an apparent AppKit bug where setting a
// *different* NSMenu submenu on a *hidden* menu item forces the item to
// become visible. See https://crbug.com/497813 for more details.
bookmarkItem.hidden = NO;
_bookmarkMenuBridge = nullptr;
} else if (_bookmarkMenuBridge && !_isShuttingDown) {
DCHECK_EQ(_bookmarkMenuBridge->GetProfile(),
_lastProfile->GetOriginalProfile());
// |_bookmarkMenuBridge| always points to the original profile. So, no need
// to call OnProfileWillBeDestroyed() when the OTR profile is destroyed.
if (!_lastProfile->IsOffTheRecord()) {
_bookmarkMenuBridge->OnProfileWillBeDestroyed();
}
}
_lastProfile = profile;
if (_lastProfile == nullptr)
return;
auto& entry = _profileBookmarkMenuBridgeMap[profile->GetPath()];
if (!entry || !entry->GetProfile()) {
// This creates a deep copy, but only the first 3 items in the root menu
// are really wanted. This can probably be optimized, but lazy-loading of
// the menu should reduce the impact in most flows.
NSMenu* submenu = [bookmarkItem.submenu copy];
submenu.delegate = nil; // The delegate is also copied. Remove it.
// The original profile outlives the OTR profile. Always create the bridge
// on the original profile, to prevent bugs WRT profile lifetime.
entry = std::make_unique<BookmarkMenuBridge>(profile->GetOriginalProfile(),
submenu);
// Clear bookmarks from the old profile.
entry->ClearBookmarkMenu();
}
_bookmarkMenuBridge = entry.get();
// No need to |BuildMenu| here. It is done lazily upon menu access.
bookmarkItem.submenu = _bookmarkMenuBridge->BookmarkMenu();
bookmarkItem.hidden = hidden;
_historyMenuBridge = std::make_unique<HistoryMenuBridge>(_lastProfile);
_historyMenuBridge->BuildMenu();
chrome::BrowserCommandController::
UpdateSharedCommandsForIncognitoAvailability(
_menuState.get(), _lastProfile);
_profilePrefRegistrar = std::make_unique<PrefChangeRegistrar>();
_profilePrefRegistrar->Init(_lastProfile->GetPrefs());
_profilePrefRegistrar->Add(
policy::policy_prefs::kIncognitoModeAvailability,
base::BindRepeating(&chrome::BrowserCommandController::
UpdateSharedCommandsForIncognitoAvailability,
_menuState.get(), _lastProfile));
}
- (const ui::ColorProvider&)lastActiveColorProvider {
// During the browser startup the creation of Browser and AppController is
// a race condition. The color provider will be missing if the browser is
// created later than the AppController.
if (!_lastActiveColorProvider) {
return *ui::ColorProviderManager::Get().GetColorProviderFor(
ui::NativeTheme::GetInstanceForNativeUi()->GetColorProviderKey(
nullptr));
}
return *_lastActiveColorProvider;
}
- (void)nativeThemeDidChange {
// Some tests manually notify native theme change without setting
// a profile for app controller, so `_lastProfile` will be nullptr.
if (_lastProfile) {
Browser* browser = chrome::FindBrowserWithProfile(_lastProfile);
if (browser && browser->window())
_lastActiveColorProvider = browser->window()->GetColorProvider();
}
}
- (id)targetForPerformClose {
return _mainWindowForTesting
? _mainWindowForTesting
: [NSApp targetForAction:@selector(performClose:)];
}
// Returns the NSWindow that's the target of the Close Window command.
- (NSWindow*)windowForPerformClose {
NSWindow* targetWindow = nil;
id target = [self targetForPerformClose];
// If `target` is a popover (likely the dictionary lookup popover), the
// main window should handle the close menu item action.
if ([target isKindOfClass:[NSPopover class]]) {
targetWindow =
[[[base::apple::ObjCCast<NSPopover>(target) contentViewController] view]
window];
} else {
targetWindow = base::apple::ObjCCast<NSWindow>(target);
}
// If `targetWindow` is a child (a popover or bubble), the topmost parent
// window should handle the command.
while (targetWindow.parentWindow) {
targetWindow = targetWindow.parentWindow;
}
return targetWindow;
}
- (BOOL)windowHasBrowserTabs:(NSWindow*)window {
if (!window) {
return NO;
}
Browser* browser = chrome::FindBrowserWithWindow(gfx::NativeWindow(window));
return browser && browser->is_type_normal() &&
!browser->tab_strip_model()->empty();
}
- (void)configureMenuItemForCloseTab:(NSMenuItem*)menuItem {
menuItem.title = l10n_util::GetNSStringWithFixup(IDS_CLOSE_TAB_MAC);
menuItem.hidden = NO;
menuItem.tag = IDC_CLOSE_TAB;
menuItem.action = @selector(commandDispatch:);
}
- (void)configureMenuItemForCloseWindow:(NSMenuItem*)menuItem {
menuItem.title = l10n_util::GetNSStringWithFixup(IDS_CLOSE_WINDOW_MAC);
menuItem.hidden = NO;
menuItem.tag = IDC_CLOSE_WINDOW;
menuItem.action = @selector(performClose:);
}
- (void)hideMenuItem:(NSMenuItem*)menuItem {
menuItem.hidden = YES;
menuItem.tag = 0;
menuItem.action = 0;
}
// Updates menu items in the File menu to match the main window.
- (void)updateMenuItemKeyEquivalents {
// If the browser window has tabs, assign ⇧⌘W to "Close Window"
// and ⌘W to "Close Tab", otherwise hide the "Close Tab" item and
// assign ⌘W to "Close Window".
//
// One way to shuffle these shortcuts is to simply find the "Close Window"
// and "Close Tab" menu items and change their key equivalents. For some
// reason, the AppKit won't let us do that. For example, if the "Close Tab"
// item has @"w" as its equivalent and we temporarily assign @"w" to
// "Close Window", we can never set @"w" as the key equivalent for the
// "Close Tab" item. It doesn't appear to be an issue with some other item
// having that same equivalent, the AppKit just won't take it. We get around
// this problem by leaving key equivalents alone and instead change the
// titles and actions of the menu items that own those equivalents.
NSMenuItem* cmdWMenuItem = [self cmdWMenuItem];
NSMenuItem* shiftCmdWMenuItem = [self shiftCmdWMenuItem];
// If we can't find a ⌘W or ⇧⌘W item with IDC_CLOSE_WINDOW or IDC_CLOSE_TAB
// as the tag, assume the user has assigned a custom shortcut to one or both
// of these items. If the user has assigned a custom shortcut, it doesn't
// make sense to perform any shuffling.
if (cmdWMenuItem == nil || shiftCmdWMenuItem == nil) {
return;
}
if ([self windowHasBrowserTabs:[self windowForPerformClose]]) {
// Close Window ⇧⌘W
// Close All ⌥⇧⌘W (alternate, replaces "Close Window" when ⌥ pressed)
// Close Tab ⌘W
[self configureMenuItemForCloseWindow:shiftCmdWMenuItem];
[self configureMenuItemForCloseTab:cmdWMenuItem];
} else {
// (no ⇧⌘W menu item)
// Close All ⌥⇧⌘W (alternate, appears when ⌥ pressed)
// Close Window ⌘W
//
// Having "Close All" appear out of nowhere when the ⌥ key is pressed is
// less than ideal, but "Close All" is a non-primary piece of UI and
// non-tabbed windows are significantly less common, so this will do for
// now. This may need to be revisited if it turns out to become an issue.
[self hideMenuItem:shiftCmdWMenuItem];
[self configureMenuItemForCloseWindow:cmdWMenuItem];
}
// Force no longer hidden items to appear, or newly hidden items to
// disappear.
[[self fileMenu] update];
}
// This only has an effect on macOS 12+, and requests any state restoration
// archive to be created with secure encoding. See the article at
// https://sector7.computest.nl/post/2022-08-process-injection-breaking-all-macos-security-layers-with-a-single-vulnerability/
// for more details.
- (BOOL)applicationSupportsSecureRestorableState:(NSApplication*)app {
return YES;
}
- (BOOL)application:(NSApplication*)application
willContinueUserActivityWithType:(NSString*)userActivityType {
return [userActivityType isEqualToString:NSUserActivityTypeBrowsingWeb];
}
- (BOOL)application:(NSApplication*)application
continueUserActivity:(NSUserActivity*)userActivity
restorationHandler:
(void (^)(NSArray<id<NSUserActivityRestoring>>*))restorationHandler
{
if (![userActivity.activityType
isEqualToString:NSUserActivityTypeBrowsingWeb]) {
return NO;
}
NSURL* url = userActivity.webpageURL;
if (!url)
return NO;
GURL gurl(base::SysNSStringToUTF8([url absoluteString]));
std::vector<GURL> gurlVector;
gurlVector.push_back(gurl);
[self openUrlsReplacingNTP:gurlVector];
return YES;
}
- (void)application:(NSApplication*)application
didFailToContinueUserActivityWithType:(NSString*)userActivityType
error:(NSError*)error {
}
#pragma mark - Handoff Manager
- (void)updateHandoffManagerWithURL:(const GURL&)handoffURL
title:(const std::u16string&)handoffTitle {
[_handoffManager updateActiveURL:handoffURL];
[_handoffManager updateActiveTitle:handoffTitle];
}
- (void)updateHandoffManager:(content::WebContents*)webContents {
if (!_handoffManager)
_handoffManager = [[HandoffManager alloc] init];
if ([self isHandoffEligible:webContents]) {
[self updateHandoffManagerWithURL:webContents->GetVisibleURL()
title:webContents->GetTitle()];
} else {
[self updateHandoffManagerWithURL:GURL() title:std::u16string()];
}
}
- (BOOL)isHandoffEligible:(content::WebContents*)webContents {
if (!webContents)
return NO;
Profile* profile =
Profile::FromBrowserContext(webContents->GetBrowserContext());
if (!profile)
return NO;
// Handoff is not allowed from an incognito profile. To err on the safe side,
// also disallow Handoff from a guest profile.
return profile->IsRegularProfile();
}
- (BOOL)isProfileReady {
return !g_browser_process->browser_policy_connector()
->chrome_browser_cloud_management_controller()
->IsEnterpriseStartupDialogShowing();
}
#pragma mark - HandoffObserverDelegate
- (void)handoffContentsChanged:(content::WebContents*)webContents {
[self updateHandoffManager:webContents];
}
#pragma mark - ASWebAuthenticationSessionWebBrowserSessionHandling
// Note that both of these WebAuthenticationSession calls come in on a random
// worker thread, so it's important to hop to the main thread.
- (void)beginHandlingWebAuthenticationSessionRequest:
(ASWebAuthenticationSessionRequest*)request {
dispatch_async(dispatch_get_main_queue(), ^(void) {
// Start tracking the pending request, so it's possible to cancel it before
// the session actually starts.
NSUUID* key = request.UUID;
DCHECK(![GetPendingWebAuthRequests() objectForKey:key])
<< "Duplicate ASWebAuthenticationSessionRequest";
[GetPendingWebAuthRequests() setObject:request forKey:key];
app_controller_mac::RunInLastProfileSafely(
base::BindOnce(&BeginHandlingWebAuthenticationSessionRequestWithProfile,
request),
app_controller_mac::kShowProfilePickerOnFailure);
});
}
- (void)cancelWebAuthenticationSessionRequest:
(ASWebAuthenticationSessionRequest*)request {
dispatch_async(dispatch_get_main_queue(), ^(void) {
NSUUID* key = request.UUID;
if ([GetPendingWebAuthRequests() objectForKey:key]) {
// Remove the pending request: for the case when the session is not
// started.
[GetPendingWebAuthRequests() removeObjectForKey:key];
// Take care of the undocumented requirement (https://crbug.com/1400714)
// that -[ASWebAuthenticationSessionRequest cancelWithError:] be called
// for authentication sessions canceled by the OS.
NSError* error = [NSError
errorWithDomain:ASWebAuthenticationSessionErrorDomain
code:ASWebAuthenticationSessionErrorCodeCanceledLogin
userInfo:nil];
[request cancelWithError:error];
} else {
// Cancel the session: for the case when it was already started.
AuthSessionRequest::CancelAuthSession(request);
}
});
}
- (void)setCmdWMenuItemForTesting:(NSMenuItem*)menuItem {
_cmdWMenuItemForTesting = menuItem;
}
- (void)setShiftCmdWMenuItemForTesting:(NSMenuItem*)menuItem {
_shiftCmdWMenuItemForTesting = menuItem;
}
- (void)setMainWindowForTesting:(NSWindow*)window {
_mainWindowForTesting = window;
}
- (void)setLastProfileForTesting:(Profile*)profile {
_lastProfile = profile;
Browser* browser = chrome::FindLastActiveWithProfile(profile);
_lastActiveColorProvider = browser->window()->GetColorProvider();
}
@end // @implementation AppController
//---------------------------------------------------------------------------
namespace {
void UpdateProfileInUse(Profile* profile) {
if (!profile) {
return;
}
[AppController.sharedController setLastProfile:profile];
}
void OpenUrlsInBrowserWithProfile(const std::vector<GURL>& urls,
Profile* profile) {
if (!profile)
return; // No suitable profile to open the URLs, do nothing.
// Prefer a regular (non-incognito) profile
if (profile->IsIncognitoProfile()) {
profile = ProfileManager::MaybeForceOffTheRecordMode(
profile->GetOriginalProfile());
}
Browser* browser = chrome::FindLastActiveWithProfile(profile);
int startupIndex = TabStripModel::kNoTab;
content::WebContents* startupContent = nullptr;
if (browser && browser->tab_strip_model()->count() == 1) {
// If there's only 1 tab and the tab is NTP, close this NTP tab and open all
// startup urls in new tabs, because the omnibox will stay focused if we
// load url in NTP tab.
startupIndex = browser->tab_strip_model()->active_index();
startupContent = browser->tab_strip_model()->GetActiveWebContents();
} else if (!browser) {
// if no browser window exists then create one with no tabs to be filled in.
browser = Browser::Create(Browser::CreateParams(profile, true));
browser->window()->Show();
}
// Various methods to open URLs that we get in a native fashion. We use
// StartupBrowserCreator here because on the other platforms, URLs to open
// come through the ProcessSingleton, and it calls StartupBrowserCreator. It's
// best to bottleneck the openings through that for uniform handling.
base::CommandLine dummy(base::CommandLine::NO_PROGRAM);
chrome::startup::IsFirstRun first_run =
first_run::IsChromeFirstRun() ? chrome::startup::IsFirstRun::kYes
: chrome::startup::IsFirstRun::kNo;
StartupBrowserCreatorImpl launch(base::FilePath(), dummy, first_run);
launch.OpenURLsInBrowser(browser, chrome::startup::IsProcessStartup::kNo,
urls);
// This NTP check should be replaced once https://crbug.com/624410 is fixed.
if (startupIndex != TabStripModel::kNoTab &&
(startupContent->GetVisibleURL() == chrome::kChromeUINewTabURL ||
startupContent->GetVisibleURL() == chrome::kChromeUINewTabPageURL)) {
browser->tab_strip_model()->CloseWebContentsAt(startupIndex,
TabCloseTypes::CLOSE_NONE);
}
}
// Returns the profile to be used for new windows (or nullptr if it fails).
Profile* GetSafeProfile(Profile* loaded_profile) {
return
[AppController.sharedController safeProfileForNewWindows:loaded_profile];
}
// Called when the profile has been loaded for RunIn*ProfileSafely(). This
// profile may not be safe to use for new windows (due to policies).
void OnProfileLoaded(base::OnceCallback<void(Profile*)> callback,
app_controller_mac::ProfileLoadFailureBehavior on_failure,
Profile* loaded_profile) {
Profile* safe_profile = GetSafeProfile(loaded_profile);
if (!safe_profile) {
switch (on_failure) {
case app_controller_mac::kShowProfilePickerOnFailure:
ProfilePicker::Show(ProfilePicker::Params::FromEntryPoint(
ProfilePicker::EntryPoint::kUnableToCreateBrowser));
break;
case app_controller_mac::kIgnoreOnFailure:
break;
}
}
std::move(callback).Run(safe_profile);
}
} // namespace
namespace app_controller_mac {
bool IsOpeningNewWindow() {
return g_is_opening_new_window;
}
void CreateGuestProfileIfNeeded() {
g_browser_process->profile_manager()->CreateProfileAsync(
ProfileManager::GetGuestProfilePath(),
base::BindOnce(&UpdateProfileInUse));
}
void EnterpriseStartupDialogClosed() {
NSNotification* notify = [NSNotification
notificationWithName:NSApplicationDidFinishLaunchingNotification
object:NSApp];
[AppController.sharedController applicationDidFinishLaunching:notify];
}
void RunInLastProfileSafely(base::OnceCallback<void(Profile*)> callback,
ProfileLoadFailureBehavior on_failure) {
DCHECK(callback);
if (Profile* profile = [AppController.sharedController lastProfileIfLoaded]) {
OnProfileLoaded(std::move(callback), on_failure, profile);
return;
}
g_browser_process->profile_manager()->CreateProfileAsync(
GetStartupProfilePathMac(),
base::BindOnce(&OnProfileLoaded, std::move(callback), on_failure));
}
void RunInProfileSafely(const base::FilePath& profile_dir,
base::OnceCallback<void(Profile*)> callback,
ProfileLoadFailureBehavior on_failure) {
DCHECK(callback);
ProfileManager* profile_manager = g_browser_process->profile_manager();
// `profile_manager` can be null in tests.
if (!profile_manager) {
OnProfileLoaded(std::move(callback), on_failure, nullptr);
return;
}
if (Profile* profile = profile_manager->GetProfileByPath(profile_dir)) {
OnProfileLoaded(std::move(callback), on_failure, profile);
return;
}
g_browser_process->profile_manager()->LoadProfileByPath(
profile_dir, /*incognito=*/false,
base::BindOnce(&OnProfileLoaded, std::move(callback), on_failure));
}
void AllowApplicationToTerminate() {
[AppController.sharedController allowApplicationToTerminate];
}
// static
void TabRestorer::RestoreMostRecent(Profile* profile) {
RestoreByID(profile, SessionID::InvalidValue());
}
// static
void TabRestorer::RestoreByID(Profile* profile, SessionID session_id) {
DCHECK(profile);
auto* service = TabRestoreServiceFactory::GetForProfile(profile);
if (!service)
return;
if (service->IsLoaded()) {
DoRestoreTab(profile, session_id);
} else {
// TabRestoreService isn't loaded. Tell it to load entries, and call
// OpenWindowWithRestoredTabs() when it's done.
std::ignore = new TabRestorer(profile, session_id);
service->LoadTabsFromLastSession();
}
}
// static
void TabRestorer::DoRestoreTab(Profile* profile, SessionID session_id) {
DCHECK(profile);
auto* service = TabRestoreServiceFactory::GetForProfile(profile);
if (!service)
return;
Browser* browser = chrome::FindTabbedBrowser(profile, false);
BrowserLiveTabContext* context =
browser ? browser->live_tab_context() : nullptr;
if (session_id.is_valid()) {
service->RestoreEntryById(context, session_id,
WindowOpenDisposition::UNKNOWN);
} else {
service->RestoreMostRecentEntry(context);
}
}
TabRestorer::TabRestorer(Profile* profile, SessionID session_id)
: profile_(profile), session_id_(session_id) {
auto* service = TabRestoreServiceFactory::GetForProfile(profile);
DCHECK(service);
observation_.Observe(service);
}
TabRestorer::~TabRestorer() = default;
void TabRestorer::TabRestoreServiceDestroyed(
sessions::TabRestoreService* service) {
delete this;
}
void TabRestorer::TabRestoreServiceLoaded(
sessions::TabRestoreService* service) {
observation_.Reset();
DoRestoreTab(profile_, session_id_);
delete this;
}
void ResetKeepAliveWhileHidden() {
[AppController.sharedController resetKeepAliveWhileHidden];
}
} // namespace app_controller_mac
|