Title: [199841] trunk/Source/WebKit/win
Revision
199841
Author
ander...@apple.com
Date
2016-04-21 16:03:27 -0700 (Thu, 21 Apr 2016)

Log Message

Add a missing space, as noticed by Darin.

* WebApplicationCache.cpp:
(applicationCachePath):

Modified Paths

Diff

Modified: trunk/Source/WebKit/win/ChangeLog (199840 => 199841)


--- trunk/Source/WebKit/win/ChangeLog	2016-04-21 22:50:50 UTC (rev 199840)
+++ trunk/Source/WebKit/win/ChangeLog	2016-04-21 23:03:27 UTC (rev 199841)
@@ -1,5 +1,12 @@
 2016-04-21  Anders Carlsson  <ander...@apple.com>
 
+        Add a missing space, as noticed by Darin.
+
+        * WebApplicationCache.cpp:
+        (applicationCachePath):
+
+2016-04-21  Anders Carlsson  <ander...@apple.com>
+
         Stop using ApplicationCacheStorage::singleton() on Windows
         https://bugs.webkit.org/show_bug.cgi?id=156861
 

Modified: trunk/Source/WebKit/win/WebApplicationCache.cpp (199840 => 199841)


--- trunk/Source/WebKit/win/WebApplicationCache.cpp	2016-04-21 22:50:50 UTC (rev 199840)
+++ trunk/Source/WebKit/win/WebApplicationCache.cpp	2016-04-21 23:03:27 UTC (rev 199841)
@@ -63,7 +63,7 @@
     String path = localUserSpecificStorageDirectory();
 
 #if USE(CF)
-    autocacheDirectoryPreference = adoptCF(CFPreferencesCopyAppValue(WebKitLocalCacheDefaultsKey, kCFPreferencesCurrentApplication));
+    auto cacheDirectoryPreference = adoptCF(CFPreferencesCopyAppValue(WebKitLocalCacheDefaultsKey, kCFPreferencesCurrentApplication));
     if (cacheDirectoryPreference && CFStringGetTypeID() == CFGetTypeID(cacheDirectoryPreference.get()))
         path = static_cast<CFStringRef>(cacheDirectoryPreference.get());
 #endif
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to