Changeset 52291 in webkit


Ignore:
Timestamp:
Dec 17, 2009 2:14:38 PM (14 years ago)
Author:
eric@webkit.org
Message:

2009-12-17 Alexander Pavlov <apavlov@chromium.org>

Reviewed by Eric Seidel.

Disable memory cache client calls so that a new identifier isn't created
for the same resource on reload.

With the calls enabled, duplicate entries for cached resources are created
in the Web Inspector. Safari for Windows disables the calls near the point of the
Frame instance creation, and we just follow this for Chromium.
https://bugs.webkit.org/show_bug.cgi?id=32618

  • src/WebViewImpl.cpp: (WebKit::WebViewImpl::WebViewImpl):
Location:
trunk/WebKit/chromium
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/chromium/ChangeLog

    r52268 r52291  
     12009-12-17  Alexander Pavlov  <apavlov@chromium.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Disable memory cache client calls so that a new identifier isn't created
     6        for the same resource on reload.
     7
     8        With the calls enabled, duplicate entries for cached resources are created
     9        in the Web Inspector. Safari for Windows disables the calls near the point of the
     10        Frame instance creation, and we just follow this for Chromium.
     11        https://bugs.webkit.org/show_bug.cgi?id=32618
     12
     13        * src/WebViewImpl.cpp:
     14        (WebKit::WebViewImpl::WebViewImpl):
     15
    1162009-12-17  Yaar Schnitman  <yaar@chromium.org>
    217
  • trunk/WebKit/chromium/src/WebViewImpl.cpp

    r52124 r52291  
    235235    m_page->backForwardList()->setClient(&m_backForwardListClientImpl);
    236236    m_page->setGroupName(pageGroupName);
     237    m_page->setMemoryCacheClientCallsEnabled(false);
    237238}
    238239
Note: See TracChangeset for help on using the changeset viewer.