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

Unified Diff: third_party/WebKit/Source/modules/encryptedmedia/NavigatorRequestMediaKeySystemAccess.cpp

Issue 2514073002: media: No longer treat empty robustness differently on ChromeOS (Closed)
Patch Set: comments addressed Created 4 years, 1 month 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
« no previous file with comments | « components/cdm/renderer/widevine_key_system_properties.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/encryptedmedia/NavigatorRequestMediaKeySystemAccess.cpp
diff --git a/third_party/WebKit/Source/modules/encryptedmedia/NavigatorRequestMediaKeySystemAccess.cpp b/third_party/WebKit/Source/modules/encryptedmedia/NavigatorRequestMediaKeySystemAccess.cpp
index a81ab3a6a7563331af00c44fecc38c2c9b721519..85c2439aab2cb312b16c1c8a6fd8f14e687ba8e5 100644
--- a/third_party/WebKit/Source/modules/encryptedmedia/NavigatorRequestMediaKeySystemAccess.cpp
+++ b/third_party/WebKit/Source/modules/encryptedmedia/NavigatorRequestMediaKeySystemAccess.cpp
@@ -122,8 +122,6 @@ class MediaKeySystemAccessInitializer final : public EncryptedMediaRequest {
// For widevine key system, generate warning and report to UMA if
// |m_supportedConfigurations| contains any video capability with empty
// robustness string.
- // TODO(xhwang): Remove after we handle empty robustness correctly.
- // See http://crbug.com/482277
void checkVideoCapabilityRobustness() const;
// Generate deprecation warning and log UseCounter if configuration
@@ -264,9 +262,8 @@ void MediaKeySystemAccessInitializer::checkVideoCapabilityRobustness() const {
m_resolver->getExecutionContext()->addConsoleMessage(ConsoleMessage::create(
JSMessageSource, WarningMessageLevel,
"It is recommended that a robustness level be specified. Not "
- "specifying the robustness level could "
- "result in unexpected behavior in the future, potentially including "
- "failure to play."));
+ "specifying the robustness level could result in unexpected behavior, "
+ "potentially including failure to play."));
}
}
« no previous file with comments | « components/cdm/renderer/widevine_key_system_properties.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698