Changeset 152135 in webkit


Ignore:
Timestamp:
Jun 27, 2013 4:00:42 PM (11 years ago)
Author:
roger_fong@apple.com
Message:

Unreviewed. Temporarily add some stderr output to Media Engine load methods to determine which engine buildbots are using for layout tests.

  • platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.cpp:

(WebCore::MediaPlayerPrivateAVFoundation::load):

  • platform/graphics/win/MediaPlayerPrivateQuickTimeVisualContext.cpp:

(WebCore::MediaPlayerPrivateQuickTimeVisualContext::load):

Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r152134 r152135  
     12013-06-27  Roger Fong  <roger_fong@apple.com>
     2
     3        Unreviewed. Temporarily add some stderr output to Media Engine load methods to determine which engine buildbots are using for layout tests.
     4
     5        * platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.cpp:
     6        (WebCore::MediaPlayerPrivateAVFoundation::load):
     7        * platform/graphics/win/MediaPlayerPrivateQuickTimeVisualContext.cpp:
     8        (WebCore::MediaPlayerPrivateQuickTimeVisualContext::load):
     9
    1102013-06-27  Anders Carlsson  <andersca@apple.com>
    211
  • trunk/Source/WebCore/platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.cpp

    r151609 r152135  
    178178{
    179179    LOG(Media, "MediaPlayerPrivateAVFoundation::load(%p)", this);
    180 
     180    fprintf(stderr, "USING AVCF");
    181181    if (m_networkState != MediaPlayer::Loading) {
    182182        m_networkState = MediaPlayer::Loading;
  • trunk/Source/WebCore/platform/graphics/win/MediaPlayerPrivateQuickTimeVisualContext.cpp

    r152069 r152135  
    341341{
    342342    m_movieURL = url;
    343 
     343    fprintf(stderr, "USING QT");
    344344    if (m_preload == MediaPlayer::None) {
    345345        m_delayingLoad = true;
Note: See TracChangeset for help on using the changeset viewer.