2015-01-20 08:39:00 +03:00
|
|
|
/* -*- 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 GMPUtils_h_
|
|
|
|
#define GMPUtils_h_
|
|
|
|
|
|
|
|
#include "mozilla/UniquePtr.h"
|
2015-08-11 01:27:41 +03:00
|
|
|
#include "nsTArray.h"
|
2015-01-20 08:39:00 +03:00
|
|
|
|
2015-05-29 05:07:22 +03:00
|
|
|
class nsIFile;
|
2015-08-11 01:27:41 +03:00
|
|
|
class nsCString;
|
2015-05-29 05:07:22 +03:00
|
|
|
|
2015-01-20 08:39:00 +03:00
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
struct DestroyPolicy
|
|
|
|
{
|
|
|
|
void operator()(T* aGMPObject) const {
|
|
|
|
aGMPObject->Destroy();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename T>
|
2015-04-17 19:43:18 +03:00
|
|
|
using GMPUniquePtr = mozilla::UniquePtr<T, DestroyPolicy<T>>;
|
2015-01-20 08:39:00 +03:00
|
|
|
|
2015-04-30 12:52:14 +03:00
|
|
|
bool GetEMEVoucherPath(nsIFile** aPath);
|
|
|
|
|
|
|
|
bool EMEVoucherFileExists();
|
|
|
|
|
2015-08-11 01:27:41 +03:00
|
|
|
void
|
|
|
|
SplitAt(const char* aDelims,
|
|
|
|
const nsACString& aInput,
|
|
|
|
nsTArray<nsCString>& aOutTokens);
|
|
|
|
|
2015-08-14 10:18:19 +03:00
|
|
|
nsCString
|
|
|
|
ToBase64(const nsTArray<uint8_t>& aBytes);
|
|
|
|
|
2015-10-14 02:18:06 +03:00
|
|
|
bool
|
|
|
|
FileExists(nsIFile* aFile);
|
|
|
|
|
2015-01-20 08:39:00 +03:00
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif
|