Title: [185740] trunk/Tools
Revision
185740
Author
commit-qu...@webkit.org
Date
2015-06-19 00:58:54 -0700 (Fri, 19 Jun 2015)

Log Message

[EFL] Fix the minibrowser after r185725
https://bugs.webkit.org/show_bug.cgi?id=146135

Patch by Hunseop Jeong <hs85.je...@samsung.com> on 2015-06-19
Reviewed by Gyuyoung Kim.

Removed the HAVE_ECORE_X guard in MiniBrowser because it is an unnecessary guard
for the elm_config_accel_preference_set() to set the config of acceleration preference.

* MiniBrowser/efl/main.c:
(elm_main): Deleted the HAVE_ECORE_X guard.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (185739 => 185740)


--- trunk/Tools/ChangeLog	2015-06-19 07:33:35 UTC (rev 185739)
+++ trunk/Tools/ChangeLog	2015-06-19 07:58:54 UTC (rev 185740)
@@ -1,3 +1,16 @@
+2015-06-19  Hunseop Jeong  <hs85.je...@samsung.com>
+
+        [EFL] Fix the minibrowser after r185725
+        https://bugs.webkit.org/show_bug.cgi?id=146135
+
+        Reviewed by Gyuyoung Kim.
+
+        Removed the HAVE_ECORE_X guard in MiniBrowser because it is an unnecessary guard
+        for the elm_config_accel_preference_set() to set the config of acceleration preference.
+
+        * MiniBrowser/efl/main.c:
+        (elm_main): Deleted the HAVE_ECORE_X guard.
+
 2015-06-18  Dewei Zhu  <dewei_...@apple.com>
 
         Extend capability of run-benchmark script to support mobile device

Modified: trunk/Tools/MiniBrowser/efl/main.c (185739 => 185740)


--- trunk/Tools/MiniBrowser/efl/main.c	2015-06-19 07:33:35 UTC (rev 185739)
+++ trunk/Tools/MiniBrowser/efl/main.c	2015-06-19 07:58:54 UTC (rev 185740)
@@ -2437,12 +2437,10 @@
 
     if (evas_engine_name)
         elm_config_accel_preference_set(evas_engine_name);
-#if defined(HAVE_ECORE_X)
     else {
         evas_engine_name = "opengl";
         elm_config_accel_preference_set(evas_engine_name);
     }
-#endif
 
     Ewk_Context *context = ewk_context_default_get();
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to