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

Unified Diff: chrome/test/data/extensions/api_test/file_system_provider/test_util/test_util.js

Issue 1150173003: Fix some JS style nits. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 7 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: chrome/test/data/extensions/api_test/file_system_provider/test_util/test_util.js
diff --git a/chrome/test/data/extensions/api_test/file_system_provider/test_util/test_util.js b/chrome/test/data/extensions/api_test/file_system_provider/test_util/test_util.js
index c3823bf88392bdb660120796a5668a1384a92509..b49172346347e83f1423345c2ee84a6e876fc79d 100644
--- a/chrome/test/data/extensions/api_test/file_system_provider/test_util/test_util.js
+++ b/chrome/test/data/extensions/api_test/file_system_provider/test_util/test_util.js
@@ -33,7 +33,7 @@ test_util.volumeId = null;
* Default metadata. Used by onMetadataRequestedDefault(). The key is a full
* path, and the value, a MetadataEntry object.
*
- * @type {Object.<string, Object>}
+ * @type {Object<string, Object>}
*/
test_util.defaultMetadata = {
'/': {
@@ -48,7 +48,7 @@ test_util.defaultMetadata = {
* Map of opened files, from a <code>openRequestId</code> to <code>filePath
* </code>.
*
- * @type {Object.<number, string>}
+ * @type {Object<number, string>}
*/
test_util.openedFiles = {};

Powered by Google App Engine
This is Rietveld 408576698