Changeset 243231 in webkit
- Timestamp:
- Mar 20, 2019, 1:18:49 PM (7 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UIProcess/WebPageProxy.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r243230 r243231 1 2019-03-20 Carlos Garcia Campos <cgarcia@igalia.com> 2 3 [GTK] REGRESSION(r243094): crash when launching minibrowser 4 https://bugs.webkit.org/show_bug.cgi?id=195951 5 6 Reviewed by Joseph Pecoraro. 7 8 Always return the inspector from WebPageProxy::inspector() when the page hasn't been closed. The inspector is 9 created in WebPageProxy constructor and it's safe to use even before a process has been launched, because 10 m_inspectedPage is null-checked everywhere. 11 12 * UIProcess/WebPageProxy.cpp: 13 (WebKit::WebPageProxy::inspector const): 14 1 15 2019-03-20 Keith Rollin <krollin@apple.com> 2 16 -
trunk/Source/WebKit/UIProcess/WebPageProxy.cpp
r243210 r243231 5529 5529 WebInspectorProxy* WebPageProxy::inspector() const 5530 5530 { 5531 if (isClosed() || !hasRunningProcess())5531 if (isClosed()) 5532 5532 return nullptr; 5533 5533 return m_inspector.get();
Note:
See TracChangeset
for help on using the changeset viewer.