Changeset 141697 in webkit


Ignore:
Timestamp:
Feb 2, 2013 8:41:07 AM (11 years ago)
Author:
Philippe Normand
Message:

[GStreamer] Media tests fix after r141695.

Rubber-stamped by Martin Robinson.

  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp:

(WebCore::MediaPlayerPrivateGStreamer::setPlaybinURL): Remove
both fragment and query string for file:// uris before loading.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r141696 r141697  
     12013-02-02  Philippe Normand  <pnormand@igalia.com>
     2
     3        [GStreamer] Media tests fix after r141695.
     4
     5        Rubber-stamped by Martin Robinson.
     6
     7        * platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp:
     8        (WebCore::MediaPlayerPrivateGStreamer::setPlaybinURL): Remove
     9        both fragment and query string for file:// uris before loading.
     10
    1112013-02-02  Patrick Gansterer  <paroga@webkit.org>
    212
  • trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp

    r141695 r141697  
    317317{
    318318    // Clean out everything after file:// url path.
    319     if (url.isLocalFile())
     319    if (url.isLocalFile()) {
     320        url.setQuery(String());
    320321        url.removeFragmentIdentifier();
     322    }
    321323
    322324    m_url = url;
Note: See TracChangeset for help on using the changeset viewer.