Title: [136102] trunk/Source/WebKit2
Revision
136102
Author
[email protected]
Date
2012-11-28 23:00:22 -0800 (Wed, 28 Nov 2012)

Log Message

Unreviewed, rolling out r135973.
http://trac.webkit.org/changeset/135973
https://bugs.webkit.org/show_bug.cgi?id=103604

It made API test crash on EFL bots (Requested by gyuyoung on
#webkit).

Patch by Sheriff Bot <[email protected]> on 2012-11-28

* UIProcess/API/efl/ewk_view.cpp:
(createEwkView):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (136101 => 136102)


--- trunk/Source/WebKit2/ChangeLog	2012-11-29 06:49:16 UTC (rev 136101)
+++ trunk/Source/WebKit2/ChangeLog	2012-11-29 07:00:22 UTC (rev 136102)
@@ -1,3 +1,15 @@
+2012-11-28  Sheriff Bot  <[email protected]>
+
+        Unreviewed, rolling out r135973.
+        http://trac.webkit.org/changeset/135973
+        https://bugs.webkit.org/show_bug.cgi?id=103604
+
+        It made API test crash on EFL bots (Requested by gyuyoung on
+        #webkit).
+
+        * UIProcess/API/efl/ewk_view.cpp:
+        (createEwkView):
+
 2012-11-28  Michael Pruett  <[email protected]>
 
         IndexedDB: Remove duplicate toWireString() and createFromWire() methods in JSC SerializedScriptValue

Modified: trunk/Source/WebKit2/UIProcess/API/efl/ewk_view.cpp (136101 => 136102)


--- trunk/Source/WebKit2/UIProcess/API/efl/ewk_view.cpp	2012-11-29 06:49:16 UTC (rev 136101)
+++ trunk/Source/WebKit2/UIProcess/API/efl/ewk_view.cpp	2012-11-29 07:00:22 UTC (rev 136102)
@@ -508,7 +508,8 @@
     }
 
     ASSERT(!smartData->priv);
-    smartData->priv = new EwkViewImpl(ewkView, context, toImpl(pageGroupRef), behavior);
+    RefPtr<WebPageGroup> pageGroup = pageGroupRef ? toImpl(pageGroupRef) : WebPageGroup::create();
+    smartData->priv = new EwkViewImpl(ewkView, context, pageGroup, behavior);
     return ewkView;
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to