Title: [266105] trunk/Source/WebCore
Revision
266105
Author
[email protected]
Date
2020-08-25 00:42:49 -0700 (Tue, 25 Aug 2020)

Log Message

Unreviewed. Fix GTK/WPE build after r266103

* inspector/agents/InspectorTimelineAgent.cpp:
(WebCore::InspectorTimelineAgent::internalStart):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (266104 => 266105)


--- trunk/Source/WebCore/ChangeLog	2020-08-25 07:01:58 UTC (rev 266104)
+++ trunk/Source/WebCore/ChangeLog	2020-08-25 07:42:49 UTC (rev 266105)
@@ -1,3 +1,10 @@
+2020-08-25  Carlos Garcia Campos  <[email protected]>
+
+        Unreviewed. Fix GTK/WPE build after r266103
+
+        * inspector/agents/InspectorTimelineAgent.cpp:
+        (WebCore::InspectorTimelineAgent::internalStart):
+
 2020-08-24  Carlos Garcia Campos  <[email protected]>
 
         [GTK] Implement rendering frames timeline panel for GTK+ port

Modified: trunk/Source/WebCore/inspector/agents/InspectorTimelineAgent.cpp (266104 => 266105)


--- trunk/Source/WebCore/inspector/agents/InspectorTimelineAgent.cpp	2020-08-25 07:01:58 UTC (rev 266104)
+++ trunk/Source/WebCore/inspector/agents/InspectorTimelineAgent.cpp	2020-08-25 07:42:49 UTC (rev 266105)
@@ -228,7 +228,7 @@
     m_runLoopNestingLevel = 1;
 #elif USE(GLIB_EVENT_LOOP)
     m_runLoopObserver = makeUnique<RunLoop::Observer>([this](RunLoop::Event event) {
-        if (!m_tracking || m_environment.scriptDebugServer().isPaused())
+        if (!m_tracking || m_environment.debugger().isPaused())
             return;
 
         switch (event) {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to