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

Unified Diff: chrome/test/data/extensions/api_test/file_browser/handler_test_runner/test.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_browser/handler_test_runner/test.js
diff --git a/chrome/test/data/extensions/api_test/file_browser/handler_test_runner/test.js b/chrome/test/data/extensions/api_test/file_browser/handler_test_runner/test.js
index c91a4009ba1b2d97601ad5b8a5c791514d1d449e..c9101afdf1dbbdbc41494d31f0080b72bb1a9140 100644
--- a/chrome/test/data/extensions/api_test/file_browser/handler_test_runner/test.js
+++ b/chrome/test/data/extensions/api_test/file_browser/handler_test_runner/test.js
@@ -25,7 +25,7 @@
/**
* Files for which the file browser handlers will be executed by the extension.
- * @type {Array.<string>}
+ * @type {Array<string>}
*/
var kTestPaths = ['test_dir/test_file.xul', 'test_dir/test_file.tiff'];
@@ -35,7 +35,7 @@ function run() {
* Test cases after the file path has been resolved to FileEntry. Each
* resolved test case contains the resolved FileEntry object.
*
- * @type Array.<FileEntry>
+ * @type Array<FileEntry>
*/
var resolvedEntries = [];
@@ -43,7 +43,7 @@ function run() {
* List of tasks found for a testCase. Each object contains the found task id
* and file URL for which the task should be executed.
*
- * @type {Array.<Object.<string, string>>}
+ * @type {Array<Object<string, string>>}
*/
var foundTasks = [];
@@ -87,7 +87,7 @@ function run() {
* and calls getFileTasks again.
*
* @param {string} fileUrl File url for which getFileTasks was called.
- * @param {Array.<Object>} tasks List of found task objects.
+ * @param {Array<Object>} tasks List of found task objects.
*/
function onGotNonDefaultTasks(fileUrl, tasks) {
@@ -115,7 +115,7 @@ function run() {
* are found, they are executed.
*
* @param {string} fileUrl File url for which getFileTasks was called.
- * @param {Array.<Object>} tasks List of found task objects.
+ * @param {Array<Object>} tasks List of found task objects.
*/
function onGotTasks(fileUrl, tasks) {
if (!tasks) {

Powered by Google App Engine
This is Rietveld 408576698