Skip to content

Commit

Permalink
Bug 1711912 - Reorder ClearKeySessionManager include order. r=alwu
Browse files Browse the repository at this point in the history
Fix this up before making further changes in later patches.

Differential Revision: https://phabricator.services.mozilla.com/D122630
  • Loading branch information
Bryce Seager van Dyk committed Aug 18, 2021
1 parent 228fb46 commit 5708578
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions media/gmp-clearkey/0.1/ClearKeySessionManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,23 @@
#ifndef __ClearKeyDecryptor_h__
#define __ClearKeyDecryptor_h__

#include "ClearKeyDecryptionManager.h"
#include "ClearKeyPersistence.h"
#include "ClearKeySession.h"
#include "ClearKeyUtils.h"
// This include is required in order for content_decryption_module to work
// on Unix systems.
#include "stddef.h"
#include "content_decryption_module.h"
#include "RefCounted.h"
#include <stddef.h>

#include <functional>
#include <map>
#include <queue>
#include <set>
#include <string>

#include "ClearKeyDecryptionManager.h"
#include "ClearKeyPersistence.h"
#include "ClearKeySession.h"
#include "ClearKeyUtils.h"
#include "RefCounted.h"
#include "content_decryption_module.h"

class ClearKeySessionManager final : public RefCounted {
public:
explicit ClearKeySessionManager(cdm::Host_10* aHost);
Expand Down

0 comments on commit 5708578

Please sign in to comment.