[Webkit-unassigned] [Bug 137150] REGRESSION(r173929): Web inspector doesn't work after r173929 when INSPECTOR_SERVER is enabled
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Fri Sep 26 10:39:24 PDT 2014
https://bugs.webkit.org/show_bug.cgi?id=137150
Timothy Hatcher <timothy at apple.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #238725|review? |review+, commit-queue-
Flag| |
--- Comment #2 from Timothy Hatcher <timothy at apple.com> 2014-09-26 10:39:23 PST ---
(From update of attachment 238725)
View in context: https://bugs.webkit.org/attachment.cgi?id=238725&action=review
> Source/WebKit2/WebProcess/WebPage/WebInspector.cpp:67
> + , m_remoteFrontendConnected(false)
This should get a ENABLE(INSPECTOR_SERVER) guard.
> Source/WebKit2/WebProcess/WebPage/WebInspector.cpp:224
> #if !ENABLE(INSPECTOR_SERVER)
> m_frontendConnection->send(Messages::WebInspectorUI::SendMessageToFrontend(message), 0);
> #else
> - WebProcess::shared().parentProcessConnection()->send(Messages::WebInspectorProxy::SendMessageToRemoteFrontend(message), m_page->pageID());
> + if (m_remoteFrontendConnected)
> + WebProcess::shared().parentProcessConnection()->send(Messages::WebInspectorProxy::SendMessageToRemoteFrontend(message), m_page->pageID());
> + else
> + m_frontendConnection->send(Messages::WebInspectorUI::SendMessageToFrontend(message), 0);
> #endif
This can be simplified as:
#if ENABLE(INSPECTOR_SERVER)
if (m_remoteFrontendConnected)
WebProcess::shared().parentProcessConnection()->send(Messages::WebInspectorProxy::SendMessageToRemoteFrontend(message), m_page->pageID());
else
#endif
m_frontendConnection->send(Messages::WebInspectorUI::SendMessageToFrontend(message), 0);
> Source/WebKit2/WebProcess/WebPage/WebInspector.h:107
> + bool m_remoteFrontendConnected;
This should also get a ENABLE(INSPECTOR_SERVER) guard.
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the webkit-unassigned
mailing list