| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 | 86 |
| 87 IN_PROC_BROWSER_TEST_F(FileManagerJsTest, LRUCacheTest) { | 87 IN_PROC_BROWSER_TEST_F(FileManagerJsTest, LRUCacheTest) { |
| 88 RunTest(base::FilePath( | 88 RunTest(base::FilePath( |
| 89 FILE_PATH_LITERAL("common/js/lru_cache_unittest.html"))); | 89 FILE_PATH_LITERAL("common/js/lru_cache_unittest.html"))); |
| 90 } | 90 } |
| 91 | 91 |
| 92 IN_PROC_BROWSER_TEST_F(FileManagerJsTest, MediaImportHandlerTest) { | 92 IN_PROC_BROWSER_TEST_F(FileManagerJsTest, MediaImportHandlerTest) { |
| 93 RunTest(base::FilePath( | 93 RunTest(base::FilePath( |
| 94 FILE_PATH_LITERAL("background/js/media_import_handler_unittest.html"))); | 94 FILE_PATH_LITERAL("background/js/media_import_handler_unittest.html"))); |
| 95 } | 95 } |
| 96 |
| 97 IN_PROC_BROWSER_TEST_F(FileManagerJsTest, TaskQueueTest) { |
| 98 RunTest(base::FilePath( |
| 99 FILE_PATH_LITERAL("background/js/task_queue_unittest.html"))); |
| 100 } |
| OLD | NEW |