Changeset 101902 in webkit


Ignore:
Timestamp:
Dec 2, 2011 9:26:52 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[Qt] [WK2] MiniBrowser --touch asserts in debug build
https://bugs.webkit.org/show_bug.cgi?id=73697

Patch by Viatcheslav Ostapenko <ostapenko.viatcheslav@nokia.com> on 2011-12-02
Reviewed by Eric Seidel.

Add missing guard to QtViewportInteractionEngine::itemSizeChanged().

  • UIProcess/qt/QtViewportInteractionEngine.cpp:

(WebKit::QtViewportInteractionEngine::itemSizeChanged):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r101875 r101902  
     12011-12-02  Viatcheslav Ostapenko  <ostapenko.viatcheslav@nokia.com>
     2
     3        [Qt] [WK2] MiniBrowser --touch asserts in debug build
     4        https://bugs.webkit.org/show_bug.cgi?id=73697
     5
     6        Reviewed by Eric Seidel.
     7
     8        Add missing guard to QtViewportInteractionEngine::itemSizeChanged().
     9
     10        * UIProcess/qt/QtViewportInteractionEngine.cpp:
     11        (WebKit::QtViewportInteractionEngine::itemSizeChanged):
     12
    1132011-12-02  Fady Samuel  <fsamuel@chromium.org>
    214
  • trunk/Source/WebKit2/UIProcess/qt/QtViewportInteractionEngine.cpp

    r101485 r101902  
    518518        return;
    519519
     520    ViewportUpdateDeferrer guard(this);
    520521    ensureContentWithinViewportBoundary();
    521522}
Note: See TracChangeset for help on using the changeset viewer.