Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(510)

Unified Diff: public/platform/WebEncryptedMediaKeyInformation.h

Issue 858693002: Add MediaKeySession.keystatuseschange event (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: public/platform/WebEncryptedMediaKeyInformation.h
diff --git a/public/platform/WebEncryptedMediaKeyInformation.h b/public/platform/WebEncryptedMediaKeyInformation.h
new file mode 100644
index 0000000000000000000000000000000000000000..3ff5ab4fede9381cd98705d98e79bdf4789905f7
--- /dev/null
+++ b/public/platform/WebEncryptedMediaKeyInformation.h
@@ -0,0 +1,42 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef WebEncryptedMediaKeyInformation_h
+#define WebEncryptedMediaKeyInformation_h
+
+#include "WebCommon.h"
+#include "WebVector.h"
+
+namespace blink {
+
+class BLINK_PLATFORM_EXPORT WebEncryptedMediaKeyInformation {
+public:
+ enum KeyStatus {
+ Usable,
+ Error,
ddorwin 2015/01/17 00:34:56 InternalError Do you want to match the spec order
jrummell 2015/01/20 19:46:35 Done.
+ Expired,
+ OutputNotAllowed,
+ };
+
+ WebEncryptedMediaKeyInformation();
+ ~WebEncryptedMediaKeyInformation();
+
+ const WebVector<unsigned char>& id() const;
+ void setId(const unsigned char* id, size_t idLength);
+
+ KeyStatus status() const;
+ void setStatus(KeyStatus);
+
+ uint32_t systemCode() const;
+ void setSystemCode(uint32_t);
+
+private:
+ WebVector<unsigned char> m_id;
+ KeyStatus m_status;
+ uint32_t m_systemCode;
+};
+
+} // namespace blink
+
+#endif // WebEncryptedMediaKeyInformation_h

Powered by Google App Engine
This is Rietveld 408576698