Changeset 80769 in webkit


Ignore:
Timestamp:
Mar 10, 2011 3:10:58 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-03-10 Stanislav Paltis <Stanislav.Paltis@nokia.com>

Reviewed by Laszlo Gombos.

[Qt] MemoryCache deadDecodedDataDeletionInterval is not exposed for client's usage
https://bugs.webkit.org/show_bug.cgi?id=55945

Added handling of dynamic/runtime property _q_deadDecodedDataDeletionInterval to
set interval used to trigger when decoded data in dead list of object cache will
be purged from object cache.

  • Api/qwebpage.cpp: (QWebPagePrivate::dynamicPropertyChangeEvent):
Location:
trunk/Source/WebKit/qt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/qt/Api/qwebpage.cpp

    r80688 r80769  
    12231223        InspectorServerQt* inspectorServer = InspectorServerQt::server();
    12241224        inspectorServer->listen(inspectorServerPort());
     1225    } else if (event->propertyName() == "_q_deadDecodedDataDeletionInterval") {
     1226        double interval = q->property("_q_deadDecodedDataDeletionInterval").toDouble();
     1227        memoryCache()->setDeadDecodedDataDeletionInterval(interval);
    12251228    }
    12261229}
  • trunk/Source/WebKit/qt/ChangeLog

    r80768 r80769  
     12011-03-10  Stanislav Paltis  <Stanislav.Paltis@nokia.com>
     2
     3        Reviewed by Laszlo Gombos.
     4
     5        [Qt] MemoryCache deadDecodedDataDeletionInterval is not exposed for client's usage
     6        https://bugs.webkit.org/show_bug.cgi?id=55945
     7       
     8        Added handling of dynamic/runtime property _q_deadDecodedDataDeletionInterval to
     9        set interval used to trigger when decoded data in dead list of object cache will
     10        be purged from object cache.
     11
     12        * Api/qwebpage.cpp:
     13        (QWebPagePrivate::dynamicPropertyChangeEvent):
     14
    1152011-03-10  Caio Marcelo de Oliveira Filho  <caio.oliveira@openbossa.org>
    216
Note: See TracChangeset for help on using the changeset viewer.