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
|
// 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.
#include "chrome/browser/devtools/devtools_window.h"
#include <algorithm>
#include <memory>
#include <set>
#include <string_view>
#include <utility>
#include "base/base64.h"
#include "base/command_line.h"
#include "base/functional/bind.h"
#include "base/json/json_reader.h"
#include "base/lazy_instance.h"
#include "base/memory/raw_ptr.h"
#include "base/metrics/histogram_functions.h"
#include "base/metrics/histogram_macros.h"
#include "base/metrics/user_metrics.h"
#include "base/notimplemented.h"
#include "base/strings/escape.h"
#include "base/strings/utf_string_conversions.h"
#include "base/task/sequenced_task_runner.h"
#include "base/time/time.h"
#include "base/values.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/certificate_viewer.h"
#include "chrome/browser/devtools/aida_client.h"
#include "chrome/browser/devtools/devtools_availability_checker.h"
#include "chrome/browser/devtools/devtools_eye_dropper.h"
#include "chrome/browser/devtools/features.h"
#include "chrome/browser/devtools/process_sharing_infobar_delegate.h"
#include "chrome/browser/file_select_helper.h"
#include "chrome/browser/infobars/confirm_infobar_creator.h"
#include "chrome/browser/profiles/keep_alive/profile_keep_alive_types.h"
#include "chrome/browser/profiles/keep_alive/scoped_profile_keep_alive.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/search_engines/template_url_service_factory.h"
#include "chrome/browser/task_manager/web_contents_tags.h"
#include "chrome/browser/ui/prefs/prefs_tab_helper.h"
#include "chrome/browser/ui/scoped_tabbed_browser_displayer.h"
#include "chrome/browser/ui/tabs/tab_strip_user_gesture_details.h"
#include "chrome/browser/ui/webui/devtools/devtools_ui.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/pref_names.h"
#include "chrome/common/url_constants.h"
#include "components/infobars/content/content_infobar_manager.h"
#include "components/infobars/core/infobar.h"
#include "components/input/native_web_keyboard_event.h"
#include "components/javascript_dialogs/app_modal_dialog_manager.h"
#include "components/language/core/browser/pref_names.h"
#include "components/pref_registry/pref_registry_syncable.h"
#include "components/prefs/scoped_user_pref_update.h"
#include "components/search_engines/util.h"
#include "components/sessions/content/session_tab_helper.h"
#include "components/sync_preferences/pref_service_syncable.h"
#include "components/web_modal/web_contents_modal_dialog_manager.h"
#include "components/zoom/page_zoom.h"
#include "components/zoom/zoom_controller.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/child_process_security_policy.h"
#include "content/public/browser/color_chooser.h"
#include "content/public/browser/devtools_agent_host.h"
#include "content/public/browser/file_select_listener.h"
#include "content/public/browser/keyboard_event_processing_result.h"
#include "content/public/browser/navigation_controller.h"
#include "content/public/browser/navigation_entry.h"
#include "content/public/browser/navigation_handle.h"
#include "content/public/browser/navigation_throttle.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/render_process_host.h"
#include "content/public/browser/render_view_host.h"
#include "content/public/browser/render_widget_host_view.h"
#include "content/public/browser/web_contents.h"
#include "content/public/common/content_client.h"
#include "content/public/common/content_features.h"
#include "content/public/common/url_constants.h"
#include "extensions/browser/view_type_utils.h"
#include "extensions/common/constants.h"
#include "net/cert/x509_certificate.h"
#include "services/metrics/public/cpp/ukm_builders.h"
#include "services/metrics/public/cpp/ukm_recorder.h"
#include "services/metrics/public/cpp/ukm_source_id.h"
#include "third_party/blink/public/common/input/web_gesture_event.h"
#include "third_party/blink/public/common/input/web_input_event.h"
#include "third_party/blink/public/common/renderer_preferences/renderer_preferences.h"
#include "third_party/blink/public/public_buildflags.h"
#include "ui/base/page_transition_types.h"
#include "ui/events/keycodes/dom/keycode_converter.h"
#include "ui/events/keycodes/keyboard_code_conversion.h"
#include "ui/events/keycodes/keyboard_codes.h"
#include "base/win/windows_h_disallowed.h"
#if BUILDFLAG(IS_ANDROID)
#include "chrome/browser/ui/android/tab_model/tab_model.h"
#include "chrome/browser/ui/android/tab_model/tab_model_list.h"
#else
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_finder.h"
#include "chrome/browser/ui/browser_tabstrip.h"
#include "chrome/browser/ui/browser_window.h"
#include "components/keep_alive_registry/keep_alive_types.h"
#include "components/keep_alive_registry/scoped_keep_alive.h"
#endif
using blink::WebInputEvent;
using content::BrowserThread;
using content::DevToolsAgentHost;
using content::WebContents;
namespace {
typedef std::vector<DevToolsWindow*> DevToolsWindows;
base::LazyInstance<DevToolsWindows>::Leaky g_devtools_window_instances =
LAZY_INSTANCE_INITIALIZER;
base::LazyInstance<
std::vector<base::RepeatingCallback<void(DevToolsWindow*)>>>::Leaky
g_creation_callbacks = LAZY_INSTANCE_INITIALIZER;
static const char kKeyUpEventName[] = "keyup";
static const char kKeyDownEventName[] = "keydown";
static const char kDefaultFrontendURL[] =
"devtools://devtools/bundled/devtools_app.html";
static const char kNodeFrontendURL[] =
"devtools://devtools/bundled/node_app.html";
static const char kWorkerFrontendURL[] =
"devtools://devtools/bundled/worker_app.html";
static const char kJSFrontendURL[] = "devtools://devtools/bundled/js_app.html";
static const char kFallbackFrontendURL[] =
"devtools://devtools/bundled/inspector.html";
void SetPreferencesFromJson(Profile* profile, const std::string& json) {
std::optional<base::Value::Dict> parsed = base::JSONReader::ReadDict(json);
if (!parsed) {
return;
}
ScopedDictPrefUpdate update(profile->GetPrefs(), prefs::kDevToolsPreferences);
for (auto dict_value : *parsed) {
if (!dict_value.second.is_string()) {
continue;
}
update->Set(dict_value.first, std::move(dict_value.second));
}
}
// DevToolsToolboxDelegate ----------------------------------------------------
class DevToolsToolboxDelegate : public content::WebContentsObserver,
public content::WebContentsDelegate {
public:
DevToolsToolboxDelegate(WebContents* toolbox_contents,
WebContents* inspected_web_contents);
DevToolsToolboxDelegate(const DevToolsToolboxDelegate&) = delete;
DevToolsToolboxDelegate& operator=(const DevToolsToolboxDelegate&) = delete;
~DevToolsToolboxDelegate() override;
content::WebContents* OpenURLFromTab(
content::WebContents* source,
const content::OpenURLParams& params,
base::OnceCallback<void(content::NavigationHandle&)>
navigation_handle_callback) override;
content::KeyboardEventProcessingResult PreHandleKeyboardEvent(
content::WebContents* source,
const input::NativeWebKeyboardEvent& event) override;
bool HandleKeyboardEvent(content::WebContents* source,
const input::NativeWebKeyboardEvent& event) override;
void WebContentsDestroyed() override;
private:
#if !BUILDFLAG(IS_ANDROID)
BrowserWindow* GetInspectedBrowserWindow();
#endif
base::WeakPtr<content::WebContents> inspected_web_contents_;
};
DevToolsToolboxDelegate::DevToolsToolboxDelegate(WebContents* toolbox_contents,
WebContents* web_contents)
: WebContentsObserver(toolbox_contents),
inspected_web_contents_(web_contents ? web_contents->GetWeakPtr()
: nullptr) {}
DevToolsToolboxDelegate::~DevToolsToolboxDelegate() = default;
content::WebContents* DevToolsToolboxDelegate::OpenURLFromTab(
content::WebContents* source,
const content::OpenURLParams& params,
base::OnceCallback<void(content::NavigationHandle&)>
navigation_handle_callback) {
DCHECK(source == web_contents());
if (!params.url.SchemeIs(content::kChromeDevToolsScheme)) {
return nullptr;
}
base::WeakPtr<content::NavigationHandle> navigation_handle =
source->GetController().LoadURLWithParams(
content::NavigationController::LoadURLParams(params));
if (navigation_handle_callback && navigation_handle) {
std::move(navigation_handle_callback).Run(*navigation_handle);
}
return source;
}
content::KeyboardEventProcessingResult
DevToolsToolboxDelegate::PreHandleKeyboardEvent(
content::WebContents* source,
const input::NativeWebKeyboardEvent& event) {
#if !BUILDFLAG(IS_ANDROID)
BrowserWindow* window = GetInspectedBrowserWindow();
if (window) {
return window->PreHandleKeyboardEvent(event);
}
#endif
return content::KeyboardEventProcessingResult::NOT_HANDLED;
}
bool DevToolsToolboxDelegate::HandleKeyboardEvent(
content::WebContents* source,
const input::NativeWebKeyboardEvent& event) {
#if BUILDFLAG(IS_ANDROID)
return false;
#else
if (event.windows_key_code == 0x08) {
// Do not navigate back in history on Windows (http://crbug.com/74156).
return false;
}
BrowserWindow* window = GetInspectedBrowserWindow();
return window && window->HandleKeyboardEvent(event);
#endif
}
void DevToolsToolboxDelegate::WebContentsDestroyed() {
delete this;
}
#if !BUILDFLAG(IS_ANDROID)
BrowserWindow* DevToolsToolboxDelegate::GetInspectedBrowserWindow() {
if (!inspected_web_contents_) {
return nullptr;
}
Browser* browser = chrome::FindBrowserWithTab(inspected_web_contents_.get());
return browser ? browser->window() : nullptr;
}
#endif
// static
GURL DecorateFrontendURL(const GURL& base_url) {
std::string frontend_url = base_url.spec();
base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
if (command_line->HasSwitch(switches::kDevToolsFlags)) {
frontend_url = frontend_url +
((frontend_url.find("?") == std::string::npos) ? "?" : "&") +
command_line->GetSwitchValueASCII(switches::kDevToolsFlags);
}
if (command_line->HasSwitch(switches::kCustomDevtoolsFrontend)) {
frontend_url = frontend_url +
((frontend_url.find("?") == std::string::npos) ? "?" : "&") +
"debugFrontend=true";
}
return GURL(frontend_url);
}
} // namespace
// DevToolsEventForwarder -----------------------------------------------------
class DevToolsEventForwarder {
public:
explicit DevToolsEventForwarder(DevToolsWindow* window)
: devtools_window_(window) {}
DevToolsEventForwarder(const DevToolsEventForwarder&) = delete;
DevToolsEventForwarder& operator=(const DevToolsEventForwarder&) = delete;
// Registers whitelisted shortcuts with the forwarder.
// Only registered keys will be forwarded to the DevTools frontend.
void SetWhitelistedShortcuts(const std::string& message);
// Forwards a keyboard event to the DevTools frontend if it is whitelisted.
// Returns |true| if the event has been forwarded, |false| otherwise.
bool ForwardEvent(const input::NativeWebKeyboardEvent& event);
private:
static bool KeyWhitelistingAllowed(int key_code, int modifiers);
static int CombineKeyCodeAndModifiers(int key_code, int modifiers);
raw_ptr<DevToolsWindow> devtools_window_;
std::set<int> whitelisted_keys_;
};
void DevToolsEventForwarder::SetWhitelistedShortcuts(
const std::string& message) {
std::optional<base::Value> parsed_message = base::JSONReader::Read(message);
if (!parsed_message || !parsed_message->is_list()) {
return;
}
for (const auto& list_item : parsed_message->GetList()) {
if (!list_item.is_dict()) {
continue;
}
int key_code = list_item.GetDict().FindInt("keyCode").value_or(0);
if (key_code == 0) {
continue;
}
int modifiers = list_item.GetDict().FindInt("modifiers").value_or(0);
if (!KeyWhitelistingAllowed(key_code, modifiers)) {
LOG(WARNING) << "Key whitelisting forbidden: "
<< "(" << key_code << "," << modifiers << ")";
continue;
}
whitelisted_keys_.insert(CombineKeyCodeAndModifiers(key_code, modifiers));
}
}
bool DevToolsEventForwarder::ForwardEvent(
const input::NativeWebKeyboardEvent& event) {
std::string event_type;
switch (event.GetType()) {
case WebInputEvent::Type::kKeyDown:
case WebInputEvent::Type::kRawKeyDown:
event_type = kKeyDownEventName;
break;
case WebInputEvent::Type::kKeyUp:
event_type = kKeyUpEventName;
break;
default:
return false;
}
int key_code = ui::LocatedToNonLocatedKeyboardCode(
static_cast<ui::KeyboardCode>(event.windows_key_code));
int modifiers = event.GetModifiers() &
(WebInputEvent::kShiftKey | WebInputEvent::kControlKey |
WebInputEvent::kAltKey | WebInputEvent::kMetaKey);
int key = CombineKeyCodeAndModifiers(key_code, modifiers);
if (whitelisted_keys_.find(key) == whitelisted_keys_.end()) {
return false;
}
base::Value::Dict event_data;
event_data.Set("type", event_type);
event_data.Set("key", ui::KeycodeConverter::DomKeyToKeyString(
static_cast<ui::DomKey>(event.dom_key)));
event_data.Set("code", ui::KeycodeConverter::DomCodeToCodeString(
static_cast<ui::DomCode>(event.dom_code)));
event_data.Set("keyCode", key_code);
event_data.Set("modifiers", modifiers);
devtools_window_->bindings_->CallClientMethod(
"DevToolsAPI", "keyEventUnhandled", base::Value(std::move(event_data)));
return true;
}
int DevToolsEventForwarder::CombineKeyCodeAndModifiers(int key_code,
int modifiers) {
return key_code | (modifiers << 16);
}
bool DevToolsEventForwarder::KeyWhitelistingAllowed(int key_code,
int modifiers) {
return (ui::VKEY_F1 <= key_code && key_code <= ui::VKEY_F12) ||
modifiers != 0;
}
void DevToolsWindow::OpenNodeFrontend() {
DevToolsWindow::OpenNodeFrontendWindow(
profile_, DevToolsOpenedByAction::kOpenForNodeFromAnotherTarget);
}
// DevToolsWindow::Throttle ------------------------------------------
class DevToolsWindow::Throttle : public content::NavigationThrottle {
public:
Throttle(content::NavigationThrottleRegistry& registry,
DevToolsWindow* devtools_window)
: content::NavigationThrottle(registry),
devtools_window_(devtools_window) {
devtools_window_->throttle_ = this;
}
Throttle(const Throttle&) = delete;
Throttle& operator=(const Throttle&) = delete;
~Throttle() override {
if (devtools_window_) {
devtools_window_->throttle_ = nullptr;
}
}
// content::NavigationThrottle implementation:
NavigationThrottle::ThrottleCheckResult WillStartRequest() override {
return DEFER;
}
const char* GetNameForLogging() override { return "DevToolsWindowThrottle"; }
void ResumeThrottle() {
if (devtools_window_) {
devtools_window_->throttle_ = nullptr;
devtools_window_ = nullptr;
}
Resume();
}
private:
raw_ptr<DevToolsWindow> devtools_window_;
};
void DevToolsWindow::MainWebContentsObserver::RenderFrameHostChanged(
content::RenderFrameHost* old_frame,
content::RenderFrameHost* new_frame) {
window_->MainWebContentRenderFrameHostChanged(old_frame, new_frame);
}
DevToolsWindow::MainWebContentsObserver::~MainWebContentsObserver() = default;
// Helper class that holds the owned main WebContents for the docked
// devtools window and maintains a keepalive object that keeps the browser
// main loop alive long enough for the WebContents to clean up properly.
class DevToolsWindow::OwnedMainWebContents {
public:
explicit OwnedMainWebContents(
std::unique_ptr<content::WebContents> web_contents)
:
#if !BUILDFLAG(IS_ANDROID)
keep_alive_(KeepAliveOrigin::DEVTOOLS_WINDOW,
KeepAliveRestartOption::DISABLED),
#endif
web_contents_(std::move(web_contents)) {
Profile* profile = GetProfileForDevToolsWindow(web_contents_.get());
DCHECK(profile);
if (!profile->IsOffTheRecord()) {
// ScopedProfileKeepAlive does not support OTR profiles.
profile_keep_alive_ = std::make_unique<ScopedProfileKeepAlive>(
profile, ProfileKeepAliveOrigin::kDevToolsWindow);
}
}
static std::unique_ptr<content::WebContents> TakeWebContents(
std::unique_ptr<OwnedMainWebContents> instance) {
return std::move(instance->web_contents_);
}
private:
#if !BUILDFLAG(IS_ANDROID)
ScopedKeepAlive keep_alive_;
#endif
std::unique_ptr<ScopedProfileKeepAlive> profile_keep_alive_;
std::unique_ptr<content::WebContents> web_contents_;
};
// DevToolsWindow -------------------------------------------------------------
const char DevToolsWindow::kDevToolsApp[] = "DevToolsApp";
// static
void DevToolsWindow::AddCreationCallbackForTest(
const CreationCallback& callback) {
g_creation_callbacks.Get().push_back(callback);
}
// static
void DevToolsWindow::RemoveCreationCallbackForTest(
const CreationCallback& callback) {
for (size_t i = 0; i < g_creation_callbacks.Get().size(); ++i) {
if (g_creation_callbacks.Get().at(i) == callback) {
g_creation_callbacks.Get().erase(g_creation_callbacks.Get().begin() + i);
return;
}
}
}
DevToolsWindow::~DevToolsWindow() {
if (throttle_) {
throttle_->ResumeThrottle();
}
life_stage_ = kClosing;
base::RecordAction(base::UserMetricsAction("DevTools_Close"));
UpdateBrowserWindow();
UpdateBrowserToolbar();
if (sharing_infobar_) {
sharing_infobar_->RemoveSelf();
}
capture_handle_.RunAndReset();
owned_toolbox_web_contents_.reset();
#if !BUILDFLAG(IS_ANDROID)
browser_list_observation_.Reset();
#endif
DevToolsWindows* instances = g_devtools_window_instances.Pointer();
auto it = std::ranges::find(*instances, this);
CHECK(it != instances->end());
instances->erase(it);
if (!close_callback_.is_null()) {
std::move(close_callback_).Run();
}
// Defer deletion of the main web contents, since we could get here
// via RenderFrameHostImpl method that expects WebContents to live
// for some time. See http://crbug.com/997299 for details.
if (owned_main_web_contents_) {
base::SequencedTaskRunner::GetCurrentDefault()->DeleteSoon(
FROM_HERE, std::move(owned_main_web_contents_));
}
// If window gets destroyed during a test run, need to stop the test.
if (!ready_for_test_callback_.is_null()) {
base::SequencedTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE, std::move(ready_for_test_callback_));
}
}
// static
void DevToolsWindow::RegisterProfilePrefs(
user_prefs::PrefRegistrySyncable* registry) {
registry->RegisterDictionaryPref(prefs::kDevToolsEditedFiles);
registry->RegisterDictionaryPref(prefs::kDevToolsFileSystemPaths);
registry->RegisterStringPref(prefs::kDevToolsAdbKey, std::string());
registry->RegisterInt64Pref(prefs::kDevToolsLastOpenTimestamp, 0L);
registry->RegisterBooleanPref(prefs::kDevToolsDiscoverUsbDevicesEnabled,
true);
registry->RegisterBooleanPref(prefs::kDevToolsPortForwardingEnabled, false);
registry->RegisterBooleanPref(prefs::kDevToolsPortForwardingDefaultSet,
false);
registry->RegisterDictionaryPref(prefs::kDevToolsPortForwardingConfig);
registry->RegisterBooleanPref(prefs::kDevToolsDiscoverTCPTargetsEnabled,
true);
registry->RegisterListPref(prefs::kDevToolsTCPDiscoveryConfig);
registry->RegisterDictionaryPref(prefs::kDevToolsPreferences);
registry->RegisterBooleanPref(
prefs::kDevToolsSyncPreferences,
DevToolsSettings::kSyncDevToolsPreferencesDefault,
user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);
registry->RegisterDictionaryPref(
prefs::kDevToolsSyncedPreferencesSyncEnabled,
user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);
registry->RegisterDictionaryPref(
prefs::kDevToolsSyncedPreferencesSyncDisabled);
registry->RegisterIntegerPref(
prefs::kDevToolsGenAiSettings,
static_cast<int>(DevToolsGenAiEnterprisePolicyValue::kAllow));
}
// static
content::WebContents* DevToolsWindow::GetInTabWebContents(
WebContents* inspected_web_contents,
DevToolsContentsResizingStrategy* out_strategy) {
DevToolsWindow* window =
GetInstanceForInspectedWebContents(inspected_web_contents);
if (!window || window->life_stage_ == kClosing) {
return nullptr;
}
// Not yet loaded window is treated as docked, but we should not present it
// until we decided on docking.
bool is_docked_set = window->life_stage_ == kLoadCompleted ||
window->life_stage_ == kIsDockedSet;
if (!is_docked_set) {
return nullptr;
}
// Undocked window should have toolbox web contents.
if (!window->is_docked_ && !window->toolbox_web_contents_) {
return nullptr;
}
if (out_strategy) {
out_strategy->CopyFrom(window->contents_resizing_strategy_);
}
return window->is_docked_ ? window->main_web_contents_.get()
: window->toolbox_web_contents_.get();
}
// static
DevToolsWindow* DevToolsWindow::GetInstanceForInspectedWebContents(
WebContents* inspected_web_contents) {
if (!inspected_web_contents || !g_devtools_window_instances.IsCreated()) {
return nullptr;
}
DevToolsWindows* instances = g_devtools_window_instances.Pointer();
for (auto it(instances->begin()); it != instances->end(); ++it) {
if ((*it)->GetInspectedWebContents() == inspected_web_contents) {
return *it;
}
}
return nullptr;
}
// static
bool DevToolsWindow::IsDevToolsWindow(content::WebContents* web_contents) {
if (!web_contents || !g_devtools_window_instances.IsCreated()) {
return false;
}
DevToolsWindows* instances = g_devtools_window_instances.Pointer();
for (auto it(instances->begin()); it != instances->end(); ++it) {
if ((*it)->main_web_contents_ == web_contents ||
(*it)->toolbox_web_contents_ == web_contents) {
return true;
}
}
return false;
}
// static
void DevToolsWindow::OpenDevToolsWindowForWorker(
Profile* profile,
const scoped_refptr<DevToolsAgentHost>& worker_agent,
DevToolsOpenedByAction opened_by) {
DevToolsWindow* window = FindDevToolsWindow(worker_agent.get());
if (!window) {
base::RecordAction(base::UserMetricsAction("DevTools_InspectWorker"));
window = Create(profile, nullptr, kFrontendWorker, std::string(), false, "",
"", worker_agent->IsAttached(),
/* browser_connection */ true, opened_by);
if (!window) {
return;
}
window->bindings_->AttachViaBrowserTarget(worker_agent);
}
window->ScheduleShow(DevToolsToggleAction::Show());
}
// static
void DevToolsWindow::OpenDevToolsWindow(
content::WebContents* inspected_web_contents,
DevToolsOpenedByAction opened_by) {
ToggleDevToolsWindow(inspected_web_contents, nullptr, true,
DevToolsToggleAction::Show(), "", opened_by);
}
// static
void DevToolsWindow::OpenDevToolsWindow(
content::WebContents* inspected_web_contents,
Profile* profile,
DevToolsOpenedByAction opened_by) {
ToggleDevToolsWindow(inspected_web_contents, profile, true,
DevToolsToggleAction::Show(), "");
}
// static
void DevToolsWindow::OpenDevToolsWindow(
scoped_refptr<content::DevToolsAgentHost> agent_host,
Profile* profile,
DevToolsOpenedByAction opened_by) {
OpenDevToolsWindow(agent_host, profile, false /* use_bundled_frontend */,
opened_by);
}
// static
void DevToolsWindow::OpenDevToolsWindowWithBundledFrontend(
scoped_refptr<content::DevToolsAgentHost> agent_host,
Profile* profile,
DevToolsOpenedByAction opened_by) {
OpenDevToolsWindow(agent_host, profile, true /* use_bundled_frontend */,
opened_by);
}
// static
void DevToolsWindow::OpenDevToolsWindow(
scoped_refptr<content::DevToolsAgentHost> agent_host,
Profile* profile,
bool use_bundled_frontend,
DevToolsOpenedByAction opened_by) {
if (!profile) {
profile = Profile::FromBrowserContext(agent_host->GetBrowserContext());
}
if (!profile) {
return;
}
std::string type = agent_host->GetType();
bool is_worker = type == DevToolsAgentHost::kTypeServiceWorker ||
type == DevToolsAgentHost::kTypeSharedWorker ||
type == DevToolsAgentHost::kTypeSharedStorageWorklet;
if (!agent_host->GetFrontendURL().empty()) {
DevToolsWindow::OpenExternalFrontend(profile, agent_host->GetFrontendURL(),
agent_host, use_bundled_frontend,
opened_by);
return;
}
if (is_worker) {
DevToolsWindow::OpenDevToolsWindowForWorker(profile, agent_host, opened_by);
return;
}
if (type == content::DevToolsAgentHost::kTypeFrame) {
DevToolsWindow::OpenDevToolsWindowForFrame(profile, agent_host, opened_by);
return;
}
content::WebContents* web_contents = agent_host->GetWebContents();
if (web_contents) {
DevToolsWindow::OpenDevToolsWindow(web_contents, profile, opened_by);
}
}
// static
void DevToolsWindow::OpenDevToolsWindow(
content::WebContents* inspected_web_contents,
const DevToolsToggleAction& action,
DevToolsOpenedByAction opened_by) {
ToggleDevToolsWindow(inspected_web_contents, nullptr, true, action, "",
opened_by);
}
// static
void DevToolsWindow::OpenDevToolsWindowForFrame(
Profile* profile,
const scoped_refptr<content::DevToolsAgentHost>& agent_host,
DevToolsOpenedByAction opened_by) {
DevToolsWindow* window = FindDevToolsWindow(agent_host.get());
if (!window) {
window = DevToolsWindow::Create(
profile, nullptr, kFrontendDefault, std::string(), false, std::string(),
std::string(), agent_host->IsAttached(), false, opened_by);
if (!window) {
return;
}
window->bindings_->AttachTo(agent_host);
}
window->ScheduleShow(DevToolsToggleAction::Show());
}
// static
void DevToolsWindow::OpenExternalFrontend(
Profile* profile,
const std::string& frontend_url,
const scoped_refptr<content::DevToolsAgentHost>& agent_host,
bool use_bundled_frontend,
DevToolsOpenedByAction opened_by) {
DevToolsWindow* window = FindDevToolsWindow(agent_host.get());
if (window) {
window->ScheduleShow(DevToolsToggleAction::Show());
return;
}
std::string type = agent_host->GetType();
if (type == "node") {
// Direct node targets will always open using ToT front-end.
window = Create(profile, nullptr, kFrontendV8, std::string(), false,
std::string(), std::string(), agent_host->IsAttached(),
/* browser_connection */ false, opened_by);
} else {
bool is_worker = type == DevToolsAgentHost::kTypeServiceWorker ||
type == DevToolsAgentHost::kTypeSharedWorker ||
type == DevToolsAgentHost::kTypeSharedStorageWorklet;
FrontendType frontend_type =
is_worker ? kFrontendRemoteWorker
: (type == "tab" ? kFrontendRemoteTab : kFrontendRemote);
std::string effective_frontend_url =
use_bundled_frontend ? kFallbackFrontendURL
: DevToolsUI::GetProxyURL(frontend_url).spec();
window =
Create(profile, nullptr, frontend_type, effective_frontend_url, false,
std::string(), std::string(), agent_host->IsAttached(),
/* browser_connection */ false, opened_by);
}
if (!window) {
return;
}
window->bindings_->AttachTo(agent_host);
window->close_on_detach_ = false;
window->ScheduleShow(DevToolsToggleAction::Show());
}
// static
DevToolsWindow* DevToolsWindow::OpenNodeFrontendWindow(
Profile* profile,
DevToolsOpenedByAction opened_by) {
for (DevToolsWindow* window : g_devtools_window_instances.Get()) {
if (window->frontend_type_ == kFrontendNode) {
window->ActivateWindow();
return window;
}
}
DevToolsWindow* window = Create(
profile, nullptr, kFrontendNode, std::string(), false, std::string(),
std::string(), false, /* browser_connection */ false, opened_by);
if (!window) {
return nullptr;
}
window->bindings_->AttachTo(DevToolsAgentHost::CreateForDiscovery());
window->ScheduleShow(DevToolsToggleAction::Show());
return window;
}
// static
Profile* DevToolsWindow::GetProfileForDevToolsWindow(
content::WebContents* web_contents) {
Profile* profile =
Profile::FromBrowserContext(web_contents->GetBrowserContext());
if (profile->IsPrimaryOTRProfile() || profile->IsDevToolsOTRProfile()) {
return profile;
}
return profile->GetOriginalProfile();
}
// static
void DevToolsWindow::ToggleDevToolsWindow(
content::WebContents* inspected_web_contents,
Profile* profile,
bool force_open,
const DevToolsToggleAction& action,
const std::string& settings,
DevToolsOpenedByAction toggled_by) {
scoped_refptr<DevToolsAgentHost> agent(
DevToolsAgentHost::GetOrCreateForTab(inspected_web_contents));
DevToolsWindow* window = FindDevToolsWindow(agent.get());
bool do_open = force_open;
if (!window) {
if (!profile) {
profile = GetProfileForDevToolsWindow(inspected_web_contents);
}
base::RecordAction(base::UserMetricsAction("DevTools_InspectRenderer"));
std::string panel;
switch (action.type()) {
case DevToolsToggleAction::kInspect:
case DevToolsToggleAction::kShowElementsPanel:
panel = "elements";
break;
case DevToolsToggleAction::kShowConsolePanel:
panel = "console";
break;
case DevToolsToggleAction::kPauseInDebugger:
panel = "sources";
break;
case DevToolsToggleAction::kShow:
case DevToolsToggleAction::kToggle:
case DevToolsToggleAction::kReveal:
case DevToolsToggleAction::kNoOp:
break;
}
window = Create(profile, inspected_web_contents, kFrontendDefault,
std::string(), true, settings, panel, agent->IsAttached(),
/* browser_connection */ false, toggled_by);
if (!window) {
return;
}
window->bindings_->AttachTo(agent.get());
do_open = true;
if (toggled_by != DevToolsOpenedByAction::kUnknown) {
LogDevToolsOpenedByAction(toggled_by);
LogDevToolsOpenedUKM(inspected_web_contents);
}
}
// Update toolbar to reflect DevTools changes.
window->UpdateBrowserToolbar();
// If window is docked and visible, we hide it on toggle. If window is
// undocked, we show (activate) it.
if (!window->is_docked_ || do_open) {
window->ScheduleShow(action);
} else {
DevToolsClosedByAction closed_by;
switch (toggled_by) {
case DevToolsOpenedByAction::kMainMenuOrMainShortcut:
closed_by = DevToolsClosedByAction::kMainMenuOrMainShortcut;
break;
case DevToolsOpenedByAction::kToggleShortcut:
closed_by = DevToolsClosedByAction::kToggleShortcut;
break;
case DevToolsOpenedByAction::kPinnedToolbarButton:
closed_by = DevToolsClosedByAction::kPinnedToolbarButton;
break;
default:
closed_by = DevToolsClosedByAction::kUnknown;
break;
}
window->Close(closed_by);
}
}
// static
void DevToolsWindow::InspectElement(
content::RenderFrameHost* inspected_frame_host,
int x,
int y) {
WebContents* web_contents =
WebContents::FromRenderFrameHost(inspected_frame_host);
scoped_refptr<DevToolsAgentHost> agent(
DevToolsAgentHost::GetOrCreateForTab(web_contents));
agent->InspectElement(inspected_frame_host, x, y);
bool should_measure_time = !FindDevToolsWindow(agent.get());
base::TimeTicks start_time = base::TimeTicks::Now();
// TODO(loislo): we should initiate DevTools window opening from within
// renderer. Otherwise, we still can hit a race condition here.
OpenDevToolsWindow(web_contents, DevToolsToggleAction::ShowElementsPanel(),
DevToolsOpenedByAction::kContextMenuInspect);
DevToolsWindow* window = FindDevToolsWindow(agent.get());
if (window && should_measure_time) {
window->inspect_element_start_time_ = start_time;
}
}
// static
void DevToolsWindow::LogDevToolsOpenedByAction(
DevToolsOpenedByAction opened_by) {
base::UmaHistogramEnumeration("DevTools.OpenedByAction", opened_by);
}
// static
void DevToolsWindow::LogDevToolsOpenedUKM(content::WebContents* web_contents) {
ukm::SourceId source_id =
web_contents->GetPrimaryMainFrame()->GetPageUkmSourceId();
ukm::builders::DevTools_Opened(source_id).SetHasOccurred(true).Record(
ukm::UkmRecorder::Get());
}
// static
void DevToolsWindow::MaybeCreateAndAddNavigationThrottle(
content::NavigationThrottleRegistry& registry) {
WebContents* web_contents = registry.GetNavigationHandle().GetWebContents();
if (!web_contents || !web_contents->HasLiveOriginalOpenerChain() ||
!web_contents->GetController()
.GetLastCommittedEntry()
->IsInitialEntry()) {
return;
}
WebContents* opener = registry.GetNavigationHandle()
.GetWebContents()
->GetFirstWebContentsInLiveOriginalOpenerChain();
DevToolsWindow* window = GetInstanceForInspectedWebContents(opener);
if (!window || !window->open_new_window_for_popups_ ||
GetInstanceForInspectedWebContents(web_contents)) {
return;
}
DevToolsWindow::OpenDevToolsWindow(
web_contents, DevToolsOpenedByAction::kAutomaticForNewTarget);
window = GetInstanceForInspectedWebContents(web_contents);
if (!window) {
return;
}
registry.AddThrottle(std::make_unique<Throttle>(registry, window));
}
void DevToolsWindow::ScheduleShow(const DevToolsToggleAction& action) {
if (life_stage_ == kLoadCompleted) {
Show(action);
return;
}
// Action will be done only after load completed.
action_on_load_ = action;
if (!can_dock_) {
// No harm to show always-undocked window right away.
is_docked_ = false;
Show(DevToolsToggleAction::Show());
}
}
void DevToolsWindow::Show(const DevToolsToggleAction& action) {
if (life_stage_ == kClosing) {
return;
}
if (action.type() == DevToolsToggleAction::kNoOp) {
return;
}
#if BUILDFLAG(IS_ANDROID)
if (TabModelList::models().empty()) {
return;
}
TabModel* tab_model = TabModelList::models()[0];
if (!tab_model) {
return;
}
if (!owned_main_web_contents_) {
return;
}
// TODO(crbug.com/406406862): Show it in a web app window instead of a tab.
tab_model->CreateTab(
nullptr,
OwnedMainWebContents::TakeWebContents(std::move(owned_main_web_contents_))
.release(),
true);
OverrideAndSyncDevToolsRendererPrefs();
#else
if (is_docked_) {
DCHECK(can_dock_);
content::WebContents* inspected_web_contents = GetInspectedWebContents();
DCHECK(inspected_web_contents);
Browser* inspected_browser =
chrome::FindBrowserWithTab(inspected_web_contents);
DCHECK(inspected_browser);
RegisterModalDialogManager(inspected_browser);
// Tell inspected browser to update splitter and switch to inspected panel.
BrowserWindow* inspected_window = inspected_browser->window();
main_web_contents_->SetDelegate(this);
TabStripModel* tab_strip_model = inspected_browser->tab_strip_model();
int inspected_tab_index =
tab_strip_model->GetIndexOfWebContents(inspected_web_contents);
DCHECK_NE(TabStripModel::kNoTab, inspected_tab_index);
tab_strip_model->ActivateTabAt(
inspected_tab_index,
TabStripUserGestureDetails(
TabStripUserGestureDetails::GestureType::kOther));
inspected_window->UpdateDevTools();
main_web_contents_->SetInitialFocus();
inspected_window->Show();
// On Aura, focusing once is not enough. Do it again.
// Note that focusing only here but not before isn't enough either. We just
// need to focus twice.
main_web_contents_->SetInitialFocus();
PrefsTabHelper::CreateForWebContents(main_web_contents_);
OverrideAndSyncDevToolsRendererPrefs();
MaybeShowSharedProcessInfobar();
DoAction(action);
return;
}
// Avoid consecutive window switching if the devtools window has been opened
// and the Inspect Element shortcut is pressed in the inspected tab.
bool should_show_window =
!browser_ || (action.type() != DevToolsToggleAction::kInspect);
if (!browser_) {
CreateDevToolsBrowser();
}
// Ignore action if browser does not exist and could not be created.
if (!browser_) {
return;
}
RegisterModalDialogManager(browser_);
MaybeShowSharedProcessInfobar();
if (should_show_window) {
browser_->window()->Show();
main_web_contents_->SetInitialFocus();
}
if (toolbox_web_contents_) {
UpdateBrowserWindow();
}
#endif
DoAction(action);
}
// static
bool DevToolsWindow::HandleBeforeUnload(WebContents* frontend_contents,
bool proceed,
bool* proceed_to_fire_unload) {
DevToolsWindow* window = AsDevToolsWindow(frontend_contents);
if (!window) {
return false;
}
if (!window->intercepted_page_beforeunload_) {
return false;
}
window->BeforeUnloadFired(frontend_contents, proceed, proceed_to_fire_unload);
return true;
}
// static
bool DevToolsWindow::InterceptPageBeforeUnload(WebContents* contents) {
DevToolsWindow* window =
DevToolsWindow::GetInstanceForInspectedWebContents(contents);
if (!window || window->intercepted_page_beforeunload_) {
return false;
}
// Not yet loaded frontend will not handle beforeunload.
if (window->life_stage_ != kLoadCompleted) {
return false;
}
window->intercepted_page_beforeunload_ = true;
// Handle case of devtools inspecting another devtools instance by passing
// the call up to the inspecting devtools instance.
// TODO(chrisha): Make devtools handle |auto_cancel=false| unload handler
// dispatches; otherwise, discarding queries can cause unload dialogs to
// pop-up for tabs with an attached devtools.
if (!DevToolsWindow::InterceptPageBeforeUnload(window->main_web_contents_)) {
window->main_web_contents_->DispatchBeforeUnload(false /* auto_cancel */);
}
return true;
}
// static
bool DevToolsWindow::NeedsToInterceptBeforeUnload(WebContents* contents) {
DevToolsWindow* window =
DevToolsWindow::GetInstanceForInspectedWebContents(contents);
return window && !window->intercepted_page_beforeunload_ &&
window->life_stage_ == kLoadCompleted;
}
// static
void DevToolsWindow::OnPageCloseCanceled(WebContents* contents) {
DevToolsWindow* window =
DevToolsWindow::GetInstanceForInspectedWebContents(contents);
if (!window) {
return;
}
window->intercepted_page_beforeunload_ = false;
// Propagate to devtools opened on devtools if any.
DevToolsWindow::OnPageCloseCanceled(window->main_web_contents_);
}
DevToolsWindow::DevToolsWindow(FrontendType frontend_type,
Profile* profile,
std::unique_ptr<WebContents> main_web_contents,
DevToolsUIBindings* bindings,
WebContents* inspected_web_contents,
bool can_dock,
DevToolsOpenedByAction opened_by)
: frontend_type_(frontend_type),
profile_(profile),
main_web_contents_(main_web_contents.get()),
main_web_contents_observer_(*main_web_contents_, *this),
toolbox_web_contents_(nullptr),
bindings_(bindings),
browser_(nullptr),
is_docked_(true),
owned_main_web_contents_(
std::make_unique<OwnedMainWebContents>(std::move(main_web_contents))),
can_dock_(can_dock),
close_on_detach_(true),
// This initialization allows external front-end to work without changes.
// We don't wait for docking call, but instead immediately show undocked.
life_stage_(can_dock ? kNotLoaded : kIsDockedSet),
action_on_load_(DevToolsToggleAction::NoOp()),
intercepted_page_beforeunload_(false),
ready_for_test_(false),
opened_by_(opened_by),
closed_by_(DevToolsClosedByAction::kUnknown) {
// Set up delegate, so we get fully-functional window immediately.
// It will not appear in UI though until |life_stage_ == kLoadCompleted|.
main_web_contents_->SetDelegate(this);
// Bindings take ownership over devtools as its delegate.
bindings_->SetDelegate(this);
// DevTools uses PageZoom::Zoom(), so main_web_contents_ requires a
// ZoomController.
zoom::ZoomController::CreateForWebContents(main_web_contents_);
zoom::ZoomController::FromWebContents(main_web_contents_)
->SetShowsNotificationBubble(false);
g_devtools_window_instances.Get().push_back(this);
// There is no inspected_web_contents in case of various workers.
if (inspected_web_contents) {
Observe(inspected_web_contents);
}
extensions::SetViewType(main_web_contents_,
extensions::mojom::ViewType::kDeveloperTools);
// Initialize docked page to be of the right size.
if (can_dock_ && inspected_web_contents) {
content::RenderWidgetHostView* inspected_view =
inspected_web_contents->GetRenderWidgetHostView();
if (inspected_view && main_web_contents_->GetRenderWidgetHostView()) {
gfx::Size size = inspected_view->GetViewBounds().size();
main_web_contents_->GetRenderWidgetHostView()->SetSize(size);
}
}
event_forwarder_ = std::make_unique<DevToolsEventForwarder>(this);
// Tag the DevTools main WebContents with its TaskManager specific UserData
// so that it shows up in the task manager.
task_manager::WebContentsTags::CreateForDevToolsContents(main_web_contents_);
std::vector<base::RepeatingCallback<void(DevToolsWindow*)>> copy(
g_creation_callbacks.Get());
for (const auto& callback : copy) {
callback.Run(this);
}
pref_change_registrar_.Init(profile_->GetPrefs());
pref_change_registrar_.Add(
language::prefs::kAcceptLanguages,
base::BindRepeating(&DevToolsWindow::OnLocaleChanged,
base::Unretained(this)));
int64_t now_timestamp =
base::Time::Now().ToDeltaSinceWindowsEpoch().InMilliseconds();
profile_->GetPrefs()->SetInt64(prefs::kDevToolsLastOpenTimestamp,
now_timestamp);
}
// static
bool DevToolsWindow::AllowDevToolsFor(Profile* profile,
content::WebContents* web_contents) {
// Don't allow DevTools UI in kiosk mode, because the DevTools UI would be
// broken there. See https://crbug.com/514551 for context.
if (base::CommandLine::ForCurrentProcess()->HasSwitch(switches::kKioskMode)) {
return false;
}
return IsInspectionAllowed(profile, web_contents);
}
// static
DevToolsWindow* DevToolsWindow::Create(
Profile* profile,
content::WebContents* inspected_web_contents,
FrontendType frontend_type,
const std::string& frontend_url,
bool can_dock,
const std::string& settings,
const std::string& panel,
bool has_other_clients,
bool browser_connection,
DevToolsOpenedByAction opened_by) {
if (!AllowDevToolsFor(profile, inspected_web_contents)) {
return nullptr;
}
#if BUILDFLAG(IS_ANDROID)
// Docking is not supported yet.
can_dock = false;
#else
if (inspected_web_contents) {
// Check for a place to dock.
Browser* browser = chrome::FindBrowserWithTab(inspected_web_contents);
if (!browser || !browser->is_type_normal()) {
can_dock = false;
}
}
#endif
// Create WebContents with devtools.
GURL url(GetDevToolsURL(profile, frontend_type, frontend_url, can_dock, panel,
has_other_clients, browser_connection));
std::unique_ptr<WebContents> main_web_contents =
WebContents::Create(WebContents::CreateParams(profile));
main_web_contents->GetController().LoadURL(
DecorateFrontendURL(url), content::Referrer(),
ui::PAGE_TRANSITION_AUTO_TOPLEVEL, std::string());
DevToolsUIBindings* bindings =
DevToolsUIBindings::ForWebContents(main_web_contents.get());
if (!bindings) {
return nullptr;
}
if (!settings.empty()) {
SetPreferencesFromJson(profile, settings);
}
return new DevToolsWindow(frontend_type, profile,
std::move(main_web_contents), bindings,
inspected_web_contents, can_dock, opened_by);
}
// static
GURL DevToolsWindow::GetDevToolsURL(Profile* profile,
FrontendType frontend_type,
const std::string& frontend_url,
bool can_dock,
const std::string& panel,
bool has_other_clients,
bool browser_connection) {
std::string url;
std::string remote_base =
"?remoteBase=" + DevToolsUI::GetRemoteBaseURL().spec();
const std::string valid_frontend =
frontend_url.empty() ? chrome::kChromeUIDevToolsURL : frontend_url;
// remoteFrontend is here for backwards compatibility only.
std::string remote_frontend =
valid_frontend + ((valid_frontend.find("?") == std::string::npos)
? "?remoteFrontend=true"
: "&remoteFrontend=true");
std::string tab_target = "&targetType=tab";
switch (frontend_type) {
case kFrontendDefault:
url = kDefaultFrontendURL + remote_base + tab_target;
if (can_dock) {
url += "&can_dock=true";
}
if (!panel.empty()) {
url += "&panel=" + panel;
}
break;
case kFrontendWorker:
url = kWorkerFrontendURL + remote_base;
break;
case kFrontendV8:
url = kJSFrontendURL + remote_base;
break;
case kFrontendNode:
url = kNodeFrontendURL + remote_base;
break;
case kFrontendRemote:
url = remote_frontend;
break;
case kFrontendRemoteWorker:
// isSharedWorker is here for backwards compatibility only.
url = remote_frontend + "&isSharedWorker=true";
break;
case kFrontendRemoteTab:
url = remote_frontend + tab_target;
break;
}
if (has_other_clients) {
url += "&hasOtherClients=true";
}
if (browser_connection) {
url += "&browserConnection=true";
}
if (base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kUnsafelyDisableDevToolsSelfXssWarnings)) {
url += "&disableSelfXssWarnings=true";
}
#if BUILDFLAG(CHROME_FOR_TESTING)
url += "&isChromeForTesting=true";
#endif
return DevToolsUIBindings::SanitizeFrontendURL(GURL(url));
}
// static
DevToolsWindow* DevToolsWindow::FindDevToolsWindow(
DevToolsAgentHost* agent_host) {
if (!agent_host || !g_devtools_window_instances.IsCreated()) {
return nullptr;
}
DevToolsWindows* instances = g_devtools_window_instances.Pointer();
for (auto it(instances->begin()); it != instances->end(); ++it) {
if ((*it)->bindings_->IsAttachedTo(agent_host)) {
return *it;
}
}
return nullptr;
}
// static
DevToolsWindow* DevToolsWindow::AsDevToolsWindow(
content::WebContents* web_contents) {
if (!web_contents || !g_devtools_window_instances.IsCreated()) {
return nullptr;
}
DevToolsWindows* instances = g_devtools_window_instances.Pointer();
for (auto it(instances->begin()); it != instances->end(); ++it) {
if ((*it)->main_web_contents_ == web_contents) {
return *it;
}
}
return nullptr;
}
WebContents* DevToolsWindow::OpenURLFromTab(
WebContents* source,
const content::OpenURLParams& params,
base::OnceCallback<void(content::NavigationHandle&)>
navigation_handle_callback) {
DCHECK(source == main_web_contents_);
if (!params.url.SchemeIs(content::kChromeDevToolsScheme)) {
// TODO(https://crbug.com/40275094): Plumb the `navigation_handle_callback`.
return OpenURLFromInspectedTab(params);
}
// TODO(https://crbug.com/40275094): Plumb the `navigation_handle_callback`.
main_web_contents_->GetController().Reload(content::ReloadType::NORMAL,
false);
return main_web_contents_;
}
WebContents* DevToolsWindow::OpenURLFromInspectedTab(
const content::OpenURLParams& params) {
WebContents* inspected_web_contents = GetInspectedWebContents();
if (!inspected_web_contents) {
return nullptr;
}
content::OpenURLParams modified = params;
modified.referrer = content::Referrer();
return inspected_web_contents->OpenURL(modified,
/*navigation_handle_callback=*/{});
}
void DevToolsWindow::ActivateContents(WebContents* contents) {
if (is_docked_) {
WebContents* inspected_tab = GetInspectedWebContents();
if (inspected_tab) {
inspected_tab->GetDelegate()->ActivateContents(inspected_tab);
}
} else {
#if BUILDFLAG(IS_ANDROID)
NOTIMPLEMENTED();
#else
if (browser_) {
browser_->window()->Activate();
}
#endif
}
}
WebContents* DevToolsWindow::AddNewContents(
WebContents* source,
std::unique_ptr<WebContents> new_contents,
const GURL& target_url,
WindowOpenDisposition disposition,
const blink::mojom::WindowFeatures& window_features,
bool user_gesture,
bool* was_blocked) {
if (new_contents.get() == toolbox_web_contents_) {
owned_toolbox_web_contents_ = std::move(new_contents);
owned_toolbox_web_contents_->SetOwnerLocationForDebug(FROM_HERE);
toolbox_web_contents_->SetDelegate(
new DevToolsToolboxDelegate(toolbox_web_contents_, web_contents()));
if (main_web_contents_->GetRenderWidgetHostView() &&
toolbox_web_contents_->GetRenderWidgetHostView()) {
gfx::Size size =
main_web_contents_->GetRenderWidgetHostView()->GetViewBounds().size();
toolbox_web_contents_->GetRenderWidgetHostView()->SetSize(size);
}
UpdateBrowserWindow();
return nullptr;
}
WebContents* inspected_web_contents = GetInspectedWebContents();
if (inspected_web_contents) {
inspected_web_contents->GetDelegate()->AddNewContents(
source, std::move(new_contents), target_url, disposition,
window_features, user_gesture, was_blocked);
}
return nullptr;
}
void DevToolsWindow::WebContentsCreated(WebContents* source_contents,
int opener_render_process_id,
int opener_render_frame_id,
const std::string& frame_name,
const GURL& target_url,
WebContents* new_contents) {
if (target_url.SchemeIs(content::kChromeDevToolsScheme) &&
target_url.path().rfind("device_mode_emulation_frame.html") !=
std::string::npos) {
CHECK(can_dock_);
// Ownership will be passed in DevToolsWindow::AddNewContents.
capture_handle_.RunAndReset();
if (owned_toolbox_web_contents_) {
owned_toolbox_web_contents_.reset();
}
toolbox_web_contents_ = new_contents;
// Tag the DevTools toolbox WebContents with its TaskManager specific
// UserData so that it shows up in the task manager.
task_manager::WebContentsTags::CreateForDevToolsContents(
toolbox_web_contents_);
// The toolbox holds a placeholder for the inspected WebContents. When the
// placeholder is resized, a frame is requested. The inspected WebContents
// is resized when the frame is rendered. Force rendering of the toolbox at
// all times, to make sure that a frame can be rendered even when the
// inspected WebContents fully covers the toolbox. https://crbug.com/828307
capture_handle_ = toolbox_web_contents_->IncrementCapturerCount(
gfx::Size(),
/*stay_hidden=*/false,
/*stay_awake=*/false, /*is_activity=*/true);
}
}
void DevToolsWindow::CloseContents(WebContents* source) {
// We shouldn't get here as long as we're owned by the browser.
CHECK(!browser_);
life_stage_ = kClosing;
UpdateBrowserWindow();
// In case of docked main_web_contents_, we own it so delete here.
// Embedding DevTools window will be deleted as a result of
// DevToolsUIBindings destruction.
CHECK(owned_main_web_contents_);
owned_main_web_contents_.reset();
}
void DevToolsWindow::ContentsZoomChange(bool zoom_in) {
DCHECK(is_docked_);
zoom::PageZoom::Zoom(main_web_contents_, zoom_in ? content::PAGE_ZOOM_IN
: content::PAGE_ZOOM_OUT);
}
void DevToolsWindow::BeforeUnloadFired(WebContents* tab,
bool proceed,
bool* proceed_to_fire_unload) {
if (!intercepted_page_beforeunload_) {
// Docked devtools window closed directly.
if (proceed) {
bindings_->Detach();
}
*proceed_to_fire_unload = proceed;
} else {
// Inspected page is attempting to close.
WebContents* inspected_web_contents = GetInspectedWebContents();
if (proceed) {
inspected_web_contents->DispatchBeforeUnload(false /* auto_cancel */);
} else {
bool should_proceed;
inspected_web_contents->GetDelegate()->BeforeUnloadFired(
inspected_web_contents, false, &should_proceed);
DCHECK(!should_proceed);
}
*proceed_to_fire_unload = false;
}
}
content::JavaScriptDialogManager* DevToolsWindow::GetJavaScriptDialogManager(
WebContents* source) {
return javascript_dialogs::AppModalDialogManager::GetInstance();
}
void DevToolsWindow::RunFileChooser(
content::RenderFrameHost* render_frame_host,
scoped_refptr<content::FileSelectListener> listener,
const blink::mojom::FileChooserParams& params) {
FileSelectHelper::RunFileChooser(render_frame_host, std::move(listener),
params);
}
bool DevToolsWindow::PreHandleGestureEvent(
WebContents* source,
const blink::WebGestureEvent& event) {
// Disable pinch zooming.
return blink::WebInputEvent::IsPinchGestureEventType(event.GetType());
}
void DevToolsWindow::ActivateWindow() {
if (life_stage_ != kLoadCompleted) {
return;
}
#if BUILDFLAG(IS_ANDROID)
NOTIMPLEMENTED();
#else
if (is_docked_ && GetInspectedBrowserWindow()) {
main_web_contents_->Focus();
} else if (!is_docked_ && browser_ && !browser_->window()->IsActive()) {
browser_->window()->Activate();
}
#endif
}
void DevToolsWindow::CloseWindow() {
Close(DevToolsClosedByAction::kCloseButton);
}
void DevToolsWindow::Close(DevToolsClosedByAction closed_by) {
DCHECK(is_docked_);
life_stage_ = kClosing;
main_web_contents_->DispatchBeforeUnload(false /* auto_cancel */);
closed_by_ = closed_by;
if (sharing_infobar_) {
sharing_infobar_->RemoveSelf();
checked_sharing_process_id_ = content::ChildProcessHost::kInvalidUniqueID;
}
}
void DevToolsWindow::Inspect(scoped_refptr<content::DevToolsAgentHost> host) {
DevToolsWindow::OpenDevToolsWindow(host, profile_,
DevToolsOpenedByAction::kUnknown);
}
void DevToolsWindow::SetInspectedPageBounds(const gfx::Rect& rect) {
DevToolsContentsResizingStrategy strategy(rect);
if (contents_resizing_strategy_.Equals(strategy)) {
return;
}
contents_resizing_strategy_.CopyFrom(strategy);
UpdateBrowserWindow();
}
void DevToolsWindow::InspectElementCompleted() {
if (!inspect_element_start_time_.is_null()) {
UMA_HISTOGRAM_TIMES("DevTools.InspectElement",
base::TimeTicks::Now() - inspect_element_start_time_);
inspect_element_start_time_ = base::TimeTicks();
}
}
void DevToolsWindow::SetIsDocked(bool dock_requested) {
if (life_stage_ == kClosing) {
return;
}
DCHECK(can_dock_ || !dock_requested);
if (!can_dock_) {
dock_requested = false;
}
bool was_docked = is_docked_;
is_docked_ = dock_requested;
if (life_stage_ != kLoadCompleted) {
// This is a first time call we waited for to initialize.
life_stage_ = life_stage_ == kOnLoadFired ? kLoadCompleted : kIsDockedSet;
if (life_stage_ == kLoadCompleted) {
LoadCompleted();
}
return;
}
if (dock_requested == was_docked) {
return;
}
#if BUILDFLAG(IS_ANDROID)
LOG_IF(WARNING, dock_requested) << "Docking is not supported yet.";
#else
if (dock_requested && !was_docked && browser_) {
// Detach window from the external devtools browser. It will lead to
// the browser object's close and delete. Remove observer first.
TabStripModel* tab_strip_model = browser_->tab_strip_model();
DCHECK(!owned_main_web_contents_);
// Removing the only WebContents from the tab strip of browser_ will
// eventually lead to the destruction of browser_ as well, which is why it's
// okay to just null the raw pointer here.
browser_ = nullptr;
// TODO(crbug.com/40773744): WebContents should be removed with a reason
// other than kInsertedIntoOtherTabStrip, it's not getting reinserted into
// another tab strip.
std::unique_ptr<WebContents> web_contents =
tab_strip_model->DetachWebContentsAtForInsertion(
tab_strip_model->GetIndexOfWebContents(main_web_contents_));
owned_main_web_contents_ =
std::make_unique<OwnedMainWebContents>(std::move(web_contents));
} else if (!dock_requested && was_docked) {
UpdateBrowserWindow();
}
#endif
Show(DevToolsToggleAction::Show());
}
int DevToolsWindow::GetDockStateForLogging() {
const int kUndocked = 0;
const int kLeft = 1;
const int kBottom = 2;
const int kRight = 3;
if (!is_docked_) {
return kUndocked;
}
gfx::Rect inspected_page_bounds = contents_resizing_strategy_.bounds();
if (inspected_page_bounds.x() > 0) {
return kLeft;
}
gfx::Rect devtools_bounds =
main_web_contents_->GetRenderWidgetHostView()->GetViewBounds();
return inspected_page_bounds.width() == devtools_bounds.width() ? kBottom
: kRight;
}
int DevToolsWindow::GetOpenedByForLogging() {
return static_cast<int>(opened_by_);
}
int DevToolsWindow::GetClosedByForLogging() {
return static_cast<int>(closed_by_);
}
void DevToolsWindow::OpenInNewTab(const GURL& url) {
GURL fixed_url = url;
WebContents* inspected_web_contents = GetInspectedWebContents();
int child_id = content::ChildProcessHost::kInvalidUniqueID;
if (inspected_web_contents) {
content::RenderViewHost* render_view_host =
inspected_web_contents->GetPrimaryMainFrame()->GetRenderViewHost();
if (render_view_host) {
child_id = render_view_host->GetProcess()->GetDeprecatedID();
}
}
// Use about:blank instead of an empty GURL. The browser treats an empty GURL
// as navigating to the home page, which may be privileged (chrome://newtab/).
if (!content::ChildProcessSecurityPolicy::GetInstance()->CanRequestURL(
child_id, fixed_url)) {
fixed_url = GURL(url::kAboutBlankURL);
}
content::OpenURLParams params(fixed_url, content::Referrer(),
WindowOpenDisposition::NEW_FOREGROUND_TAB,
ui::PAGE_TRANSITION_LINK, false);
if (!inspected_web_contents ||
!inspected_web_contents->OpenURL(params,
/*navigation_handle_callback=*/{})) {
#if BUILDFLAG(IS_ANDROID)
NOTIMPLEMENTED();
#else
chrome::ScopedTabbedBrowserDisplayer displayer(profile_);
chrome::AddSelectedTabWithURL(displayer.browser(), fixed_url,
ui::PAGE_TRANSITION_LINK);
#endif
}
}
void DevToolsWindow::OpenInNewTab(const std::string& url) {
OpenInNewTab(GURL(url));
}
void DevToolsWindow::OpenSearchResultsInNewTab(const std::string& query) {
TemplateURLService* url_service =
TemplateURLServiceFactory::GetForProfile(profile_);
DCHECK(url_service);
GURL url =
GetDefaultSearchURLForSearchTerms(url_service, base::UTF8ToUTF16(query));
OpenInNewTab(url);
}
void DevToolsWindow::SetWhitelistedShortcuts(const std::string& message) {
event_forwarder_->SetWhitelistedShortcuts(message);
}
void DevToolsWindow::SetEyeDropperActive(bool active) {
WebContents* web_contents = GetInspectedWebContents();
if (!web_contents) {
return;
}
if (active) {
eye_dropper_ = std::make_unique<DevToolsEyeDropper>(
web_contents,
base::BindRepeating(&DevToolsWindow::ColorPickedInEyeDropper,
base::Unretained(this)));
} else {
eye_dropper_.reset();
}
}
void DevToolsWindow::ColorPickedInEyeDropper(int r, int g, int b, int a) {
base::Value::Dict color;
color.Set("r", r);
color.Set("g", g);
color.Set("b", b);
color.Set("a", a);
bindings_->CallClientMethod("DevToolsAPI", "eyeDropperPickedColor",
base::Value(std::move(color)));
}
void DevToolsWindow::InspectedContentsClosing() {
if (!close_on_detach_) {
return;
}
closed_by_ = DevToolsClosedByAction::kTargetDetach;
intercepted_page_beforeunload_ = false;
life_stage_ = kClosing;
main_web_contents_->ClosePage();
}
infobars::ContentInfoBarManager* DevToolsWindow::GetInfoBarManager() {
return is_docked_ ? infobars::ContentInfoBarManager::FromWebContents(
GetInspectedWebContents())
: infobars::ContentInfoBarManager::FromWebContents(
main_web_contents_);
}
void DevToolsWindow::RenderProcessGone(bool crashed) {
// Docked DevToolsWindow owns its main_web_contents_ and must delete it.
// Undocked main_web_contents_ are owned and handled by browser.
// see crbug.com/369932
if (is_docked_) {
CloseContents(main_web_contents_);
} else {
#if !BUILDFLAG(IS_ANDROID)
if (browser_ && crashed) {
browser_->window()->Close();
}
#endif
}
}
void DevToolsWindow::ShowCertificateViewer(const std::string& cert_chain) {
std::optional<base::Value> value = base::JSONReader::Read(cert_chain);
CHECK(value && value->is_list());
std::vector<std::string> decoded;
for (const auto& item : value->GetList()) {
CHECK(item.is_string());
std::string temp;
CHECK(base::Base64Decode(item.GetString(), &temp));
decoded.push_back(std::move(temp));
}
std::vector<std::string_view> cert_string_piece;
for (const auto& str : decoded) {
cert_string_piece.push_back(str);
}
scoped_refptr<net::X509Certificate> cert =
net::X509Certificate::CreateFromDERCertChain(cert_string_piece);
CHECK(cert);
WebContents* inspected_contents =
is_docked_ ? GetInspectedWebContents() : main_web_contents_.get();
if (!inspected_contents) {
return;
}
#if BUILDFLAG(IS_ANDROID)
NOTIMPLEMENTED();
#else
Browser* browser = chrome::FindBrowserWithTab(inspected_contents);
if (!browser) {
return;
}
gfx::NativeWindow parent = browser->window()->GetNativeWindow();
::ShowCertificateViewer(inspected_contents, parent, cert.get());
#endif
}
void DevToolsWindow::OnLoadCompleted() {
// First seed inspected tab id for extension APIs.
WebContents* inspected_web_contents = GetInspectedWebContents();
if (inspected_web_contents) {
sessions::SessionTabHelper* session_tab_helper =
sessions::SessionTabHelper::FromWebContents(inspected_web_contents);
if (session_tab_helper) {
bindings_->CallClientMethod(
"DevToolsAPI", "setInspectedTabId",
base::Value(session_tab_helper->session_id().id()));
}
}
if (life_stage_ == kClosing) {
return;
}
// We could be in kLoadCompleted state already if frontend reloads itself.
if (life_stage_ != kLoadCompleted) {
// Load is completed when both kIsDockedSet and kOnLoadFired happened.
// Here we set kOnLoadFired.
life_stage_ = life_stage_ == kIsDockedSet ? kLoadCompleted : kOnLoadFired;
}
if (life_stage_ == kLoadCompleted) {
LoadCompleted();
}
}
void DevToolsWindow::ReadyForTest() {
ready_for_test_ = true;
if (!ready_for_test_callback_.is_null()) {
std::move(ready_for_test_callback_).Run();
}
}
void DevToolsWindow::ConnectionReady() {
if (throttle_) {
throttle_->ResumeThrottle();
}
}
void DevToolsWindow::SetOpenNewWindowForPopups(bool value) {
open_new_window_for_popups_ = value;
}
void DevToolsWindow::CreateDevToolsBrowser() {
PrefService* prefs = profile_->GetPrefs();
bool resetPrefs = false;
if (!prefs->GetDict(prefs::kAppWindowPlacement).Find(kDevToolsApp)) {
// Ensure there is always a default size so that
// BrowserFrame::InitBrowserFrame can retrieve it later.
resetPrefs = true;
} else {
// Reset to default if stored window size is too small.
const base::Value::Dict& devtoolsPlacement =
prefs->GetDict(prefs::kAppWindowPlacement)
.Find(kDevToolsApp)
->GetDict();
const int right = devtoolsPlacement.FindInt("right").value();
const int left = devtoolsPlacement.FindInt("left").value();
const int top = devtoolsPlacement.FindInt("top").value();
const int bottom = devtoolsPlacement.FindInt("bottom").value();
const int THRESHOLD = 400; // go/smoldevtools
resetPrefs = right - left < THRESHOLD || bottom - top < THRESHOLD;
}
if (resetPrefs) {
ScopedDictPrefUpdate update(prefs, prefs::kAppWindowPlacement);
base::Value::Dict& wp_prefs = update.Get();
base::Value::Dict dev_tools_defaults;
dev_tools_defaults.Set("left", 100);
dev_tools_defaults.Set("top", 100);
dev_tools_defaults.Set("right", 740);
dev_tools_defaults.Set("bottom", 740);
dev_tools_defaults.Set("maximized", false);
dev_tools_defaults.Set("always_on_top", false);
wp_prefs.Set(kDevToolsApp, std::move(dev_tools_defaults));
}
#if BUILDFLAG(IS_ANDROID)
NOTIMPLEMENTED();
#else
if (Browser::GetCreationStatusForProfile(profile_) !=
Browser::CreationStatus::kOk) {
return;
}
browser_ =
Browser::Create(Browser::CreateParams::CreateForDevTools(profile_));
browser_->tab_strip_model()->AddWebContents(
OwnedMainWebContents::TakeWebContents(
std::move(owned_main_web_contents_)),
-1, ui::PAGE_TRANSITION_AUTO_TOPLEVEL, AddTabTypes::ADD_ACTIVE);
#endif
OverrideAndSyncDevToolsRendererPrefs();
}
void DevToolsWindow::DoAction(const DevToolsToggleAction& action) {
switch (action.type()) {
case DevToolsToggleAction::kInspect:
bindings_->CallClientMethod("DevToolsAPI", "enterInspectElementMode");
break;
case DevToolsToggleAction::kShowElementsPanel:
case DevToolsToggleAction::kPauseInDebugger:
case DevToolsToggleAction::kShowConsolePanel:
case DevToolsToggleAction::kShow:
case DevToolsToggleAction::kToggle:
// Do nothing.
break;
case DevToolsToggleAction::kReveal: {
const DevToolsToggleAction::RevealParams* params = action.params();
CHECK(params);
bindings_->CallClientMethod(
"DevToolsAPI", "revealSourceLine", base::Value(params->url),
base::Value(static_cast<int>(params->line_number)),
base::Value(static_cast<int>(params->column_number)));
break;
}
default:
NOTREACHED();
}
}
WebContents* DevToolsWindow::GetInspectedWebContents() {
return web_contents();
}
void DevToolsWindow::LoadCompleted() {
Show(action_on_load_);
action_on_load_ = DevToolsToggleAction::NoOp();
if (!load_completed_callback_.is_null()) {
std::move(load_completed_callback_).Run();
}
}
void DevToolsWindow::SetLoadCompletedCallback(base::OnceClosure closure) {
if (life_stage_ == kLoadCompleted || life_stage_ == kClosing) {
if (!closure.is_null()) {
std::move(closure).Run();
}
return;
}
load_completed_callback_ = std::move(closure);
}
bool DevToolsWindow::ForwardKeyboardEvent(
const input::NativeWebKeyboardEvent& event) {
return event_forwarder_->ForwardEvent(event);
}
bool DevToolsWindow::ReloadInspectedWebContents(bool bypass_cache) {
// Only route reload via front-end if the agent is attached.
WebContents* wc = GetInspectedWebContents();
if (!wc || wc->GetCrashedStatus() != base::TERMINATION_STATUS_STILL_RUNNING) {
return false;
}
bindings_->CallClientMethod("DevToolsAPI", "reloadInspectedPage",
base::Value(bypass_cache));
return true;
}
void DevToolsWindow::OnLocaleChanged() {
OverrideAndSyncDevToolsRendererPrefs();
}
void DevToolsWindow::OverrideAndSyncDevToolsRendererPrefs() {
main_web_contents_->GetMutableRendererPrefs()->can_accept_load_drops = false;
main_web_contents_->GetMutableRendererPrefs()->accept_languages =
g_browser_process->GetApplicationLocale();
main_web_contents_->SyncRendererPrefs();
}
void DevToolsWindow::MaybeShowSharedProcessInfobar() {
WebContents* inspected_web_contents = GetInspectedWebContents();
if (!inspected_web_contents) {
return;
}
// Only show the infobar only if the RenderProcessHost id changes.
int rph_id = inspected_web_contents->GetPrimaryMainFrame()
->GetProcess()
->GetDeprecatedID();
if (checked_sharing_process_id_ == rph_id) {
return;
}
checked_sharing_process_id_ = rph_id;
if (!base::FeatureList::IsEnabled(
::features::kDevToolsSharedProcessInfobar) ||
!base::FeatureList::IsEnabled(
::features::kProcessPerSiteUpToMainFrameThreshold)) {
return;
}
content::SiteInstance* site_instance =
inspected_web_contents->GetPrimaryMainFrame()->GetSiteInstance();
const GURL& site_url = site_instance->GetSiteURL();
if (site_url.SchemeIs(extensions::kExtensionScheme) ||
site_url.SchemeIs(content::kChromeDevToolsScheme) ||
site_url.SchemeIs(content::kChromeUIScheme)) {
return;
}
size_t primary_main_frame_count = 0;
inspected_web_contents->GetPrimaryMainFrame()
->GetProcess()
->ForEachRenderFrameHost(
[&primary_main_frame_count](
content::RenderFrameHost* render_frame_host) {
if (render_frame_host->IsInPrimaryMainFrame()) {
++primary_main_frame_count;
}
});
// Dismiss old infobar.
if (sharing_infobar_) {
sharing_infobar_->RemoveSelf();
}
if (primary_main_frame_count > 1) {
#if !BUILDFLAG(IS_ANDROID)
auto* info_bar_manager = GetInfoBarManager();
sharing_infobar_ = info_bar_manager->AddInfoBar(
CreateConfirmInfoBar(std::make_unique<ProcessSharingInfobarDelegate>(
inspected_web_contents)));
info_bar_manager->AddObserver(this);
#else
NOTIMPLEMENTED();
#endif
}
}
#if !BUILDFLAG(IS_ANDROID)
void DevToolsWindow::OnBrowserRemoved(Browser* browser) {
// If the modal dialog manager has this browser as its delegate, clear the
// reference.
web_modal::WebContentsModalDialogManager* dialog_manager =
web_modal::WebContentsModalDialogManager::FromWebContents(
main_web_contents_);
if (dialog_manager && dialog_manager->delegate() == browser) {
dialog_manager->SetDelegate(nullptr);
}
}
#endif
void DevToolsWindow::OnInfoBarRemoved(infobars::InfoBar* infobar,
bool animate) {
if (sharing_infobar_ == infobar) {
infobar->owner()->RemoveObserver(this);
sharing_infobar_ = nullptr;
}
}
void DevToolsWindow::PrimaryPageChanged(content::Page& page) {
MaybeShowSharedProcessInfobar();
}
void DevToolsWindow::MainWebContentRenderFrameHostChanged(
content::RenderFrameHost* old_frame,
content::RenderFrameHost* new_frame) {
DevToolsUIBindings* new_bindings =
DevToolsUIBindings::ForWebContents(main_web_contents_);
if (!new_bindings || new_bindings == bindings_) {
return;
}
bindings_->TransferDelegate(*new_bindings);
bindings_ = new_bindings;
}
|