Changeset 148125 in webkit


Ignore:
Timestamp:
Apr 10, 2013 12:18:46 PM (11 years ago)
Author:
commit-queue@webkit.org
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 <tobiasmue@gnome.org> on 2013-04-10
Reviewed by Darin Adler.

  • WebProcess/Plugins/Plugin.h:

(WebCore): Added FloatPoint to the WebCore namespace

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r148123 r148125  
     12013-04-10  Tobias Mueller  <tobiasmue@gnome.org>
     2
     3        Fixed build failure in Plugin.h: FloatPoint was not in namespace WebCore
     4
     5        make[1]: *** Waiting for unfinished jobs....
     6        In file included from Source/WebKit2/PluginProcess/PluginCreationParameters.h:31:0,
     7                         from Source/WebKit2/PluginProcess/PluginCreationParameters.cpp:27:
     8        ./Source/WebKit2/WebProcess/Plugins/Plugin.h:268:58: error: 'FloatPoint' in namespace 'WebCore' does not name a type
     9        ./Source/WebKit2/WebProcess/Plugins/Plugin.h:268:77: error: ISO C++ forbids declaration of 'parameter' with no type [-fpermissive]
     10        cc1plus: warning: unrecognized command line option "-Wno-c++11-extensions" [enabled by default]
     11        make[1]: *** [Source/WebKit2/PluginProcess/libwebkit2gtk_3_0_la-PluginCreationParameters.lo] Error 1
     12
     13        It now passes that make target.
     14
     15        https://bugs.webkit.org/show_bug.cgi?id=111862
     16
     17        Reviewed by Darin Adler.
     18
     19        * WebProcess/Plugins/Plugin.h:
     20        (WebCore): Added FloatPoint to the WebCore namespace
     21
    1222013-04-08  Anders Carlsson  <andersca@apple.com>
    223
  • trunk/Source/WebKit2/WebProcess/Plugins/Plugin.h

    r147823 r148125  
    5151namespace WebCore {
    5252    class AffineTransform;
     53    class FloatPoint;
    5354    class GraphicsContext;
    5455    class IntPoint;
Note: See TracChangeset for help on using the changeset viewer.