Commit 27012d72 authored by pam@chromium.org's avatar pam@chromium.org

2009-04-13 Pamela Greene <pam@chromium.org>

        Reviewed by Darin Fisher.

        Fix Chromium (V8) build by renaming methods to match changes
        in http://trac.webkit.org/changeset/42377.

        https://bugs.webkit.org/show_bug.cgi?id=25141

        * bindings/v8/ScheduledAction.cpp:
     (WebCore::ScheduledAction::execute): updateRendering() -> updateStyleIfNeeded()
        * bindings/v8/V8AbstractEventListener.cpp:
        (WebCore::V8AbstractEventListener::handleEvent): updateDocumentsRendering() -> updateStyleForAllDocuments()



git-svn-id: svn://svn.chromium.org/blink/trunk@42444 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 27031b65
2009-04-13 Pamela Greene <pam@chromium.org>
Reviewed by Darin Fisher.
Fix Chromium (V8) build by renaming methods to match changes
in http://trac.webkit.org/changeset/42377.
https://bugs.webkit.org/show_bug.cgi?id=25141
* bindings/v8/ScheduledAction.cpp:
(WebCore::ScheduledAction::execute): updateRendering() -> updateStyleIfNeeded()
* bindings/v8/V8AbstractEventListener.cpp:
(WebCore::V8AbstractEventListener::handleEvent): updateDocumentsRendering() -> updateStyleForAllDocuments()
2009-04-13 Darin Fisher <darin@chromium.org>
Reviewed by Darin Adler.
......@@ -106,7 +106,7 @@ void ScheduledAction::execute(ScriptExecutionContext* context)
proxy->evaluate(m_code, 0);
if (context->isDocument())
static_cast<Document*>(context)->updateRendering();
static_cast<Document*>(context)->updateStyleIfNeeded();
proxy->setTimerCallback(false);
}
......
......@@ -133,7 +133,7 @@ void V8AbstractEventListener::handleEvent(Event* event, bool isWindowEvent)
invokeEventHandler(context, event, jsEvent, isWindowEvent);
Document::updateDocumentsRendering();
Document::updateStyleForAllDocuments();
}
void V8AbstractEventListener::disposeListenerObject()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment