Changeset 163393 in webkit


Ignore:
Timestamp:
Feb 4, 2014 11:22:15 AM (10 years ago)
Author:
eric.carlson@apple.com
Message:

Fix Release build after r163390.

  • platform/audio/MediaSession.cpp: Add "#if !LOG_DISABLED" around logging-only function.
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r163390 r163393  
     12014-02-04  Eric Carlson  <eric.carlson@apple.com>
     2
     3        Fix Release build after r163390.
     4
     5        * platform/audio/MediaSession.cpp: Add "#if !LOG_DISABLED" around logging-only function.
     6
    172014-02-04  Eric Carlson  <eric.carlson@apple.com>
    28
  • trunk/Source/WebCore/platform/audio/MediaSession.cpp

    r163390 r163393  
    3333namespace WebCore {
    3434
     35#if !LOG_DISABLED
    3536static const char* stateName(MediaSession::State state)
    3637{
     
    4647    return "";
    4748}
    48    
     49#endif
     50
    4951std::unique_ptr<MediaSession> MediaSession::create(MediaSessionClient& client)
    5052{
Note: See TracChangeset for help on using the changeset viewer.