Changeset 17861 in webkit


Ignore:
Timestamp:
Nov 20, 2006 11:58:34 AM (17 years ago)
Author:
bdash
Message:

2006-11-20 Samuel Weinig <sam@webkit.org>

Reviewed by Alexey.

Fix for http://bugs.webkit.org/show_bug.cgi?id=11656
Fix Windows build

  • WebCore.vcproj/WebCore/WebCore.vcproj:
  • bridge/win/ContextMenuClientWin.h:
  • bridge/win/EditorClientWin.h:
  • bridge/win/FrameWin.h:
  • platform/win/TemporaryLinkStubs.cpp: (WebCore::ContextMenu::show): (WebCore::ContextMenuClientWin::copyLinkToClipboard): (WebCore::ContextMenuClientWin::downloadURL): (WebCore::ContextMenuClientWin::copyImageToClipboard): (WebCore::ContextMenuClientWin::lookUpInDictionary): (WebCore::EditorClientWin::shouldInsertText): (WebCore::FrameLoader::reload): (WebCore::FrameWin::ignoreSpelling): (WebCore::FrameWin::learnSpelling):

2006-11-20 Samuel Weinig <sam@webkit.org>

Reviewed by Alexey.

Fix for http://bugs.webkit.org/show_bug.cgi?id=11656
Fix Windows build

  • WebKit.vcproj/WebKit.vcproj: don't include directories that no longer exist.
