Changeset 179449 in webkit


Ignore:
Timestamp:
Jan 31, 2015 2:54:17 PM (9 years ago)
Author:
Antti Koivisto
Message:

Enable WebKit disk cache on OS X
https://bugs.webkit.org/show_bug.cgi?id=141022

Reviewed by Gavin Barraclough.

Source/WebKit2:

  • config.h: Flip the switch.

LayoutTests:

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r179439 r179449  
     12015-01-31  Antti Koivisto  <antti@apple.com>
     2
     3        Enable WebKit disk cache on OS X
     4        https://bugs.webkit.org/show_bug.cgi?id=141022
     5
     6        Reviewed by Gavin Barraclough.
     7
     8        * TestExpectations: Enable the test for cache functionality.
     9
    1102015-01-31  Youenn Fablet  <youenn.fablet@crf.canon.fr>
    211
  • trunk/LayoutTests/TestExpectations

    r179439 r179449  
    332332[ Debug ] fast/history/history-back-while-pdf-in-pagecache.html [ Skip ]
    333333webkit.org/b/121628 [ Release ] fast/history/history-back-while-pdf-in-pagecache.html [ Pass ImageOnlyFailure ]
    334 
    335 # Network process disk cache is not enabled yet
    336 webkit.org/b/30322 http/tests/cache/disk-cache-validation.html [ Skip ]
    337334
    338335webkit.org/b/139634 [ Debug ] fast/selectors/matches-backtracking.html [ Slow ]
  • trunk/Source/WebKit2/ChangeLog

    r179448 r179449  
     12015-01-31  Antti Koivisto  <antti@apple.com>
     2
     3        Enable WebKit disk cache on OS X
     4        https://bugs.webkit.org/show_bug.cgi?id=141022
     5
     6        Reviewed by Gavin Barraclough.
     7
     8        * config.h: Flip the switch.
     9
    1102015-01-31  Antti Koivisto  <antti@apple.com>
    211
  • trunk/Source/WebKit2/config.h

    r179448 r179449  
    8383
    8484#ifndef ENABLE_NETWORK_CACHE
    85 #if (PLATFORM(MAC) || PLATFORM(GTK)) && ENABLE(NETWORK_PROCESS)
     85#if ENABLE(NETWORK_PROCESS) && PLATFORM(MAC)
     86#define ENABLE_NETWORK_CACHE 1
     87#else
    8688#define ENABLE_NETWORK_CACHE 0
    8789#endif
Note: See TracChangeset for help on using the changeset viewer.