Changeset 107090 in webkit


Ignore:
Timestamp:
Feb 8, 2012 8:02:31 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[Qt][WK2] Compute and set cache capacities using the current CacheModel
https://bugs.webkit.org/show_bug.cgi?id=73918

Patch by Michael Brüning <michael.bruning@nokia.com> on 2012-02-08
Reviewed by Kenneth Rohde Christiansen.

Source/WebKit2:

  • UIProcess/WebContext.cpp:

(WebKit::WebContext::WebContext): Set default cacheModel for Qt platform to
CacheModelPrimaryWebBrowser.

LayoutTests:

  • platform/qt-wk2/Skipped: Unskip tests skipped for regression from r106920.
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r107084 r107090  
     12012-02-08  Michael Brüning  <michael.bruning@nokia.com>
     2
     3        [Qt][WK2] Compute and set cache capacities using the current CacheModel
     4        https://bugs.webkit.org/show_bug.cgi?id=73918
     5
     6        Reviewed by Kenneth Rohde Christiansen.
     7
     8        * platform/qt-wk2/Skipped: Unskip tests skipped for regression from r106920.
     9
    1102012-02-08  Pavel Podivilov  <podivilov@chromium.org>
    211
  • trunk/LayoutTests/platform/qt-wk2/Skipped

    r106954 r107090  
    423423fast/history/form-submit-in-frame.html
    424424http/tests/loading/state-object-security-exception.html
    425 
    426 # REGRESSION(r106920) - https://bugs.webkit.org/show_bug.cgi?id=73918
    427 canvas/philip/tests/2d.pattern.modify.image1.html
    428 fast/events/pagehide-timeout.html
    429 fast/events/pageshow-pagehide-on-back-cached-with-frames.html
    430 fast/events/pageshow-pagehide-on-back-cached.html
    431 fast/harness/page-cache-crash-on-data-urls.html
    432 fast/harness/use-page-cache.html
    433 http/tests/cache/post-redirect-get.php
    434 http/tests/security/xhr-cors-redirect.html
    435 http/tests/xmlhttprequest/access-control-and-redirects.html
    436 http/tests/xmlhttprequest/xmlhttprequest-unsafe-redirect.html
    437 svg/animations/animate-color-fill-from-by.html
  • trunk/Source/WebKit2/ChangeLog

    r107087 r107090  
     12012-02-08  Michael Brüning  <michael.bruning@nokia.com>
     2
     3        [Qt][WK2] Compute and set cache capacities using the current CacheModel
     4        https://bugs.webkit.org/show_bug.cgi?id=73918
     5
     6        Reviewed by Kenneth Rohde Christiansen.
     7
     8        * UIProcess/WebContext.cpp:
     9        (WebKit::WebContext::WebContext): Set default cacheModel for Qt platform to
     10        CacheModelPrimaryWebBrowser.
     11
    1122012-02-08  Carlos Garcia Campos  <cgarcia@igalia.com>
    213
  • trunk/Source/WebKit2/UIProcess/WebContext.cpp

    r105475 r107090  
    123123    , m_alwaysUsesComplexTextCodePath(false)
    124124    , m_shouldUseFontSmoothing(true)
     125#if PLATFORM(QT)
     126    , m_cacheModel(CacheModelPrimaryWebBrowser)
     127#else
    125128    , m_cacheModel(CacheModelDocumentViewer)
     129#endif
    126130    , m_memorySamplerEnabled(false)
    127131    , m_memorySamplerInterval(1400.0)
Note: See TracChangeset for help on using the changeset viewer.