Changeset 218897 in webkit
- Timestamp:
- Jun 28, 2017, 3:53:18 PM (8 years ago)
- Location:
- trunk/Source
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r218883 r218897 1 2017-06-27 Joseph Pecoraro <pecoraro@apple.com> 2 3 Web Inspector: Remove unused Inspector domain events 4 https://bugs.webkit.org/show_bug.cgi?id=173905 5 6 Reviewed by Matt Baker. 7 8 * inspector/protocol/Inspector.json: 9 1 10 2017-06-28 JF Bastien <jfbastien@apple.com> 2 11 -
trunk/Source/JavaScriptCore/inspector/protocol/Inspector.json
r175478 r218897 31 31 }, 32 32 { 33 "name": "detached",34 "description": "Fired when remote debugging connection is about to be terminated. Contains detach reason.",35 "parameters": [36 { "name": "reason", "type": "string", "description": "The reason why connection has been terminated." }37 ]38 },39 {40 33 "name": "activateExtraDomains", 41 34 "description": "Fired when the backend has alternate domains that need to be activated.", … … 43 36 { "name": "domains", "type": "array", "items": { "type": "string" }, "description": "Domain names that need activation" } 44 37 ] 45 },46 {47 "name": "targetCrashed",48 "description": "Fired when debugging target has crashed"49 38 } 50 39 ] -
trunk/Source/WebInspectorUI/ChangeLog
r218839 r218897 1 2017-06-27 Joseph Pecoraro <pecoraro@apple.com> 2 3 Web Inspector: Remove unused Inspector domain events 4 https://bugs.webkit.org/show_bug.cgi?id=173905 5 6 Reviewed by Matt Baker. 7 8 * UserInterface/Protocol/InspectorObserver.js: 9 (WebInspector.InspectorObserver.prototype.detached): Deleted. 10 11 * UserInterface/Protocol/Legacy/10.0/InspectorBackendCommands.js: 12 * UserInterface/Protocol/Legacy/10.3/InspectorBackendCommands.js: 13 * UserInterface/Protocol/Legacy/7.0/InspectorBackendCommands.js: 14 * UserInterface/Protocol/Legacy/8.0/InspectorBackendCommands.js: 15 * UserInterface/Protocol/Legacy/9.0/InspectorBackendCommands.js: 16 * UserInterface/Protocol/Legacy/9.3/InspectorBackendCommands.js: 17 * Versions/Inspector-iOS-10.0.json: 18 * Versions/Inspector-iOS-10.3.json: 19 * Versions/Inspector-iOS-7.0.json: 20 * Versions/Inspector-iOS-8.0.json: 21 * Versions/Inspector-iOS-9.0.json: 22 * Versions/Inspector-iOS-9.3.json: 23 Remove from legacy backends as well since they did not send it. 24 1 25 2017-06-27 Matt Baker <mattbaker@apple.com> 2 26 -
trunk/Source/WebInspectorUI/UserInterface/Protocol/InspectorObserver.js
r208009 r218897 54 54 } 55 55 56 detached(reason)57 {58 // FIXME: Not implemented.59 }60 61 56 activateExtraDomains(domains) 62 57 { -
trunk/Source/WebInspectorUI/UserInterface/Protocol/Legacy/10.0/InspectorBackendCommands.js
r214494 r218897 235 235 InspectorBackend.registerEvent("Inspector.evaluateForTestInFrontend", ["script"]); 236 236 InspectorBackend.registerEvent("Inspector.inspect", ["object", "hints"]); 237 InspectorBackend.registerEvent("Inspector.detached", ["reason"]);238 237 InspectorBackend.registerEvent("Inspector.activateExtraDomains", ["domains"]); 239 InspectorBackend.registerEvent("Inspector.targetCrashed", []);240 238 InspectorBackend.registerCommand("Inspector.enable", [], []); 241 239 InspectorBackend.registerCommand("Inspector.disable", [], []); -
trunk/Source/WebInspectorUI/UserInterface/Protocol/Legacy/10.3/InspectorBackendCommands.js
r214494 r218897 242 242 InspectorBackend.registerEvent("Inspector.evaluateForTestInFrontend", ["script"]); 243 243 InspectorBackend.registerEvent("Inspector.inspect", ["object", "hints"]); 244 InspectorBackend.registerEvent("Inspector.detached", ["reason"]);245 244 InspectorBackend.registerEvent("Inspector.activateExtraDomains", ["domains"]); 246 InspectorBackend.registerEvent("Inspector.targetCrashed", []);247 245 InspectorBackend.registerCommand("Inspector.enable", [], []); 248 246 InspectorBackend.registerCommand("Inspector.disable", [], []); -
trunk/Source/WebInspectorUI/UserInterface/Protocol/Legacy/7.0/InspectorBackendCommands.js
r214494 r218897 33 33 InspectorBackend.registerEvent("Inspector.evaluateForTestInFrontend", ["testCallId", "script"]); 34 34 InspectorBackend.registerEvent("Inspector.inspect", ["object", "hints"]); 35 InspectorBackend.registerEvent("Inspector.detached", ["reason"]);36 InspectorBackend.registerEvent("Inspector.targetCrashed", []);37 35 InspectorBackend.registerCommand("Inspector.enable", [], []); 38 36 InspectorBackend.registerCommand("Inspector.disable", [], []); -
trunk/Source/WebInspectorUI/UserInterface/Protocol/Legacy/8.0/InspectorBackendCommands.js
r214494 r218897 81 81 InspectorBackend.registerEvent("Inspector.evaluateForTestInFrontend", ["script"]); 82 82 InspectorBackend.registerEvent("Inspector.inspect", ["object", "hints"]); 83 InspectorBackend.registerEvent("Inspector.detached", ["reason"]);84 InspectorBackend.registerEvent("Inspector.targetCrashed", []);85 83 InspectorBackend.registerCommand("Inspector.enable", [], []); 86 84 InspectorBackend.registerCommand("Inspector.disable", [], []); -
trunk/Source/WebInspectorUI/UserInterface/Protocol/Legacy/9.0/InspectorBackendCommands.js
r214494 r218897 211 211 InspectorBackend.registerEvent("Inspector.detached", ["reason"]); 212 212 InspectorBackend.registerEvent("Inspector.activateExtraDomains", ["domains"]); 213 InspectorBackend.registerEvent("Inspector.targetCrashed", []);214 213 InspectorBackend.registerCommand("Inspector.enable", [], []); 215 214 InspectorBackend.registerCommand("Inspector.disable", [], []); -
trunk/Source/WebInspectorUI/UserInterface/Protocol/Legacy/9.3/InspectorBackendCommands.js
r214494 r218897 216 216 InspectorBackend.registerEvent("Inspector.evaluateForTestInFrontend", ["script"]); 217 217 InspectorBackend.registerEvent("Inspector.inspect", ["object", "hints"]); 218 InspectorBackend.registerEvent("Inspector.detached", ["reason"]);219 218 InspectorBackend.registerEvent("Inspector.activateExtraDomains", ["domains"]); 220 InspectorBackend.registerEvent("Inspector.targetCrashed", []);221 219 InspectorBackend.registerCommand("Inspector.enable", [], []); 222 220 InspectorBackend.registerCommand("Inspector.disable", [], []); -
trunk/Source/WebInspectorUI/Versions/Inspector-iOS-10.0.json
r214494 r218897 2006 2006 }, 2007 2007 { 2008 "name": "detached",2009 "description": "Fired when remote debugging connection is about to be terminated. Contains detach reason.",2010 "parameters": [2011 { "name": "reason", "type": "string", "description": "The reason why connection has been terminated." }2012 ]2013 },2014 {2015 2008 "name": "activateExtraDomains", 2016 2009 "description": "Fired when the backend has alternate domains that need to be activated.", … … 2018 2011 { "name": "domains", "type": "array", "items": { "type": "string" }, "description": "Domain names that need activation" } 2019 2012 ] 2020 },2021 {2022 "name": "targetCrashed",2023 "description": "Fired when debugging target has crashed"2024 2013 } 2025 2014 ] -
trunk/Source/WebInspectorUI/Versions/Inspector-iOS-10.3.json
r214494 r218897 2049 2049 }, 2050 2050 { 2051 "name": "detached",2052 "description": "Fired when remote debugging connection is about to be terminated. Contains detach reason.",2053 "parameters": [2054 { "name": "reason", "type": "string", "description": "The reason why connection has been terminated." }2055 ]2056 },2057 {2058 2051 "name": "activateExtraDomains", 2059 2052 "description": "Fired when the backend has alternate domains that need to be activated.", … … 2061 2054 { "name": "domains", "type": "array", "items": { "type": "string" }, "description": "Domain names that need activation" } 2062 2055 ] 2063 },2064 {2065 "name": "targetCrashed",2066 "description": "Fired when debugging target has crashed"2067 2056 } 2068 2057 ] -
trunk/Source/WebInspectorUI/Versions/Inspector-iOS-7.0.json
r214494 r218897 27 27 { "name": "hints", "type": "object" } 28 28 ] 29 },30 {31 "name": "detached",32 "description": "Fired when remote debugging connection is about to be terminated. Contains detach reason.",33 "parameters": [34 { "name": "reason", "type": "string", "description": "The reason why connection has been terminated." }35 ]36 },37 {38 "name": "targetCrashed",39 "description": "Fired when debugging target has crashed"40 29 } 41 30 ] -
trunk/Source/WebInspectorUI/Versions/Inspector-iOS-8.0.json
r214494 r218897 453 453 { "name": "hints", "type": "object" } 454 454 ] 455 },456 {457 "name": "detached",458 "description": "Fired when remote debugging connection is about to be terminated. Contains detach reason.",459 "parameters": [460 { "name": "reason", "type": "string", "description": "The reason why connection has been terminated." }461 ]462 },463 {464 "name": "targetCrashed",465 "description": "Fired when debugging target has crashed"466 455 } 467 456 ] -
trunk/Source/WebInspectorUI/Versions/Inspector-iOS-9.0.json
r214494 r218897 1838 1838 { "name": "domains", "type": "array", "items": { "type": "string" }, "description": "Domain names that need activation" } 1839 1839 ] 1840 },1841 {1842 "name": "targetCrashed",1843 "description": "Fired when debugging target has crashed"1844 1840 } 1845 1841 ] -
trunk/Source/WebInspectorUI/Versions/Inspector-iOS-9.3.json
r214494 r218897 1885 1885 }, 1886 1886 { 1887 "name": "detached",1888 "description": "Fired when remote debugging connection is about to be terminated. Contains detach reason.",1889 "parameters": [1890 { "name": "reason", "type": "string", "description": "The reason why connection has been terminated." }1891 ]1892 },1893 {1894 1887 "name": "activateExtraDomains", 1895 1888 "description": "Fired when the backend has alternate domains that need to be activated.", … … 1897 1890 { "name": "domains", "type": "array", "items": { "type": "string" }, "description": "Domain names that need activation" } 1898 1891 ] 1899 },1900 {1901 "name": "targetCrashed",1902 "description": "Fired when debugging target has crashed"1903 1892 } 1904 1893 ]
Note:
See TracChangeset
for help on using the changeset viewer.