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) { |
} |