| 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
|
|
|