Changeset 201526 in webkit
- Timestamp:
- May 31, 2016, 2:44:18 PM (10 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r201524 r201526 1 2016-05-31 Jer Noble <jer.noble@apple.com> 2 3 Unreviewed build fix; use ASSERT_UNUSED rather than ASSERT to fix release builds. 4 5 * platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm: 6 (WebCore::MediaPlayerPrivateAVFoundationObjC::removeSession): 7 1 8 2016-05-31 Jer Noble <jer.noble@apple.com> 2 9 -
trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm
r201524 r201526 2588 2588 void MediaPlayerPrivateAVFoundationObjC::removeSession(CDMSession& session) 2589 2589 { 2590 ASSERT (&session == m_session);2590 ASSERT_UNUSED(session, &session == m_session); 2591 2591 m_session = nullptr; 2592 2592 }
Note:
See TracChangeset
for help on using the changeset viewer.