Title: [188751] trunk
Revision
188751
Author
[email protected]
Date
2015-08-20 21:30:47 -0700 (Thu, 20 Aug 2015)

Log Message

[EFL] Revise PlatformWebView ctor according to r188718
https://bugs.webkit.org/show_bug.cgi?id=148282

Source/WebKit2:

Patch by Joonghun Park <[email protected]> on 2015-08-20
Reviewed by Gyuyoung Kim.

* PlatformEfl.cmake:

Tools:

This patch change PlatformWebView ctor's argument to use WKPageConfigurationRef
instead of WKContextRef and WKPageGroupRef respectively.

Patch by Joonghun Park <[email protected]> on 2015-08-20
Reviewed by Gyuyoung Kim.

* WebKitTestRunner/efl/PlatformWebViewEfl.cpp:
(WTR::PlatformWebView::PlatformWebView):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (188750 => 188751)


--- trunk/Source/WebKit2/ChangeLog	2015-08-21 04:22:32 UTC (rev 188750)
+++ trunk/Source/WebKit2/ChangeLog	2015-08-21 04:30:47 UTC (rev 188751)
@@ -1,3 +1,12 @@
+2015-08-20  Joonghun Park  <[email protected]>
+
+        [EFL] Revise PlatformWebView ctor according to r188718
+        https://bugs.webkit.org/show_bug.cgi?id=148282
+
+        Reviewed by Gyuyoung Kim.
+
+        * PlatformEfl.cmake:
+
 2015-08-20  Alex Christensen  <[email protected]>
 
         GTK build fix after r188693.

Modified: trunk/Source/WebKit2/PlatformEfl.cmake (188750 => 188751)


--- trunk/Source/WebKit2/PlatformEfl.cmake	2015-08-21 04:22:32 UTC (rev 188750)
+++ trunk/Source/WebKit2/PlatformEfl.cmake	2015-08-21 04:30:47 UTC (rev 188751)
@@ -65,6 +65,8 @@
     UIProcess/BackingStore.cpp
     UIProcess/DefaultUndoController.cpp
 
+    UIProcess/API/C/WKPageConfigurationRef.cpp
+
     UIProcess/API/C/CoordinatedGraphics/WKView.cpp
 
     UIProcess/API/C/cairo/WKIconDatabaseCairo.cpp

Modified: trunk/Tools/ChangeLog (188750 => 188751)


--- trunk/Tools/ChangeLog	2015-08-21 04:22:32 UTC (rev 188750)
+++ trunk/Tools/ChangeLog	2015-08-21 04:30:47 UTC (rev 188751)
@@ -1,3 +1,16 @@
+2015-08-20  Joonghun Park  <[email protected]>
+
+        [EFL] Revise PlatformWebView ctor according to r188718
+        https://bugs.webkit.org/show_bug.cgi?id=148282
+
+        This patch change PlatformWebView ctor's argument to use WKPageConfigurationRef
+        instead of WKContextRef and WKPageGroupRef respectively.
+
+        Reviewed by Gyuyoung Kim.
+
+        * WebKitTestRunner/efl/PlatformWebViewEfl.cpp:
+        (WTR::PlatformWebView::PlatformWebView):
+
 2015-08-20  Devin Rousso  <[email protected]>
 
         Unreviewed, changed Devin Rousso's email.

Modified: trunk/Tools/WebKitTestRunner/efl/PlatformWebViewEfl.cpp (188750 => 188751)


--- trunk/Tools/WebKitTestRunner/efl/PlatformWebViewEfl.cpp	2015-08-21 04:22:32 UTC (rev 188750)
+++ trunk/Tools/WebKitTestRunner/efl/PlatformWebViewEfl.cpp	2015-08-21 04:30:47 UTC (rev 188751)
@@ -53,7 +53,7 @@
     return ecoreEvas;
 }
 
-PlatformWebView::PlatformWebView(WKContextRef context, WKPageGroupRef pageGroup, WKPageRef /* relatedPage */, const ViewOptions& options)
+PlatformWebView::PlatformWebView(WKPageConfigurationRef configuration, const ViewOptions& options)
     : m_options(options)
 {
     WKRetainPtr<WKStringRef> useFixedLayoutKey(AdoptWK, WKStringCreateWithUTF8CString("UseFixedLayout"));
@@ -61,6 +61,8 @@
 
     m_window = initEcoreEvas();
 
+    WKContextRef context = WKPageConfigurationGetContext(configuration);
+    WKPageGroupRef pageGroup = WKPageConfigurationGetPageGroup(configuration);
     m_view = EWKViewCreate(context, pageGroup, ecore_evas_get(m_window), /* smart */ 0);
 
     WKPageSetUseFixedLayout(WKViewGetPage(EWKViewGetWKView(m_view)), m_usingFixedLayout);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to