Title: [195828] trunk/Source/WebKit/win
Revision
195828
Author
[email protected]
Date
2016-01-29 11:13:17 -0800 (Fri, 29 Jan 2016)

Log Message

Attempt to fix the Windows build after r195799

Unreviewed build fix.

* WebInspector.cpp:
(WebInspector::isJavaScriptProfilingEnabled):
(WebInspector::setJavaScriptProfilingEnabled):

Modified Paths

Diff

Modified: trunk/Source/WebKit/win/ChangeLog (195827 => 195828)


--- trunk/Source/WebKit/win/ChangeLog	2016-01-29 19:12:53 UTC (rev 195827)
+++ trunk/Source/WebKit/win/ChangeLog	2016-01-29 19:13:17 UTC (rev 195828)
@@ -1,3 +1,13 @@
+2016-01-29  Ryan Haddad  <[email protected]>
+
+        Attempt to fix the Windows build after r195799
+
+        Unreviewed build fix.
+
+        * WebInspector.cpp:
+        (WebInspector::isJavaScriptProfilingEnabled):
+        (WebInspector::setJavaScriptProfilingEnabled):
+
 2016-01-28  Darin Adler  <[email protected]>
 
         Remove equalIgnoringCase since all callers really wanted equalIgnoringASCIICase

Modified: trunk/Source/WebKit/win/WebInspector.cpp (195827 => 195828)


--- trunk/Source/WebKit/win/WebInspector.cpp	2016-01-29 19:12:53 UTC (rev 195827)
+++ trunk/Source/WebKit/win/WebInspector.cpp	2016-01-29 19:13:17 UTC (rev 195828)
@@ -216,7 +216,7 @@
     if (!inspectedPage)
         return S_OK;
 
-    *isProfilingEnabled = inspectedPage->inspectorController().profilerEnabled();
+    *isProfilingEnabled = inspectedPage->inspectorController().legacyProfilerEnabled();
     return S_OK;
 }
 
@@ -229,7 +229,7 @@
     if (!inspectedPage)
         return S_OK;
 
-    inspectedPage->inspectorController().setProfilerEnabled(enabled);
+    inspectedPage->inspectorController().setLegacyProfilerEnabled(enabled);
 
     return S_OK;
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to