Changeset 163498 in webkit


Ignore:
Timestamp:
Feb 5, 2014 5:14:42 PM (10 years ago)
Author:
Csaba Osztrogonác
Message:

Fix the !ENABLE(PAGE_VISIBILITY_API) build
https://bugs.webkit.org/show_bug.cgi?id=127907

Reviewed by Brent Fulgham.

  • page/Page.cpp:

(WebCore::Page::setIsVisible):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r163496 r163498  
     12014-02-05  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        Fix the !ENABLE(PAGE_VISIBILITY_API) build
     4        https://bugs.webkit.org/show_bug.cgi?id=127907
     5
     6        Reviewed by Brent Fulgham.
     7
     8        * page/Page.cpp:
     9        (WebCore::Page::setIsVisible):
     10
    1112014-02-05  Oliver Hunt  <oliver@apple.com>
    212
  • trunk/Source/WebCore/page/Page.cpp

    r163079 r163498  
    11721172        unthrottleTimers();
    11731173
     1174#if ENABLE(PAGE_VISIBILITY_API)
    11741175        if (m_settings->hiddenPageCSSAnimationSuspensionEnabled())
    11751176            mainFrame().animation().resumeAnimations();
     1177#endif
    11761178
    11771179        resumeAnimatingImages();
     
    11951197            throttleTimers();
    11961198
     1199#if ENABLE(PAGE_VISIBILITY_API)
    11971200        if (m_settings->hiddenPageCSSAnimationSuspensionEnabled())
    11981201            mainFrame().animation().suspendAnimations();
     1202#endif
    11991203
    12001204        for (Frame* frame = &mainFrame(); frame; frame = frame->tree().traverseNext()) {
Note: See TracChangeset for help on using the changeset viewer.