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 15 matching lines...) Expand all Loading... |
26 const std::vector<int> empty_libraries; | 26 const std::vector<int> empty_libraries; |
27 EXPECT_TRUE(ExecuteWebUIResourceTest(rvh, empty_libraries)); | 27 EXPECT_TRUE(ExecuteWebUIResourceTest(rvh, empty_libraries)); |
28 } | 28 } |
29 }; | 29 }; |
30 | 30 |
31 IN_PROC_BROWSER_TEST_F( | 31 IN_PROC_BROWSER_TEST_F( |
32 FileManagerJsTest, NavigationListModelTest) { | 32 FileManagerJsTest, NavigationListModelTest) { |
33 RunTest(base::FilePath( | 33 RunTest(base::FilePath( |
34 FILE_PATH_LITERAL("navigation_list_model_unittest.html"))); | 34 FILE_PATH_LITERAL("navigation_list_model_unittest.html"))); |
35 } | 35 } |
| 36 |
| 37 IN_PROC_BROWSER_TEST_F( |
| 38 FileManagerJsTest, ProgressCenterHandlerTest) { |
| 39 RunTest(base::FilePath( |
| 40 FILE_PATH_LITERAL("progress_center_handler_unittest.html"))); |
| 41 } |
OLD | NEW |