Changeset 109379 in webkit


Ignore:
Timestamp:
Mar 1, 2012 11:36:55 AM (12 years ago)
Author:
Beth Dakin
Message:

Reviewed by Kevin Decker.

Part of https://bugs.webkit.org/show_bug.cgi?id=79705

Here's some of that tweaking promised in the comment. Adjusting
gMaximumUnpaintedAreaRatio down a bit.

  • page/Page.cpp:

(WebCore):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r109378 r109379  
     12012-03-01  Beth Dakin  <bdakin@apple.com>
     2
     3        Reviewed by Kevin Decker.
     4
     5        Part of https://bugs.webkit.org/show_bug.cgi?id=79705
     6
     7        Here's some of that tweaking promised in the comment. Adjusting
     8        gMaximumUnpaintedAreaRatio down a bit.
     9        * page/Page.cpp:
     10        (WebCore):
     11
    1122012-03-01  Levi Weintraub  <leviw@chromium.org>
    213
  • trunk/Source/WebCore/page/Page.cpp

    r109273 r109379  
    10191019// These are magical constants that might be tweaked over time.
    10201020static double gMinimumPaintedAreaRatio = 0.1;
    1021 static double gMaximumUnpaintedAreaRatio = 0.1;
     1021static double gMaximumUnpaintedAreaRatio = 0.04;
    10221022
    10231023void Page::setRelevantRepaintedObjectsCounterThreshold(uint64_t threshold)
Note: See TracChangeset for help on using the changeset viewer.