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

Unified Diff: media/test/data/eme_player_js/utils.js

Issue 1224053003: Clear Key CDM should resolve the promise if session not found (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: simplify prefixed Created 5 years, 5 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: media/test/data/eme_player_js/utils.js
diff --git a/media/test/data/eme_player_js/utils.js b/media/test/data/eme_player_js/utils.js
index 8068b270ada184bdd9cbc0cb6eb2cf0f737bd0cc..c62680445051cd3a2bf6c9cd150e5de32f1e68bc 100644
--- a/media/test/data/eme_player_js/utils.js
+++ b/media/test/data/eme_player_js/utils.js
@@ -146,6 +146,11 @@ Utils.failTest = function(msg, newTitle) {
Utils.setResultInTitle(title);
};
+Utils.reportResult = function(msg, newTitle) {
ddorwin 2015/07/09 00:29:36 Please add some comments. For example, reports a r
jrummell 2015/07/10 00:16:50 Removed function.
+ Utils.timeLog(msg);
ddorwin 2015/07/09 00:29:35 Continuing from the first comment: If this really
jrummell 2015/07/10 00:16:50 Removed function.
+ Utils.setResultInTitle(newTitle);
+};
+
Utils.getCurrentTimeString = function() {
var date = new Date();
var hours = ('0' + date.getHours()).slice(-2);

Powered by Google App Engine
This is Rietveld 408576698