Title: [164410] trunk/Source/WebKit2
Revision
164410
Author
[email protected]
Date
2014-02-19 19:26:37 -0800 (Wed, 19 Feb 2014)

Log Message

Build fix.

* UIProcess/API/C/WKPage.cpp: (WKPageGetBytecodeProfile): Updated a recently added
instance of ScriptCallback.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (164409 => 164410)


--- trunk/Source/WebKit2/ChangeLog	2014-02-20 03:21:41 UTC (rev 164409)
+++ trunk/Source/WebKit2/ChangeLog	2014-02-20 03:26:37 UTC (rev 164410)
@@ -1,3 +1,10 @@
+2014-02-19  Alexey Proskuryakov  <[email protected]>
+
+        Build fix.
+
+        * UIProcess/API/C/WKPage.cpp: (WKPageGetBytecodeProfile): Updated a recently added
+        instance of ScriptCallback.
+
 2014-02-18  Alexey Proskuryakov  <[email protected]>
 
         [WK2] IPC callback classes should not be tightly coupled to C API

Modified: trunk/Source/WebKit2/UIProcess/API/C/WKPage.cpp (164409 => 164410)


--- trunk/Source/WebKit2/UIProcess/API/C/WKPage.cpp	2014-02-20 03:21:41 UTC (rev 164409)
+++ trunk/Source/WebKit2/UIProcess/API/C/WKPage.cpp	2014-02-20 03:26:37 UTC (rev 164410)
@@ -1510,7 +1510,7 @@
 
 void WKPageGetBytecodeProfile(WKPageRef pageRef, void* context, WKPageGetBytecodeProfileFunction callback)
 {
-    toImpl(pageRef)->getBytecodeProfile(StringCallback::create(context, callback));
+    toImpl(pageRef)->getBytecodeProfile(StringAPICallback::create(context, callback));
 }
 
 void WKPageGetSelectionAsWebArchiveData(WKPageRef pageRef, void* context, WKPageGetSelectionAsWebArchiveDataFunction callback)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to