OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include <string> | 5 #include <string> |
6 #include <vector> | 6 #include <vector> |
7 | 7 |
8 #include "testing/gtest/include/gtest/gtest.h" | 8 #include "testing/gtest/include/gtest/gtest.h" |
9 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" | 9 #include "third_party/WebKit/public/platform/WebString.h" |
10 #include "webkit/media/crypto/key_systems.h" | 10 #include "webkit/media/crypto/key_systems.h" |
11 | 11 |
12 #include "widevine_cdm_version.h" // In SHARED_INTERMEDIATE_DIR. | 12 #include "widevine_cdm_version.h" // In SHARED_INTERMEDIATE_DIR. |
13 | 13 |
14 #if defined(WIDEVINE_CDM_AVAILABLE) && \ | 14 #if defined(WIDEVINE_CDM_AVAILABLE) && \ |
15 defined(OS_LINUX) && !defined(OS_CHROMEOS) | 15 defined(OS_LINUX) && !defined(OS_CHROMEOS) |
16 #include <gnu/libc-version.h> | 16 #include <gnu/libc-version.h> |
17 #endif | 17 #endif |
18 | 18 |
19 using WebKit::WebString; | 19 using WebKit::WebString; |
(...skipping 727 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
747 "audio/mp4", avc1_codec(), kWidevineAlpha)); | 747 "audio/mp4", avc1_codec(), kWidevineAlpha)); |
748 EXPECT_FALSE(IsSupportedKeySystemWithMediaMimeType( | 748 EXPECT_FALSE(IsSupportedKeySystemWithMediaMimeType( |
749 "audio/mp4", avc1_and_aac_codecs(), kWidevineAlpha)); | 749 "audio/mp4", avc1_and_aac_codecs(), kWidevineAlpha)); |
750 | 750 |
751 // Non-MP4 codec. | 751 // Non-MP4 codec. |
752 EXPECT_FALSE(IsSupportedKeySystemWithMediaMimeType( | 752 EXPECT_FALSE(IsSupportedKeySystemWithMediaMimeType( |
753 "audio/mp4", vorbis_codec(), kWidevineAlpha)); | 753 "audio/mp4", vorbis_codec(), kWidevineAlpha)); |
754 } | 754 } |
755 | 755 |
756 } // namespace webkit_media | 756 } // namespace webkit_media |
OLD | NEW |