Supervised user whitelists: Cleanup
[chromium-blink-merge.git] / ui / file_manager / gallery / js / gallery_data_model_unittest.html
blob34f2a9e5e3d9181ced19877f0551cf0cac716252
1 <!DOCTYPE html>
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
4 -- found in the LICENSE file.
5 -->
6 <script>
7 // Define mock Gallery class to define Gallery.Item class.
8 var Gallery = function() {};
9 </script>
11 <script src="../../../webui/resources/js/assert.js"></script>
12 <script src="../../../webui/resources/js/cr.js"></script>
13 <script src="../../../webui/resources/js/cr/event_target.js"></script>
14 <script src="../../../webui/resources/js/cr/ui/array_data_model.js"></script>
15 <script src="../../file_manager/common/js/mock_entry.js"></script>
16 <script src="../../file_manager/common/js/unittest_util.js"></script>
17 <script src="../../file_manager/common/js/util.js"></script>
18 <script src="entry_list_watcher.js"></script>
19 <script src="gallery_data_model.js"></script>
20 <script src="gallery_item.js"></script>
22 <script src="gallery_data_model_unittest.js"></script>