mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 12:15:51 +00:00
63 lines
1.7 KiB
C++
63 lines
1.7 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef GMPService_h_
|
|
#define GMPService_h_
|
|
|
|
#include "mozIGeckoMediaPluginService.h"
|
|
#include "nsIObserver.h"
|
|
#include "nsTArray.h"
|
|
#include "mozilla/Mutex.h"
|
|
#include "nsString.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "nsIThread.h"
|
|
|
|
class nsIFile;
|
|
template <class> class already_AddRefed;
|
|
|
|
namespace mozilla {
|
|
namespace gmp {
|
|
|
|
class GMPParent;
|
|
|
|
class GeckoMediaPluginService MOZ_FINAL : public mozIGeckoMediaPluginService
|
|
, public nsIObserver
|
|
{
|
|
public:
|
|
static already_AddRefed<GeckoMediaPluginService> GetGeckoMediaPluginService();
|
|
|
|
GeckoMediaPluginService();
|
|
void Init();
|
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
|
NS_DECL_MOZIGECKOMEDIAPLUGINSERVICE
|
|
NS_DECL_NSIOBSERVER
|
|
|
|
private:
|
|
~GeckoMediaPluginService();
|
|
|
|
GMPParent* SelectPluginFromListForAPI(const nsCString& aAPI, const nsCString& aTag);
|
|
GMPParent* SelectPluginForAPI(const nsCString& aAPI, const nsCString& aTag);
|
|
void UnloadPlugins();
|
|
|
|
void RefreshPluginList();
|
|
void ProcessPossiblePlugin(nsIFile* aDir);
|
|
nsresult SearchDirectory(nsIFile* aSearchDir);
|
|
nsresult GetPossiblePlugins(nsTArray<nsCOMPtr<nsIFile>>& aDirs);
|
|
nsresult GetDirectoriesToSearch(nsTArray<nsCOMPtr<nsIFile>>& aDirs);
|
|
|
|
nsTArray<nsRefPtr<GMPParent>> mPlugins;
|
|
Mutex mMutex; // Protects mGMPThread and mShuttingDown
|
|
nsCOMPtr<nsIThread> mGMPThread;
|
|
bool mShuttingDown;
|
|
bool mShuttingDownOnGMPThread;
|
|
nsString mHomePath;
|
|
};
|
|
|
|
} // namespace gmp
|
|
} // namespace mozilla
|
|
|
|
#endif // GMPService_h_
|