Title: [163178] trunk/Source/WebKit2
- Revision
- 163178
- Author
- [email protected]
- Date
- 2014-01-31 10:49:27 -0800 (Fri, 31 Jan 2014)
Log Message
Fix the forward declaration of RawPluginMetaData in NetscapePluginModule.h
https://bugs.webkit.org/show_bug.cgi?id=127992
Reviewed by Martin Robinson.
* Shared/Plugins/Netscape/NetscapePluginModule.h: RawPluginMetaData is a struct, so it should
be declared as such. The current forward declaration is throwing a warning when using Clang.
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (163177 => 163178)
--- trunk/Source/WebKit2/ChangeLog 2014-01-31 18:49:13 UTC (rev 163177)
+++ trunk/Source/WebKit2/ChangeLog 2014-01-31 18:49:27 UTC (rev 163178)
@@ -1,3 +1,13 @@
+2014-01-31 Zan Dobersek <[email protected]>
+
+ Fix the forward declaration of RawPluginMetaData in NetscapePluginModule.h
+ https://bugs.webkit.org/show_bug.cgi?id=127992
+
+ Reviewed by Martin Robinson.
+
+ * Shared/Plugins/Netscape/NetscapePluginModule.h: RawPluginMetaData is a struct, so it should
+ be declared as such. The current forward declaration is throwing a warning when using Clang.
+
2014-01-31 Anders Carlsson <[email protected]>
REGRESSION: WebKit2.PageLoadBasic API test is failing
Modified: trunk/Source/WebKit2/Shared/Plugins/Netscape/NetscapePluginModule.h (163177 => 163178)
--- trunk/Source/WebKit2/Shared/Plugins/Netscape/NetscapePluginModule.h 2014-01-31 18:49:13 UTC (rev 163177)
+++ trunk/Source/WebKit2/Shared/Plugins/Netscape/NetscapePluginModule.h 2014-01-31 18:49:27 UTC (rev 163178)
@@ -37,7 +37,7 @@
namespace WebKit {
-class RawPluginMetaData;
+struct RawPluginMetaData;
class NetscapePluginModule : public RefCounted<NetscapePluginModule> {
public:
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes