Changeset 228415 in webkit


Ignore:
Timestamp:
Feb 12, 2018 8:44:21 PM (6 years ago)
Author:
Antti Koivisto
Message:

Update NetworkCache::Storage::lastStableVersion after r226349
https://bugs.webkit.org/show_bug.cgi?id=182723
<rdar://problem/37469554>

Reviewed by Ryosuke Niwa.

  • NetworkProcess/cache/NetworkCacheStorage.h:

Allow deleting version 11 caches.

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r228393 r228415  
     12018-02-12  Antti Koivisto  <antti@apple.com>
     2
     3        Update NetworkCache::Storage::lastStableVersion after r226349
     4        https://bugs.webkit.org/show_bug.cgi?id=182723
     5        <rdar://problem/37469554>
     6       
     7        Reviewed by Ryosuke Niwa.
     8
     9        * NetworkProcess/cache/NetworkCacheStorage.h:
     10
     11        Allow deleting version 11 caches.
     12
    1132018-02-12  Wenson Hsieh  <wenson_hsieh@apple.com>
    214
  • trunk/Source/WebKit/NetworkProcess/cache/NetworkCacheStorage.h

    r226349 r228415  
    8888    size_t approximateSize() const;
    8989
     90    // Incrementing this number will delete all existing cache content for everyone. Do you really need to do it?
    9091    static const unsigned version = 12;
    9192#if PLATFORM(MAC)
    9293    /// Allow the last stable version of the cache to co-exist with the latest development one.
    93     static const unsigned lastStableVersion = 11;
     94    static const unsigned lastStableVersion = 12;
    9495#endif
    9596
Note: See TracChangeset for help on using the changeset viewer.