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

Unified Diff: content/public/renderer/key_system_info.cc

Issue 557723003: Implement Chromium side of MediaKeys.isTypeSupported(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More requested changes. Created 6 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: content/public/renderer/key_system_info.cc
diff --git a/content/public/renderer/key_system_info.cc b/content/public/renderer/key_system_info.cc
index 6a64fdbac0049ea49227ab981400a1d28aea8aad..536f6dbe44c914937395296b9d445efea3418bf5 100644
--- a/content/public/renderer/key_system_info.cc
+++ b/content/public/renderer/key_system_info.cc
@@ -2,12 +2,15 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include "content/public/common/eme_constants.h"
ddorwin 2014/09/27 00:41:24 You don't need this if it's already in the header
sandersd (OOO until July 31) 2014/09/29 17:49:23 Done.
#include "content/public/renderer/key_system_info.h"
namespace content {
KeySystemInfo::KeySystemInfo(const std::string& key_system)
: key_system(key_system),
+ supported_codecs(EME_CODEC_NONE),
+ supported_init_data_types(EME_INIT_DATA_TYPE_NONE),
ddorwin 2014/09/27 00:41:24 swap order
sandersd (OOO until July 31) 2014/09/29 17:49:23 Done.
use_aes_decryptor(false) {
}

Powered by Google App Engine
This is Rietveld 408576698