Title: [131878] trunk/Source/WebKit2
Revision
131878
Author
[email protected]
Date
2012-10-19 02:43:24 -0700 (Fri, 19 Oct 2012)

Log Message

Build fix after r131741 for !ENABLE(CSS_SHADERS) platforms.
https://bugs.webkit.org/show_bug.cgi?id=99775

Patch by Huang Dongsung <[email protected]> on 2012-10-19
Reviewed by Csaba Osztrogonác.

A class in WebKit namespace is only used when ENABLE(CSS_SHADERS), so we
must guard "using namespace WebKit" by ENABLE(CSS_SHADERS). Otherwise,
it brokes the Qt --minimal build.

* Shared/CoordinatedGraphics/CoordinatedGraphicsArgumentCoders.cpp:
(CoreIPC::::decode):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (131877 => 131878)


--- trunk/Source/WebKit2/ChangeLog	2012-10-19 09:41:35 UTC (rev 131877)
+++ trunk/Source/WebKit2/ChangeLog	2012-10-19 09:43:24 UTC (rev 131878)
@@ -1,3 +1,17 @@
+2012-10-19  Huang Dongsung  <[email protected]>
+
+        Build fix after r131741 for !ENABLE(CSS_SHADERS) platforms.
+        https://bugs.webkit.org/show_bug.cgi?id=99775
+
+        Reviewed by Csaba Osztrogonác.
+
+        A class in WebKit namespace is only used when ENABLE(CSS_SHADERS), so we
+        must guard "using namespace WebKit" by ENABLE(CSS_SHADERS). Otherwise,
+        it brokes the Qt --minimal build.
+
+        * Shared/CoordinatedGraphics/CoordinatedGraphicsArgumentCoders.cpp:
+        (CoreIPC::::decode):
+
 2012-10-19  Carlos Garcia Campos  <[email protected]>
 
         REGRESSION (r130640 - r130644): TestCookieManager API test is failing

Modified: trunk/Source/WebKit2/Shared/CoordinatedGraphics/CoordinatedGraphicsArgumentCoders.cpp (131877 => 131878)


--- trunk/Source/WebKit2/Shared/CoordinatedGraphics/CoordinatedGraphicsArgumentCoders.cpp	2012-10-19 09:41:35 UTC (rev 131877)
+++ trunk/Source/WebKit2/Shared/CoordinatedGraphics/CoordinatedGraphicsArgumentCoders.cpp	2012-10-19 09:43:24 UTC (rev 131878)
@@ -63,7 +63,9 @@
 #endif
 
 using namespace WebCore;
+#if ENABLE(CSS_SHADERS)
 using namespace WebKit;
+#endif
 
 namespace CoreIPC {
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to