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

Unified Diff: remoting/webapp/crd/js/server_log_entry.js

Issue 917093003: Shorten Closure template notation from Array.<*> to Array<*>. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove cvox Created 5 years, 10 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
« no previous file with comments | « remoting/webapp/crd/js/paired_client_manager.js ('k') | remoting/webapp/crd/js/session_connector.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/crd/js/server_log_entry.js
diff --git a/remoting/webapp/crd/js/server_log_entry.js b/remoting/webapp/crd/js/server_log_entry.js
index e660945dff44953c6a3c73ad9b7ea9245f1531ea..7d848aa5b5a4a089f8909778f7108508fd933a75 100644
--- a/remoting/webapp/crd/js/server_log_entry.js
+++ b/remoting/webapp/crd/js/server_log_entry.js
@@ -21,7 +21,7 @@ var remoting = remoting || {};
* @constructor
*/
remoting.ServerLogEntry = function() {
- /** @type Object.<string, string> */ this.dict = {};
+ /** @type Object<string, string> */ this.dict = {};
};
/** @private */
@@ -209,7 +209,7 @@ remoting.ServerLogEntry.prototype.toStanza = function() {
* @param {number} indentLevel the indentation level
*/
remoting.ServerLogEntry.prototype.toDebugLog = function(indentLevel) {
- /** @type Array.<string> */ var fields = [];
+ /** @type Array<string> */ var fields = [];
for (var key in this.dict) {
fields.push(key + ': ' + this.dict[key]);
}
« no previous file with comments | « remoting/webapp/crd/js/paired_client_manager.js ('k') | remoting/webapp/crd/js/session_connector.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698