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

Side by Side Diff: chrome/test/data/extensions/api_test/file_manager_browsertest/test_util.js

Issue 303503004: Change directory if the active list item on navigation list is changed. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Modify comments. Created 6 years, 6 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 'use strict'; 5 'use strict';
6 6
7 /** 7 /**
8 * Sends a test message. 8 * Sends a test message.
9 * @param {Object} message Message to be sent. It is converted into JSON string 9 * @param {Object} message Message to be sent. It is converted into JSON string
10 * before sending. 10 * before sending.
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 directoryB: new TestEntryInfo( 256 directoryB: new TestEntryInfo(
257 EntryType.DIRECTORY, null, 'A/B', 257 EntryType.DIRECTORY, null, 'A/B',
258 null, SharedOption.NONE, 'Jan 1, 2000 1:00 AM', 258 null, SharedOption.NONE, 'Jan 1, 2000 1:00 AM',
259 'B', '--', 'Folder'), 259 'B', '--', 'Folder'),
260 260
261 directoryC: new TestEntryInfo( 261 directoryC: new TestEntryInfo(
262 EntryType.DIRECTORY, null, 'A/B/C', 262 EntryType.DIRECTORY, null, 'A/B/C',
263 null, SharedOption.NONE, 'Jan 1, 2000 1:00 AM', 263 null, SharedOption.NONE, 'Jan 1, 2000 1:00 AM',
264 'C', '--', 'Folder'), 264 'C', '--', 'Folder'),
265 265
266 directoryD: new TestEntryInfo(
267 EntryType.DIRECTORY, null, 'D',
268 null, SharedOption.NONE, 'Jan 1, 2000 1:00 AM',
269 'D', '--', 'Folder'),
270
271 directoryE: new TestEntryInfo(
272 EntryType.DIRECTORY, null, 'D/E',
273 null, SharedOption.NONE, 'Jan 1, 2000 1:00 AM',
274 'E', '--', 'Folder'),
275
276 directoryF: new TestEntryInfo(
277 EntryType.DIRECTORY, null, 'D/E/F',
278 null, SharedOption.NONE, 'Jan 1, 2000 1:00 AM',
279 'F', '--', 'Folder'),
280
266 zipArchive: new TestEntryInfo( 281 zipArchive: new TestEntryInfo(
267 EntryType.FILE, 'archive.zip', 'archive.zip', 282 EntryType.FILE, 'archive.zip', 'archive.zip',
268 'application/x-zip', SharedOption.NONE, 'Jan 1, 2014 1:00 AM', 283 'application/x-zip', SharedOption.NONE, 'Jan 1, 2014 1:00 AM',
269 'archive.zip', '533 bytes', 'Zip archive') 284 'archive.zip', '533 bytes', 'Zip archive')
270 }; 285 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698