Changeset 70836 in webkit


Ignore:
Timestamp:
Oct 28, 2010 8:20:24 PM (14 years ago)
Author:
Adam Roben
Message:

Move some function definitions from WebEvent.h into new .cpp files

Someday maybe we'll split the classes into their own header files,
too.

Fixes <http://webkit.org/b/48604>.

Reviewed by Anders Carlsson.

  • Shared/WebEvent.h: Moved code from here...
  • Shared/WebEvent.cpp: Added.
  • Shared/WebKeyboardEvent.cpp: Added.
  • Shared/WebMouseEvent.cpp: Added.
  • Shared/WebPlatformTouchPoint.cpp: Added.
  • Shared/WebTouchEvent.cpp: Added.
  • Shared/WebWheelEvent.cpp: Added.

...to here. Also changed WebTouchEvent::touchPoints not to copy the
Vector.

  • WebKit2.pro:
  • WebKit2.xcodeproj/project.pbxproj:
  • win/WebKit2.vcproj:

Added the new files.

Location:
trunk/WebKit2
Files:
6 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit2/ChangeLog

    r70833 r70836  
     12010-10-28  Adam Roben  <aroben@apple.com>
     2
     3        Move some function definitions from WebEvent.h into new .cpp files
     4
     5        Someday maybe we'll split the classes into their own header files,
     6        too.
     7
     8        Fixes <http://webkit.org/b/48604>.
     9
     10        Reviewed by Anders Carlsson.
     11
     12        * Shared/WebEvent.h: Moved code from here...
     13
     14        * Shared/WebEvent.cpp: Added.
     15        * Shared/WebKeyboardEvent.cpp: Added.
     16        * Shared/WebMouseEvent.cpp: Added.
     17        * Shared/WebPlatformTouchPoint.cpp: Added.
     18        * Shared/WebTouchEvent.cpp: Added.
     19        * Shared/WebWheelEvent.cpp: Added.
     20        ...to here. Also changed WebTouchEvent::touchPoints not to copy the
     21        Vector.
     22
     23        * WebKit2.pro:
     24        * WebKit2.xcodeproj/project.pbxproj:
     25        * win/WebKit2.vcproj:
     26        Added the new files.
     27
    1282010-10-28  Anders Carlsson  <andersca@apple.com>
    229
  • trunk/WebKit2/Shared/WebEvent.h

    r68538 r70836  
    7979
    8080protected:
    81     WebEvent()
    82     {
    83     }
    84 
    85     WebEvent(Type type, Modifiers modifiers, double timestamp)
    86         : m_type(type)
    87         , m_modifiers(modifiers)
    88         , m_timestamp(timestamp)
    89     {
    90     }
    91 
    92     void encode(CoreIPC::ArgumentEncoder* encoder) const
    93     {
    94         encoder->encode(m_type);
    95         encoder->encode(m_modifiers);
    96         encoder->encode(m_timestamp);
    97     }
    98 
    99     static bool decode(CoreIPC::ArgumentDecoder* decoder, WebEvent& t)
    100     {
    101         if (!decoder->decode(t.m_type))
    102             return false;
    103         if (!decoder->decode(t.m_modifiers))
    104             return false;
    105         if (!decoder->decode(t.m_timestamp))
    106             return false;
    107 
    108         return true;
    109     }
     81    WebEvent() { }
     82
     83    WebEvent(Type, Modifiers, double timestamp);
     84
     85    void encode(CoreIPC::ArgumentEncoder*) const;
     86    static bool decode(CoreIPC::ArgumentDecoder*, WebEvent&);
    11087
    11188private:
     
    11592};
    11693
     94// FIXME: Move this class to its own header file.
    11795class WebMouseEvent : public WebEvent {
    11896public:
     
    124102    };
    125103
    126     WebMouseEvent()
    127     {
    128     }
    129 
    130     WebMouseEvent(Type type, Button button, int x, int y, int globalX, int globalY, float deltaX, float deltaY, float deltaZ, int clickCount, Modifiers modifiers, double timestamp)
    131         : WebEvent(type, modifiers, timestamp)
    132         , m_button(button)
    133         , m_positionX(x)
    134         , m_positionY(y)
    135         , m_globalPositionX(globalX)
    136         , m_globalPositionY(globalY)
    137         , m_deltaX(deltaX)
    138         , m_deltaY(deltaY)
    139         , m_deltaZ(deltaZ)
    140         , m_clickCount(clickCount)
    141     {
    142         ASSERT(isMouseEventType(type));
    143     }
     104    WebMouseEvent() { }
     105
     106    WebMouseEvent(Type, Button, int x, int y, int globalX, int globalY, float deltaX, float deltaY, float deltaZ, int clickCount, Modifiers, double timestamp);
    144107
    145108    Button button() const { return m_button; }
     
    153116    int clickCount() const { return m_clickCount; }
    154117
    155     void encode(CoreIPC::ArgumentEncoder* encoder) const
    156     {
    157         encoder->encodeBytes(reinterpret_cast<const uint8_t*>(this), sizeof(*this));
    158     }
    159 
    160     static bool decode(CoreIPC::ArgumentDecoder* decoder, WebMouseEvent& t)
    161     {
    162         return decoder->decodeBytes(reinterpret_cast<uint8_t*>(&t), sizeof(t));
    163     }
    164 
    165 private:
    166     static bool isMouseEventType(Type type)
    167     {
    168         return type == MouseDown || type == MouseUp || type == MouseMove;
    169     }
     118    void encode(CoreIPC::ArgumentEncoder*) const;
     119    static bool decode(CoreIPC::ArgumentDecoder*, WebMouseEvent&);
     120
     121private:
     122    static bool isMouseEventType(Type);
    170123
    171124    Button m_button;
     
    180133};
    181134
     135// FIXME: Move this class to its own header file.
    182136class WebWheelEvent : public WebEvent {
    183137public:
     
    187141    };
    188142
    189     WebWheelEvent()
    190     {
    191     }
    192 
    193     WebWheelEvent(Type type, int x, int y, int globalX, int globalY, float deltaX, float deltaY, float wheelTicksX, float wheelTicksY, Granularity granularity, Modifiers modifiers, double timestamp)
    194         : WebEvent(type, modifiers, timestamp)
    195         , m_positionX(x)
    196         , m_positionY(y)
    197         , m_globalPositionX(globalX)
    198         , m_globalPositionY(globalY)
    199         , m_deltaX(deltaX)
    200         , m_deltaY(deltaY)
    201         , m_wheelTicksX(wheelTicksX)
    202         , m_wheelTicksY(wheelTicksY)
    203         , m_granularity(granularity)
    204     {
    205         ASSERT(isWheelEventType(type));
    206     }
     143    WebWheelEvent() { }
     144
     145    WebWheelEvent(Type, int x, int y, int globalX, int globalY, float deltaX, float deltaY, float wheelTicksX, float wheelTicksY, Granularity, Modifiers, double timestamp);
    207146
    208147    int positionX() const { return m_positionX; }
     
    216155    Granularity granularity() const { return (Granularity)m_granularity; }
    217156
    218     void encode(CoreIPC::ArgumentEncoder* encoder) const
    219     {
    220         encoder->encodeBytes(reinterpret_cast<const uint8_t*>(this), sizeof(*this));
    221     }
    222 
    223     static bool decode(CoreIPC::ArgumentDecoder* decoder, WebWheelEvent& t)
    224     {
    225         return decoder->decodeBytes(reinterpret_cast<uint8_t*>(&t), sizeof(t));
    226     }
    227 
    228 private:
    229     static bool isWheelEventType(Type type)
    230     {
    231         return type == Wheel;
    232     }
     157    void encode(CoreIPC::ArgumentEncoder*) const;
     158    static bool decode(CoreIPC::ArgumentDecoder*, WebWheelEvent&);
     159
     160private:
     161    static bool isWheelEventType(Type);
    233162
    234163    int m_positionX;
     
    243172};
    244173
     174// FIXME: Move this class to its own header file.
    245175class WebKeyboardEvent : public WebEvent {
    246176public:
    247     WebKeyboardEvent()
    248     {
    249     }
    250 
    251     WebKeyboardEvent(Type type, const String& text, const String& unmodifiedText, const String& keyIdentifier, int windowsVirtualKeyCode, int nativeVirtualKeyCode, bool isAutoRepeat, bool isKeypad, bool isSystemKey, Modifiers modifiers, double timestamp)
    252         : WebEvent(type, modifiers, timestamp)
    253         , m_text(text)
    254         , m_unmodifiedText(unmodifiedText)
    255         , m_keyIdentifier(keyIdentifier)
    256         , m_windowsVirtualKeyCode(windowsVirtualKeyCode)
    257         , m_nativeVirtualKeyCode(nativeVirtualKeyCode)
    258         , m_isAutoRepeat(isAutoRepeat)
    259         , m_isKeypad(isKeypad)
    260         , m_isSystemKey(isSystemKey)
    261     {
    262         ASSERT(isKeyboardEventType(type));
    263     }
     177    WebKeyboardEvent() { }
     178
     179    WebKeyboardEvent(Type, const String& text, const String& unmodifiedText, const String& keyIdentifier, int windowsVirtualKeyCode, int nativeVirtualKeyCode, bool isAutoRepeat, bool isKeypad, bool isSystemKey, Modifiers, double timestamp);
    264180
    265181    const String& text() const { return m_text; }
     
    272188    bool isSystemKey() const { return m_isSystemKey; }
    273189
    274     void encode(CoreIPC::ArgumentEncoder* encoder) const
    275     {
    276         WebEvent::encode(encoder);
    277 
    278         encoder->encode(m_text);
    279         encoder->encode(m_unmodifiedText);
    280         encoder->encode(m_keyIdentifier);
    281         encoder->encode(m_windowsVirtualKeyCode);
    282         encoder->encode(m_nativeVirtualKeyCode);
    283         encoder->encode(m_isAutoRepeat);
    284         encoder->encode(m_isKeypad);
    285         encoder->encode(m_isSystemKey);
    286     }
    287 
    288     static bool decode(CoreIPC::ArgumentDecoder* decoder, WebKeyboardEvent& t)
    289     {
    290         if (!WebEvent::decode(decoder, t))
    291             return false;
    292 
    293         String text;
    294         if (!decoder->decode(text))
    295             return false;
    296         t.m_text = text;
    297 
    298         String unmodifiedText;
    299         if (!decoder->decode(unmodifiedText))
    300             return false;
    301         t.m_unmodifiedText = unmodifiedText;
    302 
    303         String keyIdentifier;
    304         if (!decoder->decode(keyIdentifier))
    305             return false;
    306         t.m_keyIdentifier = keyIdentifier;
    307 
    308         if (!decoder->decode(t.m_windowsVirtualKeyCode))
    309             return false;
    310         if (!decoder->decode(t.m_nativeVirtualKeyCode))
    311             return false;
    312         if (!decoder->decode(t.m_isAutoRepeat))
    313             return false;
    314         if (!decoder->decode(t.m_isKeypad))
    315             return false;
    316         if (!decoder->decode(t.m_isSystemKey))
    317             return false;
    318         return true;
    319     }
    320 
    321     static bool isKeyboardEventType(Type type)
    322     {
    323         return type == RawKeyDown || type == KeyDown || type == KeyUp || type == Char;
    324     }
     190    void encode(CoreIPC::ArgumentEncoder*) const;
     191    static bool decode(CoreIPC::ArgumentDecoder*, WebKeyboardEvent&);
     192
     193    static bool isKeyboardEventType(Type);
    325194
    326195private:
     
    337206#if ENABLE(TOUCH_EVENTS)
    338207
     208// FIXME: Move this class to its own header file.
     209// FIXME: Having "Platform" in the name makes it sound like this event is platform-specific or low-
     210// level in some way. That doesn't seem to be the case.
    339211class WebPlatformTouchPoint {
    340212public:
     
    347219    };
    348220
    349     WebPlatformTouchPoint()
    350     {
    351     }
    352 
    353     WebPlatformTouchPoint(unsigned id, TouchPointState state, int screenPosX, int screenPosY, int posX, int posY)
    354         : m_id(id)
    355         , m_state(state)
    356         , m_screenPosX(screenPosX)
    357         , m_screenPosY(screenPosY)
    358         , m_posX(posX)
    359         , m_posY(posY)
    360     {
    361     }
     221    WebPlatformTouchPoint() { }
     222
     223    WebPlatformTouchPoint(unsigned id, TouchPointState, int screenPosX, int screenPosY, int posX, int posY);
    362224
    363225    unsigned id() const { return m_id; }
     
    371233    void setState(TouchPointState state) { m_state = state; }
    372234
    373     void encode(CoreIPC::ArgumentEncoder* encoder) const
    374     {
    375         encoder->encodeBytes(reinterpret_cast<const uint8_t*>(this), sizeof(*this));
    376     }
    377 
    378     static bool decode(CoreIPC::ArgumentDecoder* decoder, WebPlatformTouchPoint& t)
    379     {
    380         return decoder->decodeBytes(reinterpret_cast<uint8_t*>(&t), sizeof(t));
    381     }
     235    void encode(CoreIPC::ArgumentEncoder*) const;
     236    static bool decode(CoreIPC::ArgumentDecoder*, WebPlatformTouchPoint&);
    382237
    383238private:
     
    389244};
    390245
     246// FIXME: Move this class to its own header file.
    391247class WebTouchEvent : public WebEvent {
    392248public:
    393 
    394     WebTouchEvent()
    395     {
    396     }
     249    WebTouchEvent() { }
    397250 
    398     WebTouchEvent(WebEvent::Type type, Vector<WebPlatformTouchPoint> touchPoints, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, Modifiers modifiers, double timestamp)
    399         : WebEvent(type, modifiers, timestamp)
    400         , m_type(type)
    401         , m_touchPoints(touchPoints)
    402         , m_ctrlKey(ctrlKey)
    403         , m_altKey(altKey)
    404         , m_shiftKey(shiftKey)
    405         , m_metaKey(metaKey)
    406     {
    407         ASSERT(isTouchEventType(type));
    408     }
    409 
    410     const Vector<WebPlatformTouchPoint> touchPoints() const { return m_touchPoints; }
    411 
    412     void encode(CoreIPC::ArgumentEncoder* encoder) const
    413     {
    414         WebEvent::encode(encoder);
    415         encoder->encode(m_touchPoints);
    416     }
    417 
    418     static bool decode(CoreIPC::ArgumentDecoder* decoder, WebTouchEvent& t)
    419     {
    420         if (!WebEvent::decode(decoder, t))
    421             return false;
    422 
    423         if (!decoder->decode(t.m_touchPoints))
    424              return false;
    425 
    426         return true;
    427     }
     251    // FIXME: It would be nice not to have to copy the Vector here.
     252    WebTouchEvent(Type, Vector<WebPlatformTouchPoint>, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, Modifiers, double timestamp);
     253
     254    const Vector<WebPlatformTouchPoint>& touchPoints() const { return m_touchPoints; }
     255
     256    void encode(CoreIPC::ArgumentEncoder*) const;
     257    static bool decode(CoreIPC::ArgumentDecoder*, WebTouchEvent&);
    428258 
    429259private:
    430     static bool isTouchEventType(Type type)
    431     {
    432         return type == TouchStart || type == TouchMove || type == TouchEnd;
    433     }
     260    static bool isTouchEventType(Type);
    434261
    435262    Type m_type;
     
    441268    double m_timestamp;
    442269};
    443 #endif
     270
     271#endif // ENABLE(TOUCH_EVENTS)
    444272
    445273} // namespace WebKit
  • trunk/WebKit2/WebKit2.pro

    r70723 r70836  
    377377    Shared/VisitedLinkTable.cpp \
    378378    Shared/WebError.cpp \
     379    Shared/WebEvent.cpp \
    379380    Shared/WebEventConversion.cpp \
     381    Shared/WebKeyboardEvent.cpp \
     382    Shared/WebMouseEvent.cpp \
    380383    Shared/WebPageCreationParameters.cpp \
     384    Shared/WebPlatformTouchPoint.cpp \
    381385    Shared/WebPopupItem.cpp \
     386    Shared/WebPreferencesStore.cpp \
    382387    Shared/WebProcessCreationParameters.cpp \
    383     Shared/WebPreferencesStore.cpp \
     388    Shared/WebTouchEvent.cpp \
    384389    Shared/WebURLRequest.cpp \
    385390    Shared/WebURLResponse.cpp \
     391    Shared/WebWheelEvent.cpp \
    386392    UIProcess/API/C/WKBackForwardList.cpp \
    387393    UIProcess/API/C/WKContext.cpp \
  • trunk/WebKit2/WebKit2.xcodeproj/project.pbxproj

    r70828 r70836  
    459459                C01A260112662F2100C9ED55 /* BackingStoreCG.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C01A260012662F2100C9ED55 /* BackingStoreCG.cpp */; };
    460460                C02BFF1E1251502E009CCBEA /* NativeWebKeyboardEventMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = C02BFF1D1251502E009CCBEA /* NativeWebKeyboardEventMac.mm */; };
     461                C0337DAE127A24FE008FF4F4 /* WebEvent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0337DAD127A24FE008FF4F4 /* WebEvent.cpp */; };
     462                C0337DB0127A28D0008FF4F4 /* WebMouseEvent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0337DAF127A28D0008FF4F4 /* WebMouseEvent.cpp */; };
     463                C0337DD1127A2980008FF4F4 /* WebWheelEvent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0337DD0127A2980008FF4F4 /* WebWheelEvent.cpp */; };
     464                C0337DD3127A2A0E008FF4F4 /* WebKeyboardEvent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0337DD2127A2A0E008FF4F4 /* WebKeyboardEvent.cpp */; };
     465                C0337DD8127A51B6008FF4F4 /* WebTouchEvent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0337DD7127A51B6008FF4F4 /* WebTouchEvent.cpp */; };
     466                C0337DDD127A521C008FF4F4 /* WebPlatformTouchPoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0337DDC127A521C008FF4F4 /* WebPlatformTouchPoint.cpp */; };
    461467                C06C6095124C144B0001682F /* WebPageCreationParameters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C06C6093124C14430001682F /* WebPageCreationParameters.cpp */; };
    462468                C09AE5E9125257C20025825D /* WKNativeEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = C09AE5E8125257C20025825D /* WKNativeEvent.h */; settings = {ATTRIBUTES = (Public, ); }; };
     
    970976                C02BFF1512514FD8009CCBEA /* NativeWebKeyboardEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NativeWebKeyboardEvent.h; sourceTree = "<group>"; };
    971977                C02BFF1D1251502E009CCBEA /* NativeWebKeyboardEventMac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = NativeWebKeyboardEventMac.mm; sourceTree = "<group>"; };
     978                C0337DAD127A24FE008FF4F4 /* WebEvent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WebEvent.cpp; sourceTree = "<group>"; };
     979                C0337DAF127A28D0008FF4F4 /* WebMouseEvent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WebMouseEvent.cpp; sourceTree = "<group>"; };
     980                C0337DD0127A2980008FF4F4 /* WebWheelEvent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WebWheelEvent.cpp; sourceTree = "<group>"; };
     981                C0337DD2127A2A0E008FF4F4 /* WebKeyboardEvent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WebKeyboardEvent.cpp; sourceTree = "<group>"; };
     982                C0337DD7127A51B6008FF4F4 /* WebTouchEvent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WebTouchEvent.cpp; sourceTree = "<group>"; };
     983                C0337DDC127A521C008FF4F4 /* WebPlatformTouchPoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WebPlatformTouchPoint.cpp; sourceTree = "<group>"; };
    972984                C06C6093124C14430001682F /* WebPageCreationParameters.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WebPageCreationParameters.cpp; sourceTree = "<group>"; };
    973985                C06C6094124C14430001682F /* WebPageCreationParameters.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WebPageCreationParameters.h; sourceTree = "<group>"; };
     
    12741286                                BC575612126E0138006F0F12 /* WebError.cpp */,
    12751287                                516A4A5B120A2CCD00C05B7F /* WebError.h */,
     1288                                C0337DAD127A24FE008FF4F4 /* WebEvent.cpp */,
    12761289                                BC032DAF10F4380F0058C15A /* WebEvent.h */,
    12771290                                BC032DB010F4380F0058C15A /* WebEventConversion.cpp */,
    12781291                                BC032DB110F4380F0058C15A /* WebEventConversion.h */,
     1292                                C0337DD2127A2A0E008FF4F4 /* WebKeyboardEvent.cpp */,
     1293                                C0337DAF127A28D0008FF4F4 /* WebMouseEvent.cpp */,
    12791294                                BCF69F981176CED600471A52 /* WebNavigationDataStore.h */,
    12801295                                BC33DD671238464600360F3F /* WebNumber.h */,
     
    12831298                                C06C6093124C14430001682F /* WebPageCreationParameters.cpp */,
    12841299                                C06C6094124C14430001682F /* WebPageCreationParameters.h */,
     1300                                C0337DDC127A521C008FF4F4 /* WebPlatformTouchPoint.cpp */,
    12851301                                BC306823125A6B9400E71278 /* WebProcessCreationParameters.cpp */,
    12861302                                BC306822125A6B9400E71278 /* WebProcessCreationParameters.h */,
     
    12891305                                A72D5D7F1236CBA800A88B15 /* WebSerializedScriptValue.h */,
    12901306                                BCF04C8E11FF9F6E00F86A58 /* WebString.h */,
     1307                                C0337DD7127A51B6008FF4F4 /* WebTouchEvent.cpp */,
    12911308                                BCDB86C01200FB97007254BE /* WebURL.h */,
    12921309                                BCE2315C122C30CA00D5C35A /* WebURLRequest.cpp */,
     
    12951312                                BC90A1D0122DD55E00CC8C50 /* WebURLResponse.h */,
    12961313                                F6113E24126CE1820057D0A7 /* WebUserContentURLPattern.h */,
     1314                                C0337DD0127A2980008FF4F4 /* WebWheelEvent.cpp */,
    12971315                        );
    12981316                        path = Shared;
     
    25212539                                1A6161D51278981C003ACD86 /* Download.cpp in Sources */,
    25222540                                1A61639612789B2F003ACD86 /* DownloadMac.mm in Sources */,
     2541                                C0337DAE127A24FE008FF4F4 /* WebEvent.cpp in Sources */,
     2542                                C0337DB0127A28D0008FF4F4 /* WebMouseEvent.cpp in Sources */,
     2543                                C0337DD1127A2980008FF4F4 /* WebWheelEvent.cpp in Sources */,
     2544                                C0337DD3127A2A0E008FF4F4 /* WebKeyboardEvent.cpp in Sources */,
     2545                                C0337DD8127A51B6008FF4F4 /* WebTouchEvent.cpp in Sources */,
     2546                                C0337DDD127A521C008FF4F4 /* WebPlatformTouchPoint.cpp in Sources */,
    25232547                        );
    25242548                        runOnlyForDeploymentPostprocessing = 0;
  • trunk/WebKit2/win/WebKit2.vcproj

    r70723 r70836  
    506506                        </File>
    507507                        <File
     508                                RelativePath="..\Shared\WebEvent.cpp"
     509                                >
     510                        </File>
     511                        <File
    508512                                RelativePath="..\Shared\WebEvent.h"
    509513                                >
     
    518522                        </File>
    519523                        <File
     524                                RelativePath="..\Shared\WebKeyboardEvent.cpp"
     525                                >
     526                        </File>
     527                        <File
     528                                RelativePath="..\Shared\WebMouseEvent.cpp"
     529                                >
     530                        </File>
     531                        <File
    520532                                RelativePath="..\Shared\WebNavigationDataStore.h"
    521533                                >
     
    534546                        </File>
    535547                        <File
     548                                RelativePath="..\Shared\WebPlatformTouchPoint.cpp"
     549                                >
     550                        </File>
     551                        <File
    536552                                RelativePath="..\Shared\WebPopupItem.cpp"
    537553                                >
     
    566582                        </File>
    567583                        <File
     584                                RelativePath="..\Shared\WebTouchEvent.cpp"
     585                                >
     586                        </File>
     587                        <File
    568588                                RelativePath="..\Shared\WebURL.h"
    569589                                >
     
    587607                        <File
    588608                                RelativePath="..\Shared\WebUserContentURLPattern.h"
     609                                >
     610                        </File>
     611                        <File
     612                                RelativePath="..\Shared\WebWheelEvent.cpp"
    589613                                >
    590614                        </File>
Note: See TracChangeset for help on using the changeset viewer.