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

Unified Diff: webkit/renderer/media/crypto/key_systems.h

Issue 17101027: Add a function to convert key system into UUID (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: addressing ddorwin's comments Created 7 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: webkit/renderer/media/crypto/key_systems.h
diff --git a/webkit/renderer/media/crypto/key_systems.h b/webkit/renderer/media/crypto/key_systems.h
index 1332bad1f0c727adeba62641bc01142f273053cc..88c66d32039285d41c16e828cc61014ecd80d401 100644
--- a/webkit/renderer/media/crypto/key_systems.h
+++ b/webkit/renderer/media/crypto/key_systems.h
@@ -40,6 +40,9 @@ bool CanUseAesDecryptor(const std::string& key_system);
std::string GetPepperType(const std::string& key_system);
#endif
+// Convert |key_system| to 16 bytes android UUID.
ddorwin 2013/06/20 03:07:27 nit: ...16-byte Android...
qinmin 2013/06/20 17:41:53 Done.
+std::vector<uint8> ConvertKeySystemToAndroidUUID(const std::string& key_system);
+
} // namespace webkit_media
#endif // WEBKIT_RENDERER_MEDIA_CRYPTO_KEY_SYSTEMS_H_

Powered by Google App Engine
This is Rietveld 408576698