Title: [137572] trunk/Source/WebCore
Revision
137572
Author
[email protected]
Date
2012-12-13 00:29:24 -0800 (Thu, 13 Dec 2012)

Log Message

Regression(r137486): Broke EFL build
https://bugs.webkit.org/show_bug.cgi?id=104883

Unreviewed EFL build fix.

Fix EFL build break after r137486 due to missing WebCore::
namespace.

No new tests, no behavior change for layout tests.

* platform/NotImplemented.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (137571 => 137572)


--- trunk/Source/WebCore/ChangeLog	2012-12-13 07:57:29 UTC (rev 137571)
+++ trunk/Source/WebCore/ChangeLog	2012-12-13 08:29:24 UTC (rev 137572)
@@ -1,3 +1,17 @@
+2012-12-13  Christophe Dumez  <[email protected]>
+
+        Regression(r137486): Broke EFL build
+        https://bugs.webkit.org/show_bug.cgi?id=104883
+
+        Unreviewed EFL build fix.
+
+        Fix EFL build break after r137486 due to missing WebCore::
+        namespace.
+
+        No new tests, no behavior change for layout tests.
+
+        * platform/NotImplemented.h:
+
 2012-12-07  Levi Weintraub  <[email protected]>
 
         Add support for tracking hit test rectangles to enable fast event rejection in the compositor

Modified: trunk/Source/WebCore/platform/NotImplemented.h (137571 => 137572)


--- trunk/Source/WebCore/platform/NotImplemented.h	2012-12-13 07:57:29 UTC (rev 137571)
+++ trunk/Source/WebCore/platform/NotImplemented.h	2012-12-13 08:29:24 UTC (rev 137572)
@@ -48,7 +48,7 @@
 #define notImplemented() do { \
         static bool havePrinted = false; \
         if (!havePrinted && !supressNotImplementedWarning()) { \
-            WTFLogVerbose(__FILE__, __LINE__, WTF_PRETTY_FUNCTION, notImplementedLoggingChannel(), "UNIMPLEMENTED: "); \
+            WTFLogVerbose(__FILE__, __LINE__, WTF_PRETTY_FUNCTION, WebCore::notImplementedLoggingChannel(), "UNIMPLEMENTED: "); \
             havePrinted = true; \
         } \
     } while (0)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to