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

Side by Side Diff: content/browser/resources/media/player_info.js

Issue 23769009: Removes the --enable-new-media-internals flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed unused files from old-media-internals Created 7 years, 3 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
« no previous file with comments | « content/browser/resources/media/new/util.js ('k') | content/browser/resources/media/util.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * @fileoverview A class for keeping track of the details of a player. 6 * @fileoverview A class for keeping track of the details of a player.
7 */ 7 */
8 8
9 var PlayerInfo = (function() { 9 var PlayerInfo = (function() {
10 'use strict'; 10 'use strict';
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 * @param value The value of the property. 71 * @param value The value of the property.
72 */ 72 */
73 addPropertyNoRecord: function(timestamp, key, value) { 73 addPropertyNoRecord: function(timestamp, key, value) {
74 this.addProperty(timestamp, key, value); 74 this.addProperty(timestamp, key, value);
75 this.allEvents.pop(); 75 this.allEvents.pop();
76 } 76 }
77 }; 77 };
78 78
79 return PlayerInfo; 79 return PlayerInfo;
80 }()); 80 }());
OLDNEW
« no previous file with comments | « content/browser/resources/media/new/util.js ('k') | content/browser/resources/media/util.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698