Location:
trunk
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r17860 r17861  
     12006-11-20  Samuel Weinig  <sam@webkit.org>
     2
     3        Reviewed by Alexey.
     4
     5        Fix for http://bugs.webkit.org/show_bug.cgi?id=11656
     6        Fix Windows build
     7
     8        * WebCore.vcproj/WebCore/WebCore.vcproj:
     9        * bridge/win/ContextMenuClientWin.h:
     10        * bridge/win/EditorClientWin.h:
     11        * bridge/win/FrameWin.h:
     12        * platform/win/TemporaryLinkStubs.cpp:
     13        (WebCore::ContextMenu::show):
     14        (WebCore::ContextMenuClientWin::copyLinkToClipboard):
     15        (WebCore::ContextMenuClientWin::downloadURL):
     16        (WebCore::ContextMenuClientWin::copyImageToClipboard):
     17        (WebCore::ContextMenuClientWin::lookUpInDictionary):
     18        (WebCore::EditorClientWin::shouldInsertText):
     19        (WebCore::FrameLoader::reload):
     20        (WebCore::FrameWin::ignoreSpelling):
     21        (WebCore::FrameWin::learnSpelling):
     22
    1232006-11-20  Alexey Proskuryakov  <ap@webkit.org>
    224
  • trunk/WebCore/WebCore.vcproj/WebCore/WebCore.vcproj

    r17847 r17861  
    960960                        </File>
    961961                        <File
     962                                RelativePath="..\..\page\ChromeClient.h"
     963                                >
     964                        </File>
     965                        <File
    962966                                RelativePath="..\..\page\ContextMenuClient.h"
    963967                                >
     
    969973                        <File
    970974                                RelativePath="..\..\page\ContextMenuController.h"
    971                                 >
    972                         </File>
    973                         <File
    974                                 RelativePath="..\..\page\ChromeClient.h"
    975975                                >
    976976                        </File>
     
    43414341                        <File
    43424342                                RelativePath="..\..\editing\Editor.h"
     4343                                >
     4344                        </File>
     4345                        <File
     4346                                RelativePath="..\..\editing\EditorInsertAction.h"
    43434347                                >
    43444348                        </File>
  • trunk/WebCore/bridge/win/ContextMenuClientWin.h

    r17847 r17861  
    2626 */
    2727
    28 #ifndef ContextMenuClientWin_H
    29 #define ContextMenuClientWin_H
     28#ifndef ContextMenuClientWin_h
     29#define ContextMenuClientWin_h
    3030
    3131#include "ContextMenuClient.h"
     
    4141
    4242        virtual void addCustomContextMenuItems(ContextMenu*);
     43
     44        virtual void copyLinkToClipboard(HitTestResult);
     45        virtual void downloadURL(KURL);
     46        virtual void copyImageToClipboard(HitTestResult);
     47        virtual void lookUpInDictionary(Frame*);
    4348    };
    4449
    45 }
     50} // namespace WebCore
    4651
    47 #endif // ContextMenuClientWin_H
     52#endif // ContextMenuClientWin_h
  • trunk/WebCore/bridge/win/EditorClientWin.h

    r17847 r17861  
    2626 */
    2727
    28 #ifndef EditorClientWin_H
    29 #define EditorClientWin_H
     28#ifndef EditorClientWin_h
     29#define EditorClientWin_h
    3030
    3131#include "EditorClient.h"
     
    5252        virtual bool shouldBeginEditing(Range*);
    5353        virtual bool shouldEndEditing(Range*);
     54        virtual bool shouldInsertText(String, Range*, EditorInsertAction);
    5455        virtual bool shouldApplyStyle(CSSStyleDeclaration*, Range*);
    5556
     
    6970    };
    7071
    71 }
     72} // namespace WebCore
    7273
    73 #endif // EditorClientWin_H
     74#endif // EditorClientWin_h
  • trunk/WebCore/bridge/win/FrameWin.h

    r17847 r17861  
    2525 */
    2626
    27 #ifndef FrameWin_H
    28 #define FrameWin_H
     27#ifndef FrameWin_h
     28#define FrameWin_h
    2929
    3030#include "Frame.h"
     
    7575        virtual String mimeTypeForFileName(const String&) const;
    7676
     77        virtual void ignoreSpelling();
     78        virtual void learnSpelling();
    7779        virtual void markMisspellingsInAdjacentWords(const VisiblePosition&);
    7880        virtual void markMisspellings(const Selection&);
     
    114116    private:
    115117        virtual bool passMouseDownEventToWidget(Widget*);
     118
    116119        FrameWinClient* m_client;
    117120    };
     
    122125} // namespace WebCore
    123126
    124 #endif
     127#endif // FrameWin_h
  • trunk/WebCore/platform/win/TemporaryLinkStubs.cpp

    r17856 r17861  
    148148
    149149void ContextMenu::appendItem(ContextMenuItem item) { notImplemented(); }
     150void ContextMenu::show() { notImplemented(); }
    150151
    151152void ContextMenuClientWin::addCustomContextMenuItems(ContextMenu*) { notImplemented(); }
     153void ContextMenuClientWin::copyLinkToClipboard(HitTestResult) { notImplemented(); }
     154void ContextMenuClientWin::downloadURL(KURL) { notImplemented(); }
     155void ContextMenuClientWin::copyImageToClipboard(HitTestResult) { notImplemented(); }
     156void ContextMenuClientWin::lookUpInDictionary(Frame*) { notImplemented(); }
    152157
    153158void DocumentLoader::setFrame(Frame*) { notImplemented(); }
     
    171176bool EditorClientWin::shouldBeginEditing(Range*) { notImplemented(); return false; }
    172177bool EditorClientWin::shouldEndEditing(Range*) { notImplemented(); return false; }
     178bool EditorClientWin::shouldInsertText(String, Range*, EditorInsertAction) { notImplemented(); return false; }
    173179bool EditorClientWin::shouldApplyStyle(CSSStyleDeclaration*, Range*) { notImplemented(); return false; }
    174180void EditorClientWin::didBeginEditing() { notImplemented(); }
     
    228234void FrameLoader::detachFromParent() { notImplemented(); }
    229235void FrameLoader::checkLoadCompleteForThisFrame() { notImplemented(); }
     236void FrameLoader::reload() { notImplemented(); }
    230237
    231238bool FrameLoaderClientWin::hasWebView() const { notImplemented(); return false; }
     
    344351void FrameWin::markMisspellingsInAdjacentWords(VisiblePosition const&) { notImplemented(); }
    345352void FrameWin::respondToChangedContents(const Selection&) { notImplemented(); }
     353void FrameWin::ignoreSpelling() { notImplemented(); }
     354void FrameWin::learnSpelling() { notImplemented(); }
    346355
    347356void GraphicsContext::addRoundedRectClip(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight) { notImplemented(); }
  • trunk/WebKit/ChangeLog

    r17855 r17861  
     12006-11-20  Samuel Weinig  <sam@webkit.org>
     2
     3        Reviewed by Alexey.
     4
     5        Fix for http://bugs.webkit.org/show_bug.cgi?id=11656
     6        Fix Windows build
     7
     8        * WebKit.vcproj/WebKit.vcproj: don't include directories that no
     9        longer exist.
     10
    1112006-11-19  Beth Dakin  <bdakin@apple.com>
    212
  • trunk/WebKit/WebKit.vcproj/WebKit.vcproj

    r17816 r17861  
    4141                                Name="VCCLCompilerTool"
    4242                                Optimization="0"
    43                                 AdditionalIncludeDirectories="&quot;$(ProjectDir)\..\COM&quot;;&quot;$(ProjectDir)\..\..\WebCore&quot;;&quot;$(ProjectDir)\..\..\WebCore\loader&quot;;&quot;$(ProjectDir)\..\..\WebCore\khtml\dom&quot;;&quot;$(ProjectDir)\..\..\WebCore\khtml\ecma&quot;;&quot;$(ProjectDir)\..\..\WebCore\html&quot;;&quot;$(ProjectDir)\..\..\WebCore\khtml&quot;;&quot;$(ProjectDir)\..\..\WebCore\css&quot;;&quot;$(ProjectDir)\..\..\WebCore\khtml\misc&quot;;&quot;$(ProjectDir)\..\..\WebCore\platform&quot;;&quot;$(ProjectDir)\..\..\WebCore\bridge\win&quot;;&quot;$(ProjectDir)\..\..\WebCore\page&quot;;&quot;$(ProjectDir)\..\..\WebCore\bridge&quot;;&quot;$(ProjectDir)\..\..\WebCore\platform\graphics\cairo\cairo\src&quot;;&quot;$(ProjectDir)\..\..\WebCore\platform\win&quot;;&quot;$(ProjectDir)\..\..\WebCore\platform\network&quot;;&quot;$(ProjectDir)\..\..\WebCore\platform\network\win&quot;;&quot;$(ProjectDir)\..\..\WebCore\platform\graphics&quot;;&quot;$(ProjectDir)\..\..\WebCore\rendering&quot;;&quot;$(ProjectDir)\..\..\WebCore\editing&quot;;&quot;$(ProjectDir)\..\..\WebCore\dom&quot;;&quot;$(ProjectDir)\..\..\WebCore\xml&quot;;&quot;$(ProjectDir)\..\..\WebCore\kwq&quot;;&quot;$(ProjectDir)\..\..\iconv&quot;;&quot;$(ProjectDir)\..\..\libxml2&quot;;&quot;$(ProjectDir)\..\..\icu\include&quot;;&quot;$(ProjectDir)\..\..\JavaScriptCore&quot;;&quot;$(ProjectDir)\..\..\JavaScriptCore\os-win32&quot;;&quot;$(ProjectDir)\..\..\JavaScriptCore\wtf&quot;;&quot;$(ProjectDir)\..\..\WebCore\ForwardingHeaders&quot;;&quot;$(WebKitOutputDir)\$(ConfigurationName)\WebKitWin&quot;;&quot;$(ProjectDir)&quot;"
     43                                AdditionalIncludeDirectories="&quot;$(ProjectDir)\..\COM&quot;;&quot;$(ProjectDir)\..\..\WebCore&quot;;&quot;$(ProjectDir)\..\..\WebCore\bridge&quot;;&quot;$(ProjectDir)\..\..\WebCore\bridge\win&quot;;&quot;$(ProjectDir)\..\..\WebCore\css&quot;;&quot;$(ProjectDir)\..\..\WebCore\dom&quot;;&quot;$(ProjectDir)\..\..\WebCore\editing&quot;;&quot;$(ProjectDir)\..\..\WebCore\html&quot;;&quot;$(ProjectDir)\..\..\WebCore\loader&quot;;&quot;$(ProjectDir)\..\..\WebCore\page&quot;;&quot;$(ProjectDir)\..\..\WebCore\platform&quot;;&quot;$(ProjectDir)\..\..\WebCore\platform\graphics&quot;;&quot;$(ProjectDir)\..\..\WebCore\platform\graphics\cairo\cairo\src&quot;;&quot;$(ProjectDir)\..\..\WebCore\platform\network&quot;;&quot;$(ProjectDir)\..\..\WebCore\platform\network\win&quot;;&quot;$(ProjectDir)\..\..\WebCore\platform\win&quot;;&quot;$(ProjectDir)\..\..\WebCore\rendering&quot;;&quot;$(ProjectDir)\..\..\WebCore\xml&quot;;&quot;$(ProjectDir)\..\..\iconv&quot;;&quot;$(ProjectDir)\..\..\libxml2&quot;;&quot;$(ProjectDir)\..\..\icu\include&quot;;&quot;$(ProjectDir)\..\..\JavaScriptCore&quot;;&quot;$(ProjectDir)\..\..\JavaScriptCore\os-win32&quot;;&quot;$(ProjectDir)\..\..\JavaScriptCore\wtf&quot;;&quot;$(ProjectDir)\..\..\WebCore\ForwardingHeaders&quot;;&quot;$(WebKitOutputDir)\$(ConfigurationName)\WebKitWin&quot;;&quot;$(ProjectDir)&quot;"
    4444                                PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;WEBKIT_EXPORTS;_WIN32_WINNT=0x500;_SCL_SECURE_NO_DEPRECATE"
    4545                                MinimalRebuild="true"
     
    127127                        <Tool
    128128                                Name="VCCLCompilerTool"
    129                                 AdditionalIncludeDirectories="&quot;$(ProjectDir)\..\COM&quot;;&quot;$(ProjectDir)\..\..\WebCore&quot;;&quot;$(ProjectDir)\..\..\WebCore\loader&quot;;&quot;$(ProjectDir)\..\..\WebCore\khtml\dom&quot;;&quot;$(ProjectDir)\..\..\WebCore\khtml\ecma&quot;;&quot;$(ProjectDir)\..\..\WebCore\html&quot;;&quot;$(ProjectDir)\..\..\WebCore\khtml&quot;;&quot;$(ProjectDir)\..\..\WebCore\css&quot;;&quot;$(ProjectDir)\..\..\WebCore\khtml\misc&quot;;&quot;$(ProjectDir)\..\..\WebCore\platform&quot;;&quot;$(ProjectDir)\..\..\WebCore\bridge\win&quot;;&quot;$(ProjectDir)\..\..\WebCore\page&quot;;&quot;$(ProjectDir)\..\..\WebCore\bridge&quot;;&quot;$(ProjectDir)\..\..\WebCore\platform\graphics\cairo\cairo\src&quot;;&quot;$(ProjectDir)\..\..\WebCore\platform\win&quot;;&quot;$(ProjectDir)\..\..\WebCore\platform\network&quot;;&quot;$(ProjectDir)\..\..\WebCore\platform\network\win&quot;;&quot;$(ProjectDir)\..\..\WebCore\platform\graphics&quot;;&quot;$(ProjectDir)\..\..\WebCore\rendering&quot;;&quot;$(ProjectDir)\..\..\WebCore\editing&quot;;&quot;$(ProjectDir)\..\..\WebCore\dom&quot;;&quot;$(ProjectDir)\..\..\WebCore\xml&quot;;&quot;$(ProjectDir)\..\..\WebCore\kwq&quot;;&quot;$(ProjectDir)\..\..\iconv&quot;;&quot;$(ProjectDir)\..\..\libxml2&quot;;&quot;$(ProjectDir)\..\..\icu\include&quot;;&quot;$(ProjectDir)\..\..\JavaScriptCore&quot;;&quot;$(ProjectDir)\..\..\JavaScriptCore\os-win32&quot;;&quot;$(ProjectDir)\..\..\JavaScriptCore\wtf&quot;;&quot;$(ProjectDir)\..\..\WebCore\ForwardingHeaders&quot;;&quot;$(WebKitOutputDir)\$(ConfigurationName)\WebKitWin&quot;;&quot;$(ProjectDir)&quot;"
     129                                AdditionalIncludeDirectories="&quot;$(ProjectDir)\..\COM&quot;;&quot;$(ProjectDir)\..\..\WebCore&quot;;&quot;$(ProjectDir)\..\..\WebCore\bridge&quot;;&quot;$(ProjectDir)\..\..\WebCore\bridge\win&quot;;&quot;$(ProjectDir)\..\..\WebCore\css&quot;;&quot;$(ProjectDir)\..\..\WebCore\dom&quot;;&quot;$(ProjectDir)\..\..\WebCore\editing&quot;;&quot;$(ProjectDir)\..\..\WebCore\html&quot;;&quot;$(ProjectDir)\..\..\WebCore\loader&quot;;&quot;$(ProjectDir)\..\..\WebCore\page&quot;;&quot;$(ProjectDir)\..\..\WebCore\platform&quot;;&quot;$(ProjectDir)\..\..\WebCore\platform\graphics&quot;;&quot;$(ProjectDir)\..\..\WebCore\platform\graphics\cairo\cairo\src&quot;;&quot;$(ProjectDir)\..\..\WebCore\platform\network&quot;;&quot;$(ProjectDir)\..\..\WebCore\platform\network\win&quot;;&quot;$(ProjectDir)\..\..\WebCore\platform\win&quot;;&quot;$(ProjectDir)\..\..\WebCore\rendering&quot;;&quot;$(ProjectDir)\..\..\WebCore\xml&quot;;&quot;$(ProjectDir)\..\..\iconv&quot;;&quot;$(ProjectDir)\..\..\libxml2&quot;;&quot;$(ProjectDir)\..\..\icu\include&quot;;&quot;$(ProjectDir)\..\..\JavaScriptCore&quot;;&quot;$(ProjectDir)\..\..\JavaScriptCore\os-win32&quot;;&quot;$(ProjectDir)\..\..\JavaScriptCore\wtf&quot;;&quot;$(ProjectDir)\..\..\WebCore\ForwardingHeaders&quot;;&quot;$(WebKitOutputDir)\$(ConfigurationName)\WebKitWin&quot;;&quot;$(ProjectDir)&quot;"
    130130                                PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;WEBKIT_EXPORTS;_WIN32_WINNT=0x500;_SCL_SECURE_NO_DEPRECATE"
    131131                                ExceptionHandling="0"
Note: See TracChangeset for help on using the changeset viewer.