diff options
Diffstat (limited to 'dom/media/gmp/GMPLoader.h')
-rw-r--r-- | dom/media/gmp/GMPLoader.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/dom/media/gmp/GMPLoader.h b/dom/media/gmp/GMPLoader.h index 5b6030ad7c..91989f9c24 100644 --- a/dom/media/gmp/GMPLoader.h +++ b/dom/media/gmp/GMPLoader.h @@ -33,8 +33,7 @@ public: virtual GMPErr GMPInit(const GMPPlatformAPI* aPlatformAPI) = 0; virtual GMPErr GMPGetAPI(const char* aAPIName, void* aHostAPI, - void** aPluginAPI, - uint32_t aDecryptorId) = 0; + void** aPluginAPI) = 0; virtual void GMPShutdown() = 0; virtual void GMPSetNodeId(const char* aNodeId, uint32_t aLength) = 0; }; @@ -77,8 +76,7 @@ public: // Retrieves an interface pointer from the GMP. virtual GMPErr GetAPI(const char* aAPIName, void* aHostAPI, - void** aPluginAPI, - uint32_t aDecryptorId) = 0; + void** aPluginAPI) = 0; // Calls the GMPShutdown function exported by the GMP lib, and unloads the // plugin library. |