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

Side by Side Diff: webkit/media/mime_util.h

Issue 10020053: Initial implementation of Encrypted Media Extensions in Chrome. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: review feedback Created 8 years, 8 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 unified diff | Download patch
OLDNEW
(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.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698