Changeset 163178 in webkit


Ignore:
Timestamp:
Jan 31, 2014 10:49:27 AM (10 years ago)
Author:
zandobersek@gmail.com
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.

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r163173 r163178  
     12014-01-31  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        Fix the forward declaration of RawPluginMetaData in NetscapePluginModule.h
     4        https://bugs.webkit.org/show_bug.cgi?id=127992
     5
     6        Reviewed by Martin Robinson.
     7
     8        * Shared/Plugins/Netscape/NetscapePluginModule.h: RawPluginMetaData is a struct, so it should
     9        be declared as such. The current forward declaration is throwing a warning when using Clang.
     10
    1112014-01-31  Anders Carlsson  <andersca@apple.com>
    212
  • trunk/Source/WebKit2/Shared/Plugins/Netscape/NetscapePluginModule.h

    r156688 r163178  
    3838namespace WebKit {
    3939
    40 class RawPluginMetaData;
     40struct RawPluginMetaData;
    4141
    4242class NetscapePluginModule : public RefCounted<NetscapePluginModule> {
Note: See TracChangeset for help on using the changeset viewer.