Changeset 258538 in webkit


Ignore:
Timestamp:
Mar 16, 2020 9:44:51 PM (4 years ago)
Author:
timothy_horton@apple.com
Message:

Remove a 'using namespace WebCore' in MediaSessionManagerCocoa
https://bugs.webkit.org/show_bug.cgi?id=209162

Reviewed by Simon Fraser.

  • platform/audio/cocoa/MediaSessionManagerCocoa.mm:

Unified source cleanliness. Not currently causing any trouble, but
it did when I changed something locally!

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r258532 r258538  
     12020-03-16  Tim Horton  <timothy_horton@apple.com>
     2
     3        Remove a 'using namespace WebCore' in MediaSessionManagerCocoa
     4        https://bugs.webkit.org/show_bug.cgi?id=209162
     5
     6        Reviewed by Simon Fraser.
     7
     8        * platform/audio/cocoa/MediaSessionManagerCocoa.mm:
     9        Unified source cleanliness. Not currently causing any trouble, but
     10        it did when I changed something locally!
     11
    1122020-03-16  ChangSeok Oh  <changseok@webkit.org>
    213
  • trunk/Source/WebCore/platform/audio/cocoa/MediaSessionManagerCocoa.mm

    r258139 r258538  
    4343#include "MediaRemoteSoftLink.h"
    4444
    45 using namespace WebCore;
    46 
    4745static const size_t kWebAudioBufferSize = 128;
    4846static const size_t kLowPowerVideoBufferSize = 4096;
     47
     48namespace WebCore {
    4949
    5050#if PLATFORM(MAC)
     
    335335}
    336336
    337 #endif // USE(AUDIO_SESSION)
     337} // namespace WebCore
     338
     339#endif // USE(AUDIO_SESSION) && PLATFORM(COCOA)
Note: See TracChangeset for help on using the changeset viewer.