diff options
author | Tor Lillqvist <tml@collabora.com> | 2015-12-20 10:41:33 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2015-12-20 10:41:33 +0200 |
commit | ce52f6573b8bbdaa68dbb4e89b08543025ee4ba7 (patch) | |
tree | 42b4bdee776808a0374209af48068a7d0f2eb5fa /avmedia | |
parent | 3de6f9116a71dc16a701cc1e61bc750518faf881 (diff) |
Cosmetic cleanup
Change-Id: I68511f33c13fa8277219a170e10821f9d0ee9ecf
Diffstat (limited to 'avmedia')
-rw-r--r-- | avmedia/source/gstreamer/gstmanager.cxx | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/avmedia/source/gstreamer/gstmanager.cxx b/avmedia/source/gstreamer/gstmanager.cxx index 8b56a507810f..c6fda5eee71e 100644 --- a/avmedia/source/gstreamer/gstmanager.cxx +++ b/avmedia/source/gstreamer/gstmanager.cxx @@ -31,22 +31,15 @@ using namespace ::com::sun::star; namespace avmedia { namespace gstreamer { -// - Manager - - - Manager::Manager( const uno::Reference< lang::XMultiServiceFactory >& rxMgr ) : mxMgr( rxMgr ) { } - - Manager::~Manager() { } - - uno::Reference< media::XPlayer > SAL_CALL Manager::createPlayer( const OUString& rURL ) throw (uno::RuntimeException, std::exception) { @@ -60,24 +53,18 @@ uno::Reference< media::XPlayer > SAL_CALL Manager::createPlayer( const OUString& return xRet; } - - OUString SAL_CALL Manager::getImplementationName( ) throw (uno::RuntimeException, std::exception) { return OUString( AVMEDIA_GST_MANAGER_IMPLEMENTATIONNAME ); } - - sal_Bool SAL_CALL Manager::supportsService( const OUString& ServiceName ) throw (uno::RuntimeException, std::exception) { return cppu::supportsService(this, ServiceName); } - - uno::Sequence< OUString > SAL_CALL Manager::getSupportedServiceNames( ) throw (uno::RuntimeException, std::exception) { |