Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef WEBKIT_MEDIA_SUPPORTED_KEY_SYSTEMS_IMPL_H_ | |
|
scherkus (not reviewing)
2012/04/13 02:43:59
header guard is incorrect
ddorwin
2012/04/13 21:48:49
Done.
| |
| 6 #define WEBKIT_MEDIA_SUPPORTED_KEY_SYSTEMS_IMPL_H_ | |
| 7 | |
| 8 #include <string> | |
| 9 #include <vector> | |
| 10 | |
| 11 namespace WebKit { | |
| 12 class WebString; | |
| 13 } | |
| 14 | |
| 15 namespace webkit_media { | |
| 16 | |
| 17 namespace mime_util { | |
| 18 | |
| 19 bool isKeySystemSupported(const WebKit::WebString& keySystem); | |
|
scherkus (not reviewing)
2012/04/13 02:43:59
docs on these methods and unix_hacker args
ddorwin
2012/04/13 21:48:49
Done.
| |
| 20 | |
| 21 bool IsSupportedKeySystemWithMediaMimeType( | |
| 22 const std::string& mime_type, | |
| 23 const std::vector<std::string>& codecs, | |
| 24 const std::string& key_system); | |
| 25 | |
| 26 } // namespace mime_util | |
| 27 | |
| 28 } // namespace webkit_media | |
| 29 | |
| 30 #endif // WEBKIT_MEDIA_SUPPORTED_KEY_SYSTEMS_IMPL_H_ | |
|
scherkus (not reviewing)
2012/04/13 02:43:59
don't forget this one!
ddorwin
2012/04/13 21:48:49
Done.
| |
| OLD | NEW |