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

Side by Side Diff: chrome/browser/chromeos/file_manager/file_manager_browsertest.cc

Issue 325953005: Add gallery browser tests to rename an image in the slide mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add a missing comment. 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
« no previous file with comments | « no previous file | chrome/test/data/extensions/api_test/file_manager_browsertest/gallery/slide_mode.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 // Browser test for basic Chrome OS file manager functionality: 5 // Browser test for basic Chrome OS file manager functionality:
6 // - The file list is updated when a file is added externally to the Downloads 6 // - The file list is updated when a file is added externally to the Downloads
7 // folder. 7 // folder.
8 // - Selecting a file and copy-pasting it with the keyboard copies the file. 8 // - Selecting a file and copy-pasting it with the keyboard copies the file.
9 // - Selecting a file and pressing delete deletes it. 9 // - Selecting a file and pressing delete deletes it.
10 10
(...skipping 1299 matching lines...) Expand 10 before | Expand all | Expand 10 after
1310 AddScript("gallery/slide_mode.js"); 1310 AddScript("gallery/slide_mode.js");
1311 set_test_case_name("traverseSlideImagesOnDownloads"); 1311 set_test_case_name("traverseSlideImagesOnDownloads");
1312 StartTest(); 1312 StartTest();
1313 } 1313 }
1314 1314
1315 IN_PROC_BROWSER_TEST_F(GalleryBrowserTest, TraverseSlideImagesOnDrive) { 1315 IN_PROC_BROWSER_TEST_F(GalleryBrowserTest, TraverseSlideImagesOnDrive) {
1316 AddScript("gallery/slide_mode.js"); 1316 AddScript("gallery/slide_mode.js");
1317 set_test_case_name("traverseSlideImagesOnDrive"); 1317 set_test_case_name("traverseSlideImagesOnDrive");
1318 StartTest(); 1318 StartTest();
1319 } 1319 }
1320
1321 IN_PROC_BROWSER_TEST_F(GalleryBrowserTest, RenameImageOnDownloads) {
1322 AddScript("gallery/test_util.js");
1323 AddScript("gallery/slide_mode.js");
1324 set_test_case_name("renameImageOnDownloads");
1325 StartTest();
1326 }
1327
1328 IN_PROC_BROWSER_TEST_F(GalleryBrowserTestInGuestMode,
1329 RenameImageOnDownloads) {
1330 AddScript("gallery/test_util.js");
1331 AddScript("gallery/slide_mode.js");
1332 set_test_case_name("renameImageOnDownloads");
1333 StartTest();
1334 }
1335
1336 IN_PROC_BROWSER_TEST_F(GalleryBrowserTest, RenameImageOnDrive) {
1337 AddScript("gallery/test_util.js");
1338 AddScript("gallery/slide_mode.js");
1339 set_test_case_name("renameImageOnDrive");
1340 StartTest();
1341 }
1342
1320 } // namespace 1343 } // namespace
1321 } // namespace file_manager 1344 } // namespace file_manager
OLDNEW
« no previous file with comments | « no previous file | chrome/test/data/extensions/api_test/file_manager_browsertest/gallery/slide_mode.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698