Chromium Code Reviews| Index: chrome/test/data/file_manager/unit_tests/importer_common_unittest.html |
| diff --git a/chrome/test/data/file_manager/unit_tests/importer_common_unittest.html b/chrome/test/data/file_manager/unit_tests/importer_common_unittest.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..d81afe83873936859c8077b4c68921771d3562f9 |
| --- /dev/null |
| +++ b/chrome/test/data/file_manager/unit_tests/importer_common_unittest.html |
| @@ -0,0 +1,32 @@ |
| +<!DOCTYPE html> |
| +<!-- Copyright 2014 The Chromium Authors. All rights reserved. |
| + -- Use of this source code is governed by a BSD-style license that can be |
| + -- found in the LICENSE file. |
| + --> |
| + |
| +<html> |
| + <body> |
| + <head> |
| + <script src="../../../../../ui/webui/resources/js/cr.js"></script> |
| + <script src="../../../../../ui/webui/resources/js/cr/event_target.js"></script> |
|
mtomasz
2014/12/11 01:51:52
nit: I think some of these includes are not used.
Steve McKay
2014/12/11 02:12:57
I added these individually (based on what I found
|
| + <script src="../../../../../ui/webui/resources/js/cr/ui/array_data_model.js"></script> |
| + <script src="../../../../../ui/webui/resources/js/load_time_data.js"></script> |
| + |
| + <script src="../../../../../ui/file_manager/file_manager/common/js/async_util.js"></script> |
| + <script src="../../../../../ui/file_manager/file_manager/common/js/file_type.js"></script> |
| + <script src="../../../../../ui/file_manager/file_manager/common/js/util.js"></script> |
| + <script src="../../../../../ui/file_manager/file_manager/common/js/volume_manager_common.js"></script> |
| + <script src="../../../../../ui/file_manager/file_manager/common/js/importer_common.js"></script> |
| + |
| + <script src="../../../../../ui/file_manager/file_manager/background/js/volume_manager.js"></script> |
| + |
| + <script src="test_util.js"></script> |
| + <script src="mocks/mock_entry.js"></script> |
| + <script src="mocks/mock_file_operation_manager.js"></script> |
| + <script src="mocks/mock_media_scanner.js"></script> |
| + <script src="mocks/mock_volume_manager.js"></script> |
| + |
| + <script src="importer_common_unittest.js"></script> |
| + </head> |
| + </body> |
| +</html> |