Changeset 166252 in webkit


Ignore:
Timestamp:
Mar 25, 2014 2:07:32 PM (10 years ago)
Author:
jer.noble@apple.com
Message:

Unreviewed build fix after r166247. Un-platform-protect the declaration of HTMLMediaElement::shouldDisableSleep()
and make WebVideoFullscreenController's _displaySleepDisabler a std::unique_ptr.

  • html/HTMLMediaElement.h:
  • platform/mac/WebVideoFullscreenController.h:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r166250 r166252  
     12014-03-25  Jer Noble  <jer.noble@apple.com>
     2
     3        Unreviewed build fix after r166247. Un-platform-protect the declaration of HTMLMediaElement::shouldDisableSleep()
     4        and make WebVideoFullscreenController's _displaySleepDisabler a std::unique_ptr.
     5
     6        * html/HTMLMediaElement.h:
     7        * platform/mac/WebVideoFullscreenController.h:
     8
    192014-03-25  Brent Fulgham  <bfulgham@apple.com>
    210
  • trunk/Source/WebCore/html/HTMLMediaElement.h

    r166250 r166252  
    687687
    688688    void updateSleepDisabling();
    689 #if PLATFORM(COCOA)
    690689    bool shouldDisableSleep() const;
    691 #endif
    692690
    693691#if ENABLE(MEDIA_CONTROLS_SCRIPT)
  • trunk/Source/WebCore/platform/mac/WebVideoFullscreenController.h

    r151608 r166252  
    5454    BOOL _forceDisableAnimation;
    5555
    56     OwnPtr<WebCore::DisplaySleepDisabler> _displaySleepDisabler;
     56    std::unique_ptr<WebCore::DisplaySleepDisabler> _displaySleepDisabler;
    5757}
    5858
Note: See TracChangeset for help on using the changeset viewer.