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 "chrome/browser/ui/browser.h" | 7 #include "chrome/browser/ui/browser.h" |
8 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 8 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
9 #include "chrome/test/base/in_process_browser_test.h" | 9 #include "chrome/test/base/in_process_browser_test.h" |
10 #include "chrome/test/base/ui_test_utils.h" | 10 #include "chrome/test/base/ui_test_utils.h" |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 | 78 |
79 IN_PROC_BROWSER_TEST_F(FileManagerJsTest, MediaScannerTest) { | 79 IN_PROC_BROWSER_TEST_F(FileManagerJsTest, MediaScannerTest) { |
80 RunTest(base::FilePath( | 80 RunTest(base::FilePath( |
81 FILE_PATH_LITERAL("media_scanner_unittest.html"))); | 81 FILE_PATH_LITERAL("media_scanner_unittest.html"))); |
82 } | 82 } |
83 | 83 |
84 IN_PROC_BROWSER_TEST_F(FileManagerJsTest, LRUCacheTest) { | 84 IN_PROC_BROWSER_TEST_F(FileManagerJsTest, LRUCacheTest) { |
85 RunTest(base::FilePath( | 85 RunTest(base::FilePath( |
86 FILE_PATH_LITERAL("lru_cache_unittest.html"))); | 86 FILE_PATH_LITERAL("lru_cache_unittest.html"))); |
87 } | 87 } |
| 88 |
| 89 IN_PROC_BROWSER_TEST_F(FileManagerJsTest, MediaImporterTest) { |
| 90 RunTest(base::FilePath( |
| 91 FILE_PATH_LITERAL("media_import_handler_unittest.html"))); |
| 92 } |
OLD | NEW |