summaryrefslogtreecommitdiffstats
path: root/remoting/tools
diff options
context:
space:
mode:
authorDan Beam <dbeam@chromium.org>2015-02-13 18:42:50 -0800
committerDan Beam <dbeam@chromium.org>2015-02-14 02:43:54 +0000
commitb9749f4141f5ceef300b049b4d55b06089798fee (patch)
tree8af37300d40ebb8abf2ecb6a8b8b4e3294f0efec /remoting/tools
parentffe5781a8645d2fcb9f15a218aca4a3be5fe452c (diff)
downloadchromium_src-b9749f4141f5ceef300b049b4d55b06089798fee.zip
chromium_src-b9749f4141f5ceef300b049b4d55b06089798fee.tar.gz
chromium_src-b9749f4141f5ceef300b049b4d55b06089798fee.tar.bz2
Shorten Closure template notation from Array.<*> to Array<*>.
These are equivalent syntaxes, the latter is just newer and shorter and more closely resembles C++/Java. R=brettw@chromium.org BUG=none Review URL: https://codereview.chromium.org/917093003 Cr-Commit-Position: refs/heads/master@{#316365}
Diffstat (limited to 'remoting/tools')
-rw-r--r--remoting/tools/javascript_key_tester/chord_tracker.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/tools/javascript_key_tester/chord_tracker.js b/remoting/tools/javascript_key_tester/chord_tracker.js
index 9afc26a..29384a0b 100644
--- a/remoting/tools/javascript_key_tester/chord_tracker.js
+++ b/remoting/tools/javascript_key_tester/chord_tracker.js
@@ -12,7 +12,7 @@ var ChordTracker = function(parentDiv) {
this.parentDiv_ = parentDiv;
/** @type {HTMLElement} */
this.currentDiv_ = null;
- /** @type {Object.<HTMLElement>} */
+ /** @type {Object<HTMLElement>} */
this.pressedKeys_ = {};
};