Changeset 195244 in webkit


Ignore:
Timestamp:
Jan 18, 2016 7:28:24 PM (8 years ago)
Author:
eric.carlson@apple.com
Message:

[iOS Simulator WK1] ASSERT loading Blink layout test imported/web-platform-tests/mediacapture-streams/stream-api/mediastream/mediastream-idl.html
https://bugs.webkit.org/show_bug.cgi?id=153070
<rdar://problem/24183105>

Reviewed by Darin Adler.

No new tests, this prevents an existing test from crashing.

  • platform/mock/MockRealtimeVideoSource.cpp:

(WebCore::MockRealtimeVideoSource::MockRealtimeVideoSource): Create the timer with RunLoop::current

instead of RunLoop::main.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r195243 r195244  
     12016-01-18  Eric Carlson  <eric.carlson@apple.com>
     2
     3        [iOS Simulator WK1] ASSERT loading Blink layout test imported/web-platform-tests/mediacapture-streams/stream-api/mediastream/mediastream-idl.html
     4        https://bugs.webkit.org/show_bug.cgi?id=153070
     5        <rdar://problem/24183105>
     6
     7        Reviewed by Darin Adler.
     8
     9        No new tests, this prevents an existing test from crashing.
     10
     11        * platform/mock/MockRealtimeVideoSource.cpp:
     12        (WebCore::MockRealtimeVideoSource::MockRealtimeVideoSource): Create the timer with RunLoop::current
     13          instead of RunLoop::main.
     14
    1152016-01-18  Gyuyoung Kim  <gyuyoung.kim@webkit.org>
    216
  • trunk/Source/WebCore/platform/mock/MockRealtimeVideoSource.cpp

    r193389 r195244  
    5858MockRealtimeVideoSource::MockRealtimeVideoSource()
    5959    : MockRealtimeMediaSource(createCanonicalUUIDString(), RealtimeMediaSource::Video, mockVideoSourceName())
    60     , m_timer(RunLoop::main(), this, &MockRealtimeVideoSource::generateFrame)
     60    , m_timer(RunLoop::current(), this, &MockRealtimeVideoSource::generateFrame)
    6161{
    6262    m_dashWidths.reserveInitialCapacity(2);
Note: See TracChangeset for help on using the changeset viewer.