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

Unified Diff: chrome/common/encrypted_media_messages_android.cc

Issue 23513055: Populate canPlayType to renderer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixing commnets Created 7 years, 3 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: chrome/common/encrypted_media_messages_android.cc
diff --git a/chrome/common/encrypted_media_messages_android.cc b/chrome/common/encrypted_media_messages_android.cc
new file mode 100644
index 0000000000000000000000000000000000000000..4ad9bb952833af8ffe4ef3e5bd52d68d48a35cdc
--- /dev/null
+++ b/chrome/common/encrypted_media_messages_android.cc
@@ -0,0 +1,20 @@
+// Copyright 2013 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.
+
+#include "chrome/common/encrypted_media_messages_android.h"
+
+namespace android {
+
+SupportedKeySystemRequest::SupportedKeySystemRequest()
+ : codecs(NO_SUPPORTED_CODECS) {}
+
+SupportedKeySystemRequest::~SupportedKeySystemRequest() {}
+
+SupportedKeySystemResponse::SupportedKeySystemResponse()
+ : compositing_codecs(NO_SUPPORTED_CODECS),
+ non_compositing_codecs(NO_SUPPORTED_CODECS) {}
+
+SupportedKeySystemResponse::~SupportedKeySystemResponse() {}
+
+} // namespace android

Powered by Google App Engine
This is Rietveld 408576698