⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 176573 in webkit


Ignore:
Timestamp:
Nov 29, 2014, 9:47:35 AM (12 years ago)
Author:
andersca@apple.com
Message:

Add a stubbed out WebVisitedLinkStore class on Windows
https://bugs.webkit.org/show_bug.cgi?id=139078

Reviewed by Sam Weinig.

Source/WebKit:

  • WebKit.vcxproj/WebKit/WebKit.vcxproj:

Source/WebKit/win:

  • WebCoreSupport/WebVisitedLinkStore.cpp: Added.

(WebVisitedLinkStore::shared):
(WebVisitedLinkStore::WebVisitedLinkStore):
(WebVisitedLinkStore::~WebVisitedLinkStore):
(WebVisitedLinkStore::isLinkVisited):
(WebVisitedLinkStore::addVisitedLink):

  • WebCoreSupport/WebVisitedLinkStore.h: Added.
Location:
trunk/Source/WebKit
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r176551 r176573  
     12014-11-27  Anders Carlsson  <andersca@apple.com>
     2
     3        Add a stubbed out WebVisitedLinkStore class on Windows
     4        https://bugs.webkit.org/show_bug.cgi?id=139078
     5
     6        Reviewed by Sam Weinig.
     7
     8        * WebKit.vcxproj/WebKit/WebKit.vcxproj:
     9
    1102014-11-27  Anders Carlsson  <andersca@apple.com>
    211
  • trunk/Source/WebKit/WebKit.vcxproj/WebKit/WebKit.vcxproj

    r175678 r176573  
    337337    <ClCompile Include="..\..\win\WebCoreSupport\WebInspectorDelegate.cpp" />
    338338    <ClCompile Include="..\..\win\WebCoreSupport\WebPlatformStrategies.cpp" />
     339    <ClCompile Include="..\..\win\WebCoreSupport\WebVisitedLinkStore.cpp" />
    339340    <ClCompile Include="..\..\win\WebDatabaseManager.cpp" />
    340341    <ClCompile Include="..\..\win\WebDataSource.cpp" />
     
    475476    <ClInclude Include="..\..\win\WebCoreSupport\WebInspectorDelegate.h" />
    476477    <ClInclude Include="..\..\win\WebCoreSupport\WebPlatformStrategies.h" />
     478    <ClInclude Include="..\..\win\WebCoreSupport\WebVisitedLinkStore.h" />
    477479    <ClInclude Include="..\..\win\WebDatabaseManager.h" />
    478480    <ClInclude Include="..\..\win\WebDataSource.h" />
  • trunk/Source/WebKit/win/ChangeLog

    r176523 r176573  
     12014-11-27  Anders Carlsson  <andersca@apple.com>
     2
     3        Add a stubbed out WebVisitedLinkStore class on Windows
     4        https://bugs.webkit.org/show_bug.cgi?id=139078
     5
     6        Reviewed by Sam Weinig.
     7
     8        * WebCoreSupport/WebVisitedLinkStore.cpp: Added.
     9        (WebVisitedLinkStore::shared):
     10        (WebVisitedLinkStore::WebVisitedLinkStore):
     11        (WebVisitedLinkStore::~WebVisitedLinkStore):
     12        (WebVisitedLinkStore::isLinkVisited):
     13        (WebVisitedLinkStore::addVisitedLink):
     14        * WebCoreSupport/WebVisitedLinkStore.h: Added.
     15
    1162014-11-24  Anders Carlsson  <andersca@apple.com>
    217
Note: See TracChangeset for help on using the changeset viewer.