Title: [96916] trunk/Source/WebKit/wince
Revision
96916
Author
[email protected]
Date
2011-10-07 02:04:10 -0700 (Fri, 07 Oct 2011)

Log Message

Unreviewed build fix after r95604.

* WebCoreSupport/PlatformStrategiesWinCE.cpp:
(PlatformStrategiesWinCE::isLinkVisited):
(PlatformStrategiesWinCE::addVisitedLink):

Modified Paths

Diff

Modified: trunk/Source/WebKit/wince/ChangeLog (96915 => 96916)


--- trunk/Source/WebKit/wince/ChangeLog	2011-10-07 08:31:59 UTC (rev 96915)
+++ trunk/Source/WebKit/wince/ChangeLog	2011-10-07 09:04:10 UTC (rev 96916)
@@ -1,3 +1,11 @@
+2011-10-07  Patrick Gansterer  <[email protected]>
+
+        Unreviewed build fix after r95604.
+
+        * WebCoreSupport/PlatformStrategiesWinCE.cpp:
+        (PlatformStrategiesWinCE::isLinkVisited):
+        (PlatformStrategiesWinCE::addVisitedLink):
+
 2011-09-24  Adam Barth  <[email protected]>
 
         Always enable ENABLE(OFFLINE_WEB_APPLICATIONS)

Modified: trunk/Source/WebKit/wince/WebCoreSupport/PlatformStrategiesWinCE.cpp (96915 => 96916)


--- trunk/Source/WebKit/wince/WebCoreSupport/PlatformStrategiesWinCE.cpp	2011-10-07 08:31:59 UTC (rev 96915)
+++ trunk/Source/WebKit/wince/WebCoreSupport/PlatformStrategiesWinCE.cpp	2011-10-07 09:04:10 UTC (rev 96916)
@@ -671,12 +671,12 @@
     return UI_STRING("step mismatch", "Validation message for input form controls with value not respecting the step attribute");
 }
 
-bool PlatformStrategiesWinCE::isLinkVisited(Page* page, LinkHash hash)
+bool PlatformStrategiesWinCE::isLinkVisited(Page* page, LinkHash hash, const KURL&, const AtomicString&)
 {
     return page->group().isLinkVisited(hash);
 }
 
-void PlatformStrategiesWinCE::addVisitedLink(Page* page, LinkHash hash, const KURL&, const AtomicString&)
+void PlatformStrategiesWinCE::addVisitedLink(Page* page, LinkHash hash)
 {
     page->group().addVisitedLinkHash(hash);
 }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to