Title: [121668] trunk/Source/WebCore
Revision
121668
Author
[email protected]
Date
2012-07-02 03:44:05 -0700 (Mon, 02 Jul 2012)

Log Message

[EFL] Fix compilation error in GamepadsEfl.cpp in debug mode
https://bugs.webkit.org/show_bug.cgi?id=90369

Unreviewed, EFL build fix.

Patch by Christophe Dumez <[email protected]> on 2012-07-02

* platform/efl/GamepadsEfl.cpp:
(WebCore::GamepadsEfl::registerDevice):
(WebCore::GamepadsEfl::unregisterDevice):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (121667 => 121668)


--- trunk/Source/WebCore/ChangeLog	2012-07-02 10:30:22 UTC (rev 121667)
+++ trunk/Source/WebCore/ChangeLog	2012-07-02 10:44:05 UTC (rev 121668)
@@ -1,3 +1,14 @@
+2012-07-02  Christophe Dumez  <[email protected]>
+
+        [EFL] Fix compilation error in GamepadsEfl.cpp in debug mode
+        https://bugs.webkit.org/show_bug.cgi?id=90369
+
+        Unreviewed, EFL build fix.
+
+        * platform/efl/GamepadsEfl.cpp:
+        (WebCore::GamepadsEfl::registerDevice):
+        (WebCore::GamepadsEfl::unregisterDevice):
+
 2012-07-02  Nikita Vasilyev  <[email protected]>
 
         Web Inspector: Design WebSockets panel

Modified: trunk/Source/WebCore/platform/efl/GamepadsEfl.cpp (121667 => 121668)


--- trunk/Source/WebCore/platform/efl/GamepadsEfl.cpp	2012-07-02 10:30:22 UTC (rev 121667)
+++ trunk/Source/WebCore/platform/efl/GamepadsEfl.cpp	2012-07-02 10:44:05 UTC (rev 121668)
@@ -179,8 +179,6 @@
     if (!deviceFile || !eina_str_has_prefix(deviceFile, joystickPrefix))
         return;
 
-    LOG(Gamepad, "Registering gamepad at %s, deviceFile: %s", syspath.utf8().data(), deviceFile);
-
     const size_t slotCount = m_slots.size();
     for (size_t index = 0; index < slotCount; ++index) {
         if (!m_slots[index]) {
@@ -196,8 +194,6 @@
     if (!m_deviceMap.contains(syspath))
         return;
 
-    LOG(Gamepad, "Registering gamepad at %s,", syspath.utf8().data());
-
     GamepadDeviceEfl* gamepadDevice = m_deviceMap.take(syspath);
     const size_t index = m_slots.find(gamepadDevice);
     ASSERT(index != notFound);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to