Changeset 230625 in webkit
- Timestamp:
- Apr 13, 2018, 1:50:42 AM (8 years ago)
- Location:
- trunk/Source
- Files:
-
- 40 edited
- 2 moved
-
WebCore/ChangeLog (modified) (1 diff)
-
WebCore/Modules/webaudio/AudioContext.cpp (modified) (1 diff)
-
WebCore/platform/GStreamer.cmake (modified) (1 diff)
-
WebCore/platform/audio/gstreamer/WebKitWebAudioSourceGStreamer.cpp (modified) (1 diff)
-
WebCore/platform/graphics/gstreamer/AudioTrackPrivateGStreamer.h (modified) (1 diff)
-
WebCore/platform/graphics/gstreamer/GStreamerCommon.cpp (moved) (moved from trunk/Source/WebCore/platform/graphics/gstreamer/GStreamerUtilities.cpp ) (1 diff)
-
WebCore/platform/graphics/gstreamer/GStreamerCommon.h (moved) (moved from trunk/Source/WebCore/platform/graphics/gstreamer/GStreamerUtilities.h ) (1 diff)
-
WebCore/platform/graphics/gstreamer/ImageGStreamer.h (modified) (1 diff)
-
WebCore/platform/graphics/gstreamer/ImageGStreamerCairo.cpp (modified) (1 diff)
-
WebCore/platform/graphics/gstreamer/InbandTextTrackPrivateGStreamer.cpp (modified) (1 diff)
-
WebCore/platform/graphics/gstreamer/InbandTextTrackPrivateGStreamer.h (modified) (1 diff)
-
WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp (modified) (1 diff)
-
WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.h (modified) (1 diff)
-
WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp (modified) (1 diff)
-
WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.h (modified) (1 diff)
-
WebCore/platform/graphics/gstreamer/MediaSampleGStreamer.cpp (modified) (1 diff)
-
WebCore/platform/graphics/gstreamer/MediaSampleGStreamer.h (modified) (1 diff)
-
WebCore/platform/graphics/gstreamer/TextCombinerGStreamer.cpp (modified) (1 diff)
-
WebCore/platform/graphics/gstreamer/TrackPrivateBaseGStreamer.cpp (modified) (1 diff)
-
WebCore/platform/graphics/gstreamer/TrackPrivateBaseGStreamer.h (modified) (1 diff)
-
WebCore/platform/graphics/gstreamer/VideoSinkGStreamer.cpp (modified) (1 diff)
-
WebCore/platform/graphics/gstreamer/VideoTrackPrivateGStreamer.h (modified) (1 diff)
-
WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp (modified) (1 diff)
-
WebCore/platform/graphics/gstreamer/eme/GStreamerEMEUtilities.cpp (modified) (1 diff)
-
WebCore/platform/graphics/gstreamer/eme/GStreamerEMEUtilities.h (modified) (1 diff)
-
WebCore/platform/graphics/gstreamer/eme/WebKitClearKeyDecryptorGStreamer.cpp (modified) (1 diff)
-
WebCore/platform/graphics/gstreamer/eme/WebKitCommonEncryptionDecryptorGStreamer.cpp (modified) (1 diff)
-
WebCore/platform/graphics/gstreamer/mse/AppendPipeline.cpp (modified) (1 diff)
-
WebCore/platform/graphics/gstreamer/mse/AppendPipeline.h (modified) (1 diff)
-
WebCore/platform/graphics/gstreamer/mse/GStreamerMediaDescription.cpp (modified) (1 diff)
-
WebCore/platform/graphics/gstreamer/mse/GStreamerMediaDescription.h (modified) (1 diff)
-
WebCore/platform/graphics/gstreamer/mse/MediaPlayerPrivateGStreamerMSE.cpp (modified) (1 diff)
-
WebCore/platform/graphics/gstreamer/mse/MediaPlayerPrivateGStreamerMSE.h (modified) (1 diff)
-
WebCore/platform/graphics/gstreamer/mse/MediaSourceClientGStreamerMSE.h (modified) (1 diff)
-
WebCore/platform/graphics/gstreamer/mse/PlaybackPipeline.cpp (modified) (1 diff)
-
WebCore/platform/graphics/gstreamer/mse/SourceBufferPrivateGStreamer.cpp (modified) (1 diff)
-
WebCore/platform/graphics/gstreamer/mse/WebKitMediaSourceGStreamer.cpp (modified) (1 diff)
-
WebCore/platform/graphics/gstreamer/mse/WebKitMediaSourceGStreamer.h (modified) (1 diff)
-
WebKit/ChangeLog (modified) (1 diff)
-
WebKit/UIProcess/gtk/WebProcessPoolGtk.cpp (modified) (1 diff)
-
WebKit/UIProcess/wpe/WebProcessPoolWPE.cpp (modified) (1 diff)
-
WebKit/WebProcess/soup/WebProcessSoup.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r230620 r230625 1 2018-04-13 Xabier Rodriguez Calvar <calvaris@igalia.com> 2 3 [GStreamer] Convert GStreamerUtilities in GStreamerCommon and include the GStreamer smart pointer traits 4 https://bugs.webkit.org/show_bug.cgi?id=184533 5 6 Reviewed by Philippe Normand. 7 8 Renamed GStreamerUtilities* files into GStreamerCommon* and 9 modified files including them accordingly. Include 10 GRefPtrGStreamer.h and GUniquePtrGStreamer.h in GStreamerCommon.h 11 to avoid problems destroying objects when those files are 12 forgotten to be included. 13 14 * Modules/webaudio/AudioContext.cpp: 15 * platform/GStreamer.cmake: 16 * platform/audio/gstreamer/WebKitWebAudioSourceGStreamer.cpp: 17 * platform/graphics/gstreamer/AudioTrackPrivateGStreamer.h: 18 * platform/graphics/gstreamer/GStreamerCommon.cpp: Renamed from Source/WebCore/platform/graphics/gstreamer/GStreamerUtilities.cpp. 19 * platform/graphics/gstreamer/GStreamerCommon.h: Renamed from Source/WebCore/platform/graphics/gstreamer/GStreamerUtilities.h. 20 * platform/graphics/gstreamer/ImageGStreamer.h: 21 * platform/graphics/gstreamer/ImageGStreamerCairo.cpp: 22 * platform/graphics/gstreamer/InbandTextTrackPrivateGStreamer.cpp: 23 * platform/graphics/gstreamer/InbandTextTrackPrivateGStreamer.h: 24 * platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp: 25 * platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.h: 26 * platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp: 27 * platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.h: 28 * platform/graphics/gstreamer/MediaSampleGStreamer.cpp: 29 * platform/graphics/gstreamer/MediaSampleGStreamer.h: 30 * platform/graphics/gstreamer/TextCombinerGStreamer.cpp: 31 * platform/graphics/gstreamer/TrackPrivateBaseGStreamer.cpp: 32 * platform/graphics/gstreamer/TrackPrivateBaseGStreamer.h: 33 * platform/graphics/gstreamer/VideoSinkGStreamer.cpp: 34 * platform/graphics/gstreamer/VideoTrackPrivateGStreamer.h: 35 * platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp: 36 * platform/graphics/gstreamer/eme/GStreamerEMEUtilities.cpp: 37 * platform/graphics/gstreamer/eme/GStreamerEMEUtilities.h: 38 * platform/graphics/gstreamer/eme/WebKitClearKeyDecryptorGStreamer.cpp: 39 * platform/graphics/gstreamer/eme/WebKitCommonEncryptionDecryptorGStreamer.cpp: 40 * platform/graphics/gstreamer/mse/AppendPipeline.cpp: 41 * platform/graphics/gstreamer/mse/AppendPipeline.h: 42 * platform/graphics/gstreamer/mse/GStreamerMediaDescription.cpp: 43 * platform/graphics/gstreamer/mse/GStreamerMediaDescription.h: 44 * platform/graphics/gstreamer/mse/MediaPlayerPrivateGStreamerMSE.cpp: 45 * platform/graphics/gstreamer/mse/MediaPlayerPrivateGStreamerMSE.h: 46 * platform/graphics/gstreamer/mse/MediaSourceClientGStreamerMSE.h: 47 * platform/graphics/gstreamer/mse/PlaybackPipeline.cpp: 48 * platform/graphics/gstreamer/mse/SourceBufferPrivateGStreamer.cpp: 49 * platform/graphics/gstreamer/mse/WebKitMediaSourceGStreamer.cpp: 50 * platform/graphics/gstreamer/mse/WebKitMediaSourceGStreamer.h: 51 1 52 2018-04-12 Christopher Reid <chris.reid@sony.com> 2 53 -
trunk/Source/WebCore/Modules/webaudio/AudioContext.cpp
r230158 r230625 86 86 87 87 #if USE(GSTREAMER) 88 #include "GStreamer Utilities.h"88 #include "GStreamerCommon.h" 89 89 #endif 90 90 -
trunk/Source/WebCore/platform/GStreamer.cmake
r228451 r230625 9 9 platform/graphics/gstreamer/AudioTrackPrivateGStreamer.cpp 10 10 platform/graphics/gstreamer/GRefPtrGStreamer.cpp 11 platform/graphics/gstreamer/GStreamer Utilities.cpp11 platform/graphics/gstreamer/GStreamerCommon.cpp 12 12 platform/graphics/gstreamer/GstAllocatorFastMalloc.cpp 13 13 platform/graphics/gstreamer/InbandTextTrackPrivateGStreamer.cpp -
trunk/Source/WebCore/platform/audio/gstreamer/WebKitWebAudioSourceGStreamer.cpp
r228265 r230625 26 26 #include "AudioBus.h" 27 27 #include "AudioIOCallback.h" 28 #include "GRefPtrGStreamer.h" 29 #include "GStreamerUtilities.h" 28 #include "GStreamerCommon.h" 30 29 #include <gst/app/gstappsrc.h> 31 30 #include <gst/audio/audio-info.h> -
trunk/Source/WebCore/platform/graphics/gstreamer/AudioTrackPrivateGStreamer.h
r230540 r230625 29 29 30 30 #include "AudioTrackPrivate.h" 31 #include "G RefPtrGStreamer.h"31 #include "GStreamerCommon.h" 32 32 #include "TrackPrivateBaseGStreamer.h" 33 33 #include <gst/gst.h> -
trunk/Source/WebCore/platform/graphics/gstreamer/GStreamerCommon.cpp
r230624 r230625 20 20 21 21 #include "config.h" 22 #include "GStreamerCommon.h" 22 23 23 24 #if USE(GSTREAMER) 24 #include "GStreamerUtilities.h" 25 26 #include "GRefPtrGStreamer.h" 25 27 26 #include "GstAllocatorFastMalloc.h" 28 27 #include "IntSize.h" -
trunk/Source/WebCore/platform/graphics/gstreamer/GStreamerCommon.h
r230624 r230625 20 20 #pragma once 21 21 22 23 22 #if USE(GSTREAMER) 24 23 #include "FloatSize.h" 24 #include "GRefPtrGStreamer.h" 25 #include "GUniquePtrGStreamer.h" 25 26 #include <gst/gst.h> 26 27 #include <gst/video/video-format.h> -
trunk/Source/WebCore/platform/graphics/gstreamer/ImageGStreamer.h
r216702 r230625 25 25 #include "BitmapImage.h" 26 26 #include "FloatRect.h" 27 #include "G RefPtrGStreamer.h"27 #include "GStreamerCommon.h" 28 28 29 29 #include <gst/gst.h> -
trunk/Source/WebCore/platform/graphics/gstreamer/ImageGStreamerCairo.cpp
r223476 r230625 23 23 #if ENABLE(VIDEO) && USE(GSTREAMER) 24 24 25 #include "GStreamer Utilities.h"25 #include "GStreamerCommon.h" 26 26 27 27 #include <cairo.h> -
trunk/Source/WebCore/platform/graphics/gstreamer/InbandTextTrackPrivateGStreamer.cpp
r230540 r230625 30 30 #include "InbandTextTrackPrivateGStreamer.h" 31 31 32 #include "GStreamer Utilities.h"32 #include "GStreamerCommon.h" 33 33 #include "Logging.h" 34 34 #include <glib-object.h> -
trunk/Source/WebCore/platform/graphics/gstreamer/InbandTextTrackPrivateGStreamer.h
r230540 r230625 28 28 #if ENABLE(VIDEO) && USE(GSTREAMER) && ENABLE(VIDEO_TRACK) 29 29 30 #include "G RefPtrGStreamer.h"30 #include "GStreamerCommon.h" 31 31 #include "InbandTextTrackPrivate.h" 32 32 #include "TrackPrivateBaseGStreamer.h" -
trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp
r230563 r230625 30 30 31 31 #include "FileSystem.h" 32 #include "GStreamer Utilities.h"32 #include "GStreamerCommon.h" 33 33 #include "HTTPHeaderNames.h" 34 34 #include "MIMETypeRegistry.h" -
trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.h
r230540 r230625 27 27 #if ENABLE(VIDEO) && USE(GSTREAMER) 28 28 29 #include "G RefPtrGStreamer.h"29 #include "GStreamerCommon.h" 30 30 #include "MediaPlayerPrivateGStreamerBase.h" 31 31 -
trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp
r230147 r230625 28 28 #if ENABLE(VIDEO) && USE(GSTREAMER) 29 29 30 #include "GStreamer Utilities.h"30 #include "GStreamerCommon.h" 31 31 #include "GraphicsContext.h" 32 32 #include "ImageGStreamer.h" -
trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.h
r230540 r230625 26 26 #if ENABLE(VIDEO) && USE(GSTREAMER) 27 27 28 #include "G RefPtrGStreamer.h"28 #include "GStreamerCommon.h" 29 29 #include "MainThreadNotifier.h" 30 30 #include "MediaPlayerPrivate.h" -
trunk/Source/WebCore/platform/graphics/gstreamer/MediaSampleGStreamer.cpp
r228418 r230625 22 22 #include "MediaSampleGStreamer.h" 23 23 24 #include "GStreamer Utilities.h"24 #include "GStreamerCommon.h" 25 25 26 26 #if ENABLE(VIDEO) && USE(GSTREAMER) -
trunk/Source/WebCore/platform/graphics/gstreamer/MediaSampleGStreamer.h
r228418 r230625 24 24 25 25 #include "FloatSize.h" 26 #include "G RefPtrGStreamer.h"26 #include "GStreamerCommon.h" 27 27 #include "MediaSample.h" 28 28 #include <wtf/text/AtomicString.h> -
trunk/Source/WebCore/platform/graphics/gstreamer/TextCombinerGStreamer.cpp
r225473 r230625 29 29 #if ENABLE(VIDEO) && USE(GSTREAMER) && ENABLE(VIDEO_TRACK) 30 30 31 #include "G RefPtrGStreamer.h"31 #include "GStreamerCommon.h" 32 32 33 33 static GstStaticPadTemplate sinkTemplate = -
trunk/Source/WebCore/platform/graphics/gstreamer/TrackPrivateBaseGStreamer.cpp
r230540 r230625 30 30 #include "TrackPrivateBaseGStreamer.h" 31 31 32 #include "GStreamer Utilities.h"32 #include "GStreamerCommon.h" 33 33 #include "Logging.h" 34 34 #include "TrackPrivateBase.h" -
trunk/Source/WebCore/platform/graphics/gstreamer/TrackPrivateBaseGStreamer.h
r230540 r230625 28 28 #if ENABLE(VIDEO) && USE(GSTREAMER) && ENABLE(VIDEO_TRACK) 29 29 30 #include "G RefPtrGStreamer.h"30 #include "GStreamerCommon.h" 31 31 #include "MainThreadNotifier.h" 32 32 #include <gst/gst.h> -
trunk/Source/WebCore/platform/graphics/gstreamer/VideoSinkGStreamer.cpp
r217976 r230625 31 31 32 32 #if ENABLE(VIDEO) && USE(GSTREAMER) 33 #include "GRefPtrGStreamer.h" 34 #include "GStreamerUtilities.h" 33 #include "GStreamerCommon.h" 35 34 #include "IntSize.h" 36 35 #include <glib.h> -
trunk/Source/WebCore/platform/graphics/gstreamer/VideoTrackPrivateGStreamer.h
r230540 r230625 28 28 #if ENABLE(VIDEO) && USE(GSTREAMER) && ENABLE(VIDEO_TRACK) 29 29 30 #include "G RefPtrGStreamer.h"30 #include "GStreamerCommon.h" 31 31 #include "TrackPrivateBaseGStreamer.h" 32 32 #include "VideoTrackPrivate.h" -
trunk/Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp
r228945 r230625 23 23 #if ENABLE(VIDEO) && USE(GSTREAMER) 24 24 25 #include "GRefPtrGStreamer.h" 26 #include "GStreamerUtilities.h" 27 #include "GUniquePtrGStreamer.h" 25 #include "GStreamerCommon.h" 28 26 #include "HTTPHeaderNames.h" 29 27 #include "MainThreadNotifier.h" -
trunk/Source/WebCore/platform/graphics/gstreamer/eme/GStreamerEMEUtilities.cpp
r221780 r230625 22 22 #include "config.h" 23 23 #include "GStreamerEMEUtilities.h" 24 25 #include "GRefPtrGStreamer.h"26 24 27 25 #if ENABLE(ENCRYPTED_MEDIA) && USE(GSTREAMER) -
trunk/Source/WebCore/platform/graphics/gstreamer/eme/GStreamerEMEUtilities.h
r225164 r230625 24 24 #if ENABLE(ENCRYPTED_MEDIA) && USE(GSTREAMER) 25 25 26 #include "GStreamerCommon.h" 26 27 #include <gst/gst.h> 27 28 #include <wtf/text/WTFString.h> -
trunk/Source/WebCore/platform/graphics/gstreamer/eme/WebKitClearKeyDecryptorGStreamer.cpp
r227067 r230625 25 25 #if ENABLE(ENCRYPTED_MEDIA) && USE(GSTREAMER) 26 26 27 #include "GRefPtrGStreamer.h"28 27 #include "GStreamerEMEUtilities.h" 29 28 #include <gcrypt.h> -
trunk/Source/WebCore/platform/graphics/gstreamer/eme/WebKitCommonEncryptionDecryptorGStreamer.cpp
r220861 r230625 26 26 #if ENABLE(ENCRYPTED_MEDIA) && USE(GSTREAMER) 27 27 28 #include "GRefPtrGStreamer.h" 29 #include "GUniquePtrGStreamer.h" 28 #include "GStreamerCommon.h" 30 29 #include <wtf/Condition.h> 31 30 #include <wtf/RunLoop.h> -
trunk/Source/WebCore/platform/graphics/gstreamer/mse/AppendPipeline.cpp
r228617 r230625 25 25 26 26 #include "AudioTrackPrivateGStreamer.h" 27 #include "G RefPtrGStreamer.h"27 #include "GStreamerCommon.h" 28 28 #include "GStreamerEMEUtilities.h" 29 29 #include "GStreamerMediaDescription.h" 30 #include "GStreamerUtilities.h"31 30 #include "MediaSampleGStreamer.h" 32 31 #include "InbandTextTrackPrivateGStreamer.h" -
trunk/Source/WebCore/platform/graphics/gstreamer/mse/AppendPipeline.h
r223505 r230625 23 23 #if ENABLE(VIDEO) && USE(GSTREAMER) && ENABLE(MEDIA_SOURCE) 24 24 25 #include "GRefPtrGStreamer.h" 26 #include "GUniquePtrGStreamer.h" 25 #include "GStreamerCommon.h" 27 26 #include "MediaPlayerPrivateGStreamerMSE.h" 28 27 #include "MediaSourceClientGStreamerMSE.h" -
trunk/Source/WebCore/platform/graphics/gstreamer/mse/GStreamerMediaDescription.cpp
r228316 r230625 21 21 #include "config.h" 22 22 #include "GStreamerMediaDescription.h" 23 #include "GStreamerUtilities.h" 24 #include "GUniquePtrGStreamer.h" 23 #include "GStreamerCommon.h" 25 24 26 25 #include <gst/pbutils/pbutils.h> -
trunk/Source/WebCore/platform/graphics/gstreamer/mse/GStreamerMediaDescription.h
r228316 r230625 23 23 #if ENABLE(VIDEO) && USE(GSTREAMER) && ENABLE(MEDIA_SOURCE) 24 24 25 #include "G RefPtrGStreamer.h"25 #include "GStreamerCommon.h" 26 26 #include "MediaDescription.h" 27 27 -
trunk/Source/WebCore/platform/graphics/gstreamer/mse/MediaPlayerPrivateGStreamerMSE.cpp
r228818 r230625 31 31 #include "AppendPipeline.h" 32 32 #include "AudioTrackPrivateGStreamer.h" 33 #include "GStreamer Utilities.h"33 #include "GStreamerCommon.h" 34 34 #include "InbandTextTrackPrivateGStreamer.h" 35 35 #include "MIMETypeRegistry.h" -
trunk/Source/WebCore/platform/graphics/gstreamer/mse/MediaPlayerPrivateGStreamerMSE.h
r228617 r230625 27 27 #if ENABLE(VIDEO) && USE(GSTREAMER) && ENABLE(MEDIA_SOURCE) 28 28 29 #include "G RefPtrGStreamer.h"29 #include "GStreamerCommon.h" 30 30 #include "MediaPlayerPrivateGStreamer.h" 31 31 #include "MediaSample.h" -
trunk/Source/WebCore/platform/graphics/gstreamer/mse/MediaSourceClientGStreamerMSE.h
r223596 r230625 23 23 #if ENABLE(VIDEO) && USE(GSTREAMER) && ENABLE(MEDIA_SOURCE) 24 24 25 #include "G RefPtrGStreamer.h"25 #include "GStreamerCommon.h" 26 26 #include "MediaSourcePrivate.h" 27 27 #include "MediaSourcePrivateClient.h" -
trunk/Source/WebCore/platform/graphics/gstreamer/mse/PlaybackPipeline.cpp
r230147 r230625 26 26 27 27 #include "AudioTrackPrivateGStreamer.h" 28 #include "GStreamerCommon.h" 28 29 #include "MediaSampleGStreamer.h" 29 #include "GStreamerUtilities.h"30 #include "GUniquePtrGStreamer.h"31 30 #include "MediaSample.h" 32 31 #include "SourceBufferPrivateGStreamer.h" -
trunk/Source/WebCore/platform/graphics/gstreamer/mse/SourceBufferPrivateGStreamer.cpp
r223596 r230625 39 39 40 40 #include "ContentType.h" 41 #include "GStreamer Utilities.h"41 #include "GStreamerCommon.h" 42 42 #include "MediaPlayerPrivateGStreamerMSE.h" 43 43 #include "MediaSample.h" -
trunk/Source/WebCore/platform/graphics/gstreamer/mse/WebKitMediaSourceGStreamer.cpp
r230147 r230625 30 30 31 31 #include "AudioTrackPrivateGStreamer.h" 32 #include "GStreamer Utilities.h"32 #include "GStreamerCommon.h" 33 33 #include "MediaDescription.h" 34 34 #include "MediaPlayerPrivateGStreamerMSE.h" -
trunk/Source/WebCore/platform/graphics/gstreamer/mse/WebKitMediaSourceGStreamer.h
r207883 r230625 26 26 #if ENABLE(VIDEO) && ENABLE(MEDIA_SOURCE) && USE(GSTREAMER) 27 27 28 #include "G RefPtrGStreamer.h"28 #include "GStreamerCommon.h" 29 29 #include "MediaPlayer.h" 30 30 #include "MediaSource.h" -
trunk/Source/WebKit/ChangeLog
r230609 r230625 1 2018-04-13 Xabier Rodriguez Calvar <calvaris@igalia.com> 2 3 [GStreamer] Convert GStreamerUtilities in GStreamerCommon and include the GStreamer smart pointer traits 4 https://bugs.webkit.org/show_bug.cgi?id=184533 5 6 Reviewed by Philippe Normand. 7 8 Renamed GStreamerUtilities* files into GStreamerCommon* and 9 modified files including them accordingly. Include 10 GRefPtrGStreamer.h and GUniquePtrGStreamer.h in GStreamerCommon.h 11 to avoid problems destroying objects when those files are 12 forgotten to be included. 13 14 * UIProcess/gtk/WebProcessPoolGtk.cpp: 15 * UIProcess/wpe/WebProcessPoolWPE.cpp: 16 * WebProcess/soup/WebProcessSoup.cpp: 17 1 18 2018-04-12 Beth Dakin <bdakin@apple.com> 2 19 -
trunk/Source/WebKit/UIProcess/gtk/WebProcessPoolGtk.cpp
r230559 r230625 36 36 #include <JavaScriptCore/RemoteInspectorServer.h> 37 37 #include <WebCore/FileSystem.h> 38 #include <WebCore/GStreamer Utilities.h>38 #include <WebCore/GStreamerCommon.h> 39 39 #include <WebCore/NotImplemented.h> 40 40 #include <WebCore/SchemeRegistry.h> -
trunk/Source/WebKit/UIProcess/wpe/WebProcessPoolWPE.cpp
r228946 r230625 37 37 #include <JavaScriptCore/RemoteInspectorServer.h> 38 38 #include <WebCore/FileSystem.h> 39 #include <WebCore/GStreamer Utilities.h>39 #include <WebCore/GStreamerCommon.h> 40 40 #include <WebCore/NotImplemented.h> 41 41 #include <WebCore/SchemeRegistry.h> -
trunk/Source/WebKit/WebProcess/soup/WebProcessSoup.cpp
r228946 r230625 29 29 30 30 #include "WebProcessCreationParameters.h" 31 #include <WebCore/GStreamer Utilities.h>31 #include <WebCore/GStreamerCommon.h> 32 32 #include <WebCore/MemoryCache.h> 33 33 #include <WebCore/NetworkStorageSession.h>
Note:
See TracChangeset
for help on using the changeset viewer.