Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(43)

Side by Side Diff: ui/file_manager/file_manager/foreground/js/actions_model_unittest.html

Issue 2292873003: Divide volume_manager.js into files for each classes and extract interfaces from them. (Closed)
Patch Set: Address comments. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved.
3 -- Use of this source code is governed by a BSD-style license that can be 3 -- Use of this source code is governed by a BSD-style license that can be
4 -- found in the LICENSE file. 4 -- found in the LICENSE file.
5 --> 5 -->
6 6
7 <script src="../../../../../ui/webui/resources/js/assert.js"></script> 7 <script src="../../../../../ui/webui/resources/js/assert.js"></script>
8 <script src="../../../../../ui/webui/resources/js/cr.js"></script> 8 <script src="../../../../../ui/webui/resources/js/cr.js"></script>
9 <script src="../../../../../ui/webui/resources/js/cr/event_target.js"></script> 9 <script src="../../../../../ui/webui/resources/js/cr/event_target.js"></script>
10 <script src="../../../../../ui/webui/resources/js/cr/ui/array_data_model.js"></s cript> 10 <script src="../../../../../ui/webui/resources/js/cr/ui/array_data_model.js"></s cript>
11 <script src="../../../../../ui/webui/resources/js/load_time_data.js"></script> 11 <script src="../../../../../ui/webui/resources/js/load_time_data.js"></script>
12 12
13 <script src="../../common/js/mock_entry.js"></script> 13 <script src="../../common/js/mock_entry.js"></script>
14 <script src="../../common/js/unittest_util.js"></script> 14 <script src="../../common/js/unittest_util.js"></script>
15 <script src="../../common/js/util.js"></script> 15 <script src="../../common/js/util.js"></script>
16 <script src="../../common/js/volume_manager_common.js"></script> 16 <script src="../../common/js/volume_manager_common.js"></script>
17 17
18 <script src="../../background/js/volume_manager.js"></script> 18 <script src="../../background/js/entry_location_impl.js"></script>
19 <script src="../../background/js/volume_info_impl.js"></script>
20 <script src="../../background/js/volume_info_list_impl.js"></script>
21 <script src="../../background/js/volume_manager_factory.js"></script>
22 <script src="../../background/js/volume_manager_impl.js"></script>
23 <script src="../../background/js/volume_manager_util.js"></script>
19 <script src="../../background/js/mock_volume_manager.js"></script> 24 <script src="../../background/js/mock_volume_manager.js"></script>
20 25
21 <script src="actions_model.js"></script> 26 <script src="actions_model.js"></script>
22 <script src="actions_model_unittest.js"></script> 27 <script src="actions_model_unittest.js"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698