Title: [116774] trunk/Source/WebCore
Revision
116774
Author
commit-qu...@webkit.org
Date
2012-05-11 08:51:48 -0700 (Fri, 11 May 2012)

Log Message

[EFL][DRT] Input Attribute Placeholder RefTests failing
https://bugs.webkit.org/show_bug.cgi?id=85603

Unreviewed, build fix for EFL.

Patch by Dominik Röttsches <dominik.rottsc...@intel.com> on 2012-05-11

* platform/efl/RenderThemeEfl.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (116773 => 116774)


--- trunk/Source/WebCore/ChangeLog	2012-05-11 15:51:19 UTC (rev 116773)
+++ trunk/Source/WebCore/ChangeLog	2012-05-11 15:51:48 UTC (rev 116774)
@@ -1,3 +1,12 @@
+2012-05-11  Dominik Röttsches  <dominik.rottsc...@intel.com>
+
+        [EFL][DRT] Input Attribute Placeholder RefTests failing
+        https://bugs.webkit.org/show_bug.cgi?id=85603
+
+        Unreviewed, build fix for EFL.
+
+        * platform/efl/RenderThemeEfl.cpp:
+
 2012-05-11  Alexei Filippov  <alex...@chromium.org>
 
         Web Inspector: Remove support of combined nodes and edges serialization schema.

Modified: trunk/Source/WebCore/platform/efl/RenderThemeEfl.cpp (116773 => 116774)


--- trunk/Source/WebCore/platform/efl/RenderThemeEfl.cpp	2012-05-11 15:51:19 UTC (rev 116773)
+++ trunk/Source/WebCore/platform/efl/RenderThemeEfl.cpp	2012-05-11 15:51:48 UTC (rev 116774)
@@ -421,49 +421,6 @@
     that->setFocusRingColor(fr, fg, fb, fa);
 }
 
-static void renderThemeEflColorClassButtonText(void* data, Evas_Object* object, const char* signal, const char* source)
-{
-    RenderThemeEfl* that = static_cast<RenderThemeEfl *>(data);
-    int fr, fg, fb, fa, br, bg, bb, ba;
-
-    if (!edje_object_color_class_get(object, source, &fr, &fg, &fb, &fa, &br, &bg, &bb, &ba, 0, 0, 0, 0))
-        return;
-
-    that->setButtonTextColor(fr, fg, fb, fa, br, bg, bb, ba);
-}
-
-static void renderThemeEflColorClassComboText(void* data, Evas_Object* object, const char* signal, const char* source)
-{
-    RenderThemeEfl* that = static_cast<RenderThemeEfl *>(data);
-    int fr, fg, fb, fa, br, bg, bb, ba;
-
-    if (!edje_object_color_class_get(object, source, &fr, &fg, &fb, &fa, &br, &bg, &bb, &ba, 0, 0, 0, 0))
-        return;
-
-    that->setComboTextColor(fr, fg, fb, fa, br, bg, bb, ba);
-}
-
-static void renderThemeEflColorClassEntryText(void* data, Evas_Object* object, const char* signal, const char* source)
-{
-    RenderThemeEfl* that = static_cast<RenderThemeEfl *>(data);
-    int fr, fg, fb, fa, br, bg, bb, ba;
-
-    if (!edje_object_color_class_get(object, source, &fr, &fg, &fb, &fa, &br, &bg, &bb, &ba, 0, 0, 0, 0))
-        return;
-
-    that->setEntryTextColor(fr, fg, fb, fa, br, bg, bb, ba);
-}
-
-static void renderThemeEflColorClassSearchText(void* data, Evas_Object* object, const char* signal, const char* source)
-{
-    RenderThemeEfl* that = static_cast<RenderThemeEfl *>(data);
-    int fr, fg, fb, fa, br, bg, bb, ba;
-    if (!edje_object_color_class_get(object, source, &fr, &fg, &fb, &fa, &br, &bg, &bb, &ba, 0, 0, 0, 0))
-        return;
-
-    that->setSearchTextColor(fr, fg, fb, fa, br, bg, bb, ba);
-}
-
 void RenderThemeEfl::createCanvas()
 {
     ASSERT(!m_canvas);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to