Title: [148125] trunk/Source/WebKit2
- Revision
- 148125
- Author
- [email protected]
- Date
- 2013-04-10 12:18:46 -0700 (Wed, 10 Apr 2013)
Log Message
Fixed build failure in Plugin.h: FloatPoint was not in namespace WebCore
make[1]: *** Waiting for unfinished jobs....
In file included from Source/WebKit2/PluginProcess/PluginCreationParameters.h:31:0,
from Source/WebKit2/PluginProcess/PluginCreationParameters.cpp:27:
./Source/WebKit2/WebProcess/Plugins/Plugin.h:268:58: error: 'FloatPoint' in namespace 'WebCore' does not name a type
./Source/WebKit2/WebProcess/Plugins/Plugin.h:268:77: error: ISO C++ forbids declaration of 'parameter' with no type [-fpermissive]
cc1plus: warning: unrecognized command line option "-Wno-c++11-extensions" [enabled by default]
make[1]: *** [Source/WebKit2/PluginProcess/libwebkit2gtk_3_0_la-PluginCreationParameters.lo] Error 1
It now passes that make target.
https://bugs.webkit.org/show_bug.cgi?id=111862
Patch by Tobias Mueller <[email protected]> on 2013-04-10
Reviewed by Darin Adler.
* WebProcess/Plugins/Plugin.h:
(WebCore): Added FloatPoint to the WebCore namespace
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (148124 => 148125)
--- trunk/Source/WebKit2/ChangeLog 2013-04-10 19:16:58 UTC (rev 148124)
+++ trunk/Source/WebKit2/ChangeLog 2013-04-10 19:18:46 UTC (rev 148125)
@@ -1,3 +1,24 @@
+2013-04-10 Tobias Mueller <[email protected]>
+
+ Fixed build failure in Plugin.h: FloatPoint was not in namespace WebCore
+
+ make[1]: *** Waiting for unfinished jobs....
+ In file included from Source/WebKit2/PluginProcess/PluginCreationParameters.h:31:0,
+ from Source/WebKit2/PluginProcess/PluginCreationParameters.cpp:27:
+ ./Source/WebKit2/WebProcess/Plugins/Plugin.h:268:58: error: 'FloatPoint' in namespace 'WebCore' does not name a type
+ ./Source/WebKit2/WebProcess/Plugins/Plugin.h:268:77: error: ISO C++ forbids declaration of 'parameter' with no type [-fpermissive]
+ cc1plus: warning: unrecognized command line option "-Wno-c++11-extensions" [enabled by default]
+ make[1]: *** [Source/WebKit2/PluginProcess/libwebkit2gtk_3_0_la-PluginCreationParameters.lo] Error 1
+
+ It now passes that make target.
+
+ https://bugs.webkit.org/show_bug.cgi?id=111862
+
+ Reviewed by Darin Adler.
+
+ * WebProcess/Plugins/Plugin.h:
+ (WebCore): Added FloatPoint to the WebCore namespace
+
2013-04-08 Anders Carlsson <[email protected]>
Remove unneeded headers from FrameLoader.h
Modified: trunk/Source/WebKit2/WebProcess/Plugins/Plugin.h (148124 => 148125)
--- trunk/Source/WebKit2/WebProcess/Plugins/Plugin.h 2013-04-10 19:16:58 UTC (rev 148124)
+++ trunk/Source/WebKit2/WebProcess/Plugins/Plugin.h 2013-04-10 19:18:46 UTC (rev 148125)
@@ -50,6 +50,7 @@
namespace WebCore {
class AffineTransform;
+ class FloatPoint;
class GraphicsContext;
class IntPoint;
class IntRect;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes