Title: [199908] trunk/Source/WebKit
Revision
199908
Author
bfulg...@apple.com
Date
2016-04-22 14:27:14 -0700 (Fri, 22 Apr 2016)

Log Message

Source/WebKit:
Unreviewed build fix after r199841.

* PlatformWin.cmake: Add missing WebApplicationCache.cpp buid directive.

Source/WebKit/win:
Unreviewed build fix after 4199841.

* WebApplicationCache.cpp:
(WebApplicationCache::WebApplicationCache): Provide missing preference key definition.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (199907 => 199908)


--- trunk/Source/WebKit/ChangeLog	2016-04-22 21:26:46 UTC (rev 199907)
+++ trunk/Source/WebKit/ChangeLog	2016-04-22 21:27:14 UTC (rev 199908)
@@ -1,3 +1,9 @@
+2016-04-22  Brent Fulgham  <bfulg...@apple.com>
+
+        Unreviewed build fix after r199841.
+
+        * PlatformWin.cmake: Add missing WebApplicationCache.cpp buid directive.
+
 2016-04-11  Fujii Hironori  <hironori.fu...@jp.sony.com>
 
         [CMake] Make FOLDER property INHERITED

Modified: trunk/Source/WebKit/PlatformWin.cmake (199907 => 199908)


--- trunk/Source/WebKit/PlatformWin.cmake	2016-04-22 21:26:46 UTC (rev 199907)
+++ trunk/Source/WebKit/PlatformWin.cmake	2016-04-22 21:27:14 UTC (rev 199908)
@@ -83,6 +83,7 @@
     win/MemoryStream.h
     win/ProgIDMacros.h
     win/WebActionPropertyBag.h
+    win/WebApplicationCache.h
     win/WebArchive.h
     win/WebBackForwardList.h
     win/WebCache.h
@@ -154,6 +155,7 @@
     win/MarshallingHelpers.cpp
     win/MemoryStream.cpp
     win/WebActionPropertyBag.cpp
+    win/WebApplicationCache.cpp
     win/WebArchive.cpp
     win/WebBackForwardList.cpp
     win/WebCache.cpp

Modified: trunk/Source/WebKit/win/ChangeLog (199907 => 199908)


--- trunk/Source/WebKit/win/ChangeLog	2016-04-22 21:26:46 UTC (rev 199907)
+++ trunk/Source/WebKit/win/ChangeLog	2016-04-22 21:27:14 UTC (rev 199908)
@@ -1,3 +1,10 @@
+2016-04-22  Brent Fulgham  <bfulg...@apple.com>
+
+        Unreviewed build fix after 4199841.
+
+        * WebApplicationCache.cpp:
+        (WebApplicationCache::WebApplicationCache): Provide missing preference key definition.
+
 2016-04-21  Anders Carlsson  <ander...@apple.com>
 
         Add a missing space, as noticed by Darin.

Modified: trunk/Source/WebKit/win/WebApplicationCache.cpp (199907 => 199908)


--- trunk/Source/WebKit/win/WebApplicationCache.cpp	2016-04-22 21:26:46 UTC (rev 199907)
+++ trunk/Source/WebKit/win/WebApplicationCache.cpp	2016-04-22 21:27:14 UTC (rev 199908)
@@ -33,9 +33,14 @@
 #include <WebCore/ApplicationCache.h>
 #include <WebCore/ApplicationCacheStorage.h>
 #include <WebCore/COMPtr.h>
+#include <WebCore/FileSystem.h>
 #include <WebCore/SecurityOrigin.h>
 #include <comutil.h>
 
+using namespace WebCore;
+
+static CFStringRef WebKitLocalCacheDefaultsKey = CFSTR("WebKitLocalCache");
+
 // WebApplicationCache ---------------------------------------------------------------------------
 
 WebApplicationCache::WebApplicationCache()
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to