| 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 "chrome/browser/chromeos/file_manager/file_manager_jstest_base.h" | 5 #include "chrome/browser/chromeos/file_manager/file_manager_jstest_base.h" |
| 6 | 6 |
| 7 class FileManagerJsTest : public FileManagerJsTestBase { | 7 class FileManagerJsTest : public FileManagerJsTestBase { |
| 8 protected: | 8 protected: |
| 9 FileManagerJsTest() : FileManagerJsTestBase( | 9 FileManagerJsTest() : FileManagerJsTestBase( |
| 10 base::FilePath(FILE_PATH_LITERAL("ui/file_manager/file_manager"))) {} | 10 base::FilePath(FILE_PATH_LITERAL("ui/file_manager/file_manager"))) {} |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 | 147 |
| 148 IN_PROC_BROWSER_TEST_F(FileManagerJsTest, FileSystemMetadataProvider) { | 148 IN_PROC_BROWSER_TEST_F(FileManagerJsTest, FileSystemMetadataProvider) { |
| 149 RunTest(base::FilePath(FILE_PATH_LITERAL( | 149 RunTest(base::FilePath(FILE_PATH_LITERAL( |
| 150 "foreground/js/metadata/file_system_metadata_provider_unittest.html"))); | 150 "foreground/js/metadata/file_system_metadata_provider_unittest.html"))); |
| 151 } | 151 } |
| 152 | 152 |
| 153 IN_PROC_BROWSER_TEST_F(FileManagerJsTest, ExternalMetadataProvider) { | 153 IN_PROC_BROWSER_TEST_F(FileManagerJsTest, ExternalMetadataProvider) { |
| 154 RunTest(base::FilePath(FILE_PATH_LITERAL( | 154 RunTest(base::FilePath(FILE_PATH_LITERAL( |
| 155 "foreground/js/metadata/external_metadata_provider_unittest.html"))); | 155 "foreground/js/metadata/external_metadata_provider_unittest.html"))); |
| 156 } | 156 } |
| 157 |
| 158 IN_PROC_BROWSER_TEST_F(FileManagerJsTest, ContentMetadataProvider) { |
| 159 RunTest(base::FilePath(FILE_PATH_LITERAL( |
| 160 "foreground/js/metadata/content_metadata_provider_unittest.html"))); |
| 161 } |
| OLD | NEW |