- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / browser / resources / file_manager / action_choice.html
1 <!DOCTYPE HTML>
2 <!--
3   -- Copyright (c) 2012 The Chromium Authors. All rights reserved.
4   -- Use of this source code is governed by a BSD-style license that can be
5   -- found in the LICENSE file.
6   -->
7 <html>
8 <head>
9   <link rel="stylesheet" type="text/css" href="foreground/css/common.css"/>
10   <link rel="stylesheet" type="text/css" href="foreground/css/file_types.css"/>
11   <link rel="stylesheet" type="text/css" href="foreground/css/action_choice.css"/>
12
13   <!-- Don't load action_choice_scripts.js when flattening is disabled. -->
14   <if expr="0"><!-- </if>
15     <script src="foreground/js/action_choice/action_choice_scripts.js"></script>
16   <if expr="0"> --></if>
17
18   <if expr="0">
19     <!-- This section is used when the file manager is loaded with
20          'filemgr-ext-path' command-line flag. -->
21     <!-- Keep the list in sync with action_choice_scripts.js. -->
22
23     <!-- Loads the client of the image loader extension -->
24     <script src="chrome-extension://pmfjbimdmchhbnneeidfognadeopoehp/image_loader_client.js"></script>
25
26     <script src="chrome://resources/js/load_time_data.js"></script>
27     <script src="chrome://resources/js/util.js"></script>
28     <script src="chrome://resources/js/i18n_template_no_process.js"></script>
29
30     <script src="chrome://resources/js/cr.js"></script>
31     <script src="chrome://resources/js/event_tracker.js"></script>
32     <script src="chrome://resources/js/cr/ui.js"></script>
33     <script src="chrome://resources/js/cr/event_target.js"></script>
34     <script src="chrome://resources/js/cr/ui/array_data_model.js"></script>
35     <script src="chrome://resources/js/cr/ui/touch_handler.js"></script>
36     <script src="chrome://resources/js/cr/ui/list_item.js"></script>
37     <script src="chrome://resources/js/cr/ui/list_selection_model.js"></script>
38     <script src="chrome://resources/js/cr/ui/list_single_selection_model.js"></script>
39     <script src="chrome://resources/js/cr/ui/list_selection_controller.js"></script>
40
41     <script src="common/js/async_util.js"></script>
42     <script src="common/js/util.js"></script>
43     <script src="common/js/path_util.js"></script>
44
45     <script src="foreground/js/file_type.js"></script>
46     <script src="foreground/js/volume_manager_wrapper.js"></script>
47     <script src="foreground/js/metadata/metadata_cache.js"></script>
48     <script src="foreground/js/metrics.js"></script>
49     <script src="foreground/js/image_editor/image_util.js"></script>
50     <script src="foreground/js/media/media_util.js"></script>
51
52     <script src="foreground/js/action_choice/action_choice_util.js"></script>
53     <script src="foreground/js/action_choice/action_choice.js"></script>
54   </if>
55   <title>&#xFEFF;</title>
56 </head>
57
58 <body>
59   <div class="action-choice">
60     <div class="content">
61       <div class="previews"></div>
62       <div class="counter"></div>
63       <h1 i18n-content="ACTION_CHOICE_OPENING_METHOD"></h1>
64       <div class="choices"></div>
65     </div>
66
67     <div class="loading">
68       <div class="device-type">
69         <div class="spinner"></div>
70       </div>
71       <div class="loading-text"></div>
72     </div>
73   </div>
74 </body>
75 </html>