| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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 #include <vector> | 5 #include <vector> |
| 6 | 6 |
| 7 #include "base/path_service.h" | 7 #include "base/path_service.h" |
| 8 #include "chrome/browser/ui/browser.h" | 8 #include "chrome/browser/ui/browser.h" |
| 9 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 9 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
| 10 #include "chrome/test/base/in_process_browser_test.h" | 10 #include "chrome/test/base/in_process_browser_test.h" |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 IN_PROC_BROWSER_TEST_F(FileManagerJsTest, MetadataCacheTest) { | 57 IN_PROC_BROWSER_TEST_F(FileManagerJsTest, MetadataCacheTest) { |
| 58 RunTest(base::FilePath(FILE_PATH_LITERAL( | 58 RunTest(base::FilePath(FILE_PATH_LITERAL( |
| 59 "foreground/js/metadata/metadata_cache_unittest.html"))); | 59 "foreground/js/metadata/metadata_cache_unittest.html"))); |
| 60 } | 60 } |
| 61 | 61 |
| 62 IN_PROC_BROWSER_TEST_F(FileManagerJsTest, FileOperationManagerTest) { | 62 IN_PROC_BROWSER_TEST_F(FileManagerJsTest, FileOperationManagerTest) { |
| 63 RunTest(base::FilePath( | 63 RunTest(base::FilePath( |
| 64 FILE_PATH_LITERAL("background/js/file_operation_manager_unittest.html"))); | 64 FILE_PATH_LITERAL("background/js/file_operation_manager_unittest.html"))); |
| 65 } | 65 } |
| 66 | 66 |
| 67 IN_PROC_BROWSER_TEST_F(FileManagerJsTest, ImporterCommonTest) { |
| 68 RunTest(base::FilePath( |
| 69 FILE_PATH_LITERAL("common/js/importer_common_unittest.html"))); |
| 70 } |
| 71 |
| 67 IN_PROC_BROWSER_TEST_F(FileManagerJsTest, ImportHistoryTest) { | 72 IN_PROC_BROWSER_TEST_F(FileManagerJsTest, ImportHistoryTest) { |
| 68 RunTest(base::FilePath( | 73 RunTest(base::FilePath( |
| 69 FILE_PATH_LITERAL("background/js/import_history_unittest.html"))); | 74 FILE_PATH_LITERAL("background/js/import_history_unittest.html"))); |
| 70 } | 75 } |
| 71 | 76 |
| 72 IN_PROC_BROWSER_TEST_F(FileManagerJsTest, VolumeManagerTest) { | 77 IN_PROC_BROWSER_TEST_F(FileManagerJsTest, VolumeManagerTest) { |
| 73 RunTest(base::FilePath( | 78 RunTest(base::FilePath( |
| 74 FILE_PATH_LITERAL("background/js/volume_manager_unittest.html"))); | 79 FILE_PATH_LITERAL("background/js/volume_manager_unittest.html"))); |
| 75 } | 80 } |
| 76 | 81 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 91 | 96 |
| 92 IN_PROC_BROWSER_TEST_F(FileManagerJsTest, MediaImportHandlerTest) { | 97 IN_PROC_BROWSER_TEST_F(FileManagerJsTest, MediaImportHandlerTest) { |
| 93 RunTest(base::FilePath( | 98 RunTest(base::FilePath( |
| 94 FILE_PATH_LITERAL("background/js/media_import_handler_unittest.html"))); | 99 FILE_PATH_LITERAL("background/js/media_import_handler_unittest.html"))); |
| 95 } | 100 } |
| 96 | 101 |
| 97 IN_PROC_BROWSER_TEST_F(FileManagerJsTest, TaskQueueTest) { | 102 IN_PROC_BROWSER_TEST_F(FileManagerJsTest, TaskQueueTest) { |
| 98 RunTest(base::FilePath( | 103 RunTest(base::FilePath( |
| 99 FILE_PATH_LITERAL("background/js/task_queue_unittest.html"))); | 104 FILE_PATH_LITERAL("background/js/task_queue_unittest.html"))); |
| 100 } | 105 } |
| OLD | NEW |