Changeset 152098 in webkit


Ignore:
Timestamp:
Jun 27, 2013 8:11:32 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

Avoid duplicating hostWindow() call in FrameView::setFrameRect()
https://bugs.webkit.org/show_bug.cgi?id=118115

Patch by Seokju Kwon <Seokju Kwon> on 2013-06-27
Reviewed by Christophe Dumez.

Remove a redundant call in FrameView::setFrameRect().

No function change, no tests.

  • page/FrameView.cpp:

(WebCore::FrameView::scheduleAnimation):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r152095 r152098  
     12013-06-27  Seokju Kwon  <seokju.kwon@gmail.com>
     2
     3        Avoid duplicating hostWindow() call in FrameView::setFrameRect()
     4        https://bugs.webkit.org/show_bug.cgi?id=118115
     5
     6        Reviewed by Christophe Dumez.
     7
     8        Remove a redundant call in FrameView::setFrameRect().
     9
     10        No function change, no tests.
     11
     12        * page/FrameView.cpp:
     13        (WebCore::FrameView::scheduleAnimation):
     14
    1152013-06-27  Xabier Rodriguez Calvar  <calvaris@igalia.com>
    216
  • trunk/Source/WebCore/page/FrameView.cpp

    r151934 r152098  
    498498bool FrameView::scheduleAnimation()
    499499{
    500     if (hostWindow()) {
    501         hostWindow()->scheduleAnimation();
     500    if (HostWindow* window = hostWindow()) {
     501        window->scheduleAnimation();
    502502        return true;
    503503    }
Note: See TracChangeset for help on using the changeset viewer.