Changeset 166254 in webkit


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

Further unreviewed build fix after r166247. Add DisplaySleepDisabler to the windows project file and
move the definition of DisplaySleepDisabler's constructor and destructor into the cpp file.

  • WebCore.vcxproj/WebCore.vcxproj:
  • platform/DisplaySleepDisabler.cpp:

(WebCore::DisplaySleepDisabler::DisplaySleepDisabler):
(WebCore::DisplaySleepDisabler::~DisplaySleepDisabler):

  • platform/DisplaySleepDisabler.h:
Location:
trunk/Source/WebCore
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r166252 r166254  
     12014-03-25  Jer Noble  <jer.noble@apple.com>
     2
     3        Further unreviewed build fix after r166247. Add DisplaySleepDisabler to the windows project file and
     4        move the definition of DisplaySleepDisabler's constructor and destructor into the cpp file.
     5
     6        * WebCore.vcxproj/WebCore.vcxproj:
     7        * platform/DisplaySleepDisabler.cpp:
     8        (WebCore::DisplaySleepDisabler::DisplaySleepDisabler):
     9        (WebCore::DisplaySleepDisabler::~DisplaySleepDisabler):
     10        * platform/DisplaySleepDisabler.h:
     11
    1122014-03-25  Jer Noble  <jer.noble@apple.com>
    213
  • trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj

    r166221 r166254  
    71917191    <ClCompile Include="..\platform\DateComponents.cpp" />
    71927192    <ClCompile Include="..\platform\Decimal.cpp" />
     7193    <ClCompile Include="..\platform\DisplaySleepDisabler.cpp" />
    71937194    <ClCompile Include="..\platform\DragData.cpp" />
    71947195    <ClCompile Include="..\platform\DragImage.cpp" />
     
    1909019091    <ClInclude Include="..\platform\DateComponents.h" />
    1909119092    <ClInclude Include="..\platform\Decimal.h" />
     19093    <ClInclude Include="..\platform\DisplaySleepDisabler.h" />
    1909219094    <ClInclude Include="..\platform\DragData.h" />
    1909319095    <ClInclude Include="..\platform\DragImage.h" />
  • trunk/Source/WebCore/html/HTMLMediaElement.cpp

    r166250 r166254  
    3939#include "ContentType.h"
    4040#include "DiagnosticLoggingKeys.h"
     41#include "DisplaySleepDisabler.h"
    4142#include "DocumentLoader.h"
    4243#include "ElementIterator.h"
     
    111112#if ENABLE(IOS_AIRPLAY)
    112113#include "WebKitPlaybackTargetAvailabilityEvent.h"
    113 #endif
    114 
    115 #if PLATFORM(COCOA)
    116 #include "DisplaySleepDisabler.h"
    117114#endif
    118115
  • trunk/Source/WebCore/platform/DisplaySleepDisabler.cpp

    r166247 r166254  
    3636#endif // !PLATFORM(COCOA)
    3737
     38DisplaySleepDisabler::DisplaySleepDisabler(const char*)
     39{
    3840}
     41
     42DisplaySleepDisabler::~DisplaySleepDisabler()
     43{
     44}
     45
     46}
  • trunk/Source/WebCore/platform/DisplaySleepDisabler.h

    r166247 r166254  
    3232public:
    3333    static std::unique_ptr<DisplaySleepDisabler> create(const char*);
    34     virtual ~DisplaySleepDisabler() { }
     34    virtual ~DisplaySleepDisabler();
    3535
    3636protected:
    37     DisplaySleepDisabler(const char*) { }
     37    DisplaySleepDisabler(const char*);
    3838};
    3939
Note: See TracChangeset for help on using the changeset viewer.