Title: [127942] trunk/Source/WebKit2
Revision
127942
Author
commit-qu...@webkit.org
Date
2012-09-07 17:42:47 -0700 (Fri, 07 Sep 2012)

Log Message

[EFL] [WK2] Set theme for the inspector view
https://bugs.webkit.org/show_bug.cgi?id=96108

Patch by Sudarsana Nagineni <sudarsana.nagin...@linux.intel.com> on 2012-09-07
Reviewed by Kenneth Rohde Christiansen.

Set the theme for the inspector view when it is created.

* UIProcess/efl/WebInspectorProxyEfl.cpp:
(WebKit::WebInspectorProxy::platformCreateInspectorPage):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (127941 => 127942)


--- trunk/Source/WebKit2/ChangeLog	2012-09-08 00:32:15 UTC (rev 127941)
+++ trunk/Source/WebKit2/ChangeLog	2012-09-08 00:42:47 UTC (rev 127942)
@@ -1,3 +1,15 @@
+2012-09-07  Sudarsana Nagineni  <sudarsana.nagin...@linux.intel.com>
+
+        [EFL] [WK2] Set theme for the inspector view
+        https://bugs.webkit.org/show_bug.cgi?id=96108
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        Set the theme for the inspector view when it is created.
+
+        * UIProcess/efl/WebInspectorProxyEfl.cpp:
+        (WebKit::WebInspectorProxy::platformCreateInspectorPage):
+
 2012-09-07  Christophe Dumez  <christophe.du...@intel.com>
 
         [EFL] Use same default minimum logical font size in DRT and WTR

Modified: trunk/Source/WebKit2/UIProcess/efl/WebInspectorProxyEfl.cpp (127941 => 127942)


--- trunk/Source/WebKit2/UIProcess/efl/WebInspectorProxyEfl.cpp	2012-09-08 00:32:15 UTC (rev 127941)
+++ trunk/Source/WebKit2/UIProcess/efl/WebInspectorProxyEfl.cpp	2012-09-08 00:42:47 UTC (rev 127942)
@@ -29,6 +29,7 @@
 #if ENABLE(INSPECTOR)
 
 #include "WebProcessProxy.h"
+#include "ewk_view.h"
 #include "ewk_view_private.h"
 #include <WebCore/NotImplemented.h>
 #include <unistd.h>
@@ -46,6 +47,7 @@
         return 0;
 
     m_inspectorView = ewk_view_base_add(ecore_evas_get(m_inspectorWindow), toAPI(page()->process()->context()), toAPI(inspectorPageGroup()));
+    ewk_view_theme_set(m_inspectorView, TEST_THEME_DIR"/default.edj");
     return ewk_view_page_get(m_inspectorView);
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to