Changeset 225783 in webkit


Ignore:
Timestamp:
Dec 12, 2017 8:46:09 AM (6 years ago)
Author:
clopez@igalia.com
Message:

[GTK][WebRTC] Stop warning with so much verbosity about not implemented RealtimeMediaSourceCenter
https://bugs.webkit.org/show_bug.cgi?id=180694

Reviewed by Youenn Fablet.

No new tests -- no change in functionality.

  • platform/mediastream/RealtimeMediaSourceCenter.cpp:

(WebCore::RealtimeMediaSourceCenter::singleton):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r225779 r225783  
     12017-12-12  Carlos Alberto Lopez Perez  <clopez@igalia.com>
     2
     3        [GTK][WebRTC] Stop warning with so much verbosity about not implemented RealtimeMediaSourceCenter
     4        https://bugs.webkit.org/show_bug.cgi?id=180694
     5
     6        Reviewed by Youenn Fablet.
     7
     8        No new tests -- no change in functionality.
     9
     10        * platform/mediastream/RealtimeMediaSourceCenter.cpp:
     11        (WebCore::RealtimeMediaSourceCenter::singleton):
     12
    1132017-12-12  Ms2ger  <Ms2ger@igalia.com>
    214
  • trunk/Source/WebCore/platform/mediastream/RealtimeMediaSourceCenter.cpp

    r225395 r225783  
    6666        return *override;
    6767#if PLATFORM(GTK)
    68     WTFLogAlways("WebKitGTK LIBWEBRTC RealtimeMediaSourceCenter NOT IMPLEMENTED. Returning MockRealtimeMediaSourceCenter instead to avoid crash!\n");
    6968    ASSERT(isMainThread());
     69    notImplemented(); // Return MockRealtimeMediaSourceCenter to avoid crash.
    7070    static NeverDestroyed<MockRealtimeMediaSourceCenter> center;
    7171    return center;
Note: See TracChangeset for help on using the changeset viewer.