blob: 91fbd11ef0959c2a60d7d40d4c4238dad86b60d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
<!DOCTYPE HTML>
<!--
-- Copyright (c) 2012 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>
<head>
<link rel="stylesheet" type="text/css" href="css/common.css"/>
<link rel="stylesheet" type="text/css" href="css/file_types.css"/>
<link rel="stylesheet" type="text/css" href="css/action_choice.css"/>
<!-- Don't load action_choice_scripts.js when flattening is disabled. -->
<if expr="0"><!-- </if>
<script src="js/action_choice_scripts.js"></script>
<if expr="0"> --></if>
<if expr="0">
<!-- This section is used when the file manager is loaded with
'filemgr-ext-path' command-line flag. -->
<!-- Keep the list in sync with action_choice_scripts.js. -->
<!-- Loads the client of the image loader extension -->
<script src="chrome-extension://pmfjbimdmchhbnneeidfognadeopoehp/client.js"></script>
<script src="chrome://resources/js/load_time_data.js"></script>
<script src="chrome://resources/js/util.js"></script>
<script src="chrome://resources/js/i18n_template_no_process.js"></script>
<script src="chrome://resources/js/cr.js"></script>
<script src="chrome://resources/js/event_tracker.js"></script>
<script src="chrome://resources/js/cr/ui.js"></script>
<script src="chrome://resources/js/cr/event_target.js"></script>
<script src="chrome://resources/js/cr/ui/array_data_model.js"></script>
<script src="chrome://resources/js/cr/ui/touch_handler.js"></script>
<script src="chrome://resources/js/cr/ui/list_item.js"></script>
<script src="chrome://resources/js/cr/ui/list_selection_model.js"></script>
<script src="chrome://resources/js/cr/ui/list_single_selection_model.js"></script>
<script src="chrome://resources/js/cr/ui/list_selection_controller.js"></script>
<script src="js/util.js"></script>
<script src="js/file_type.js"></script>
<script src="js/path_util.js"></script>
<script src="js/volume_manager.js"></script>
<script src="js/metadata/metadata_cache.js"></script>
<script src="js/metrics.js"></script>
<script src="js/image_editor/image_util.js"></script>
<script src="js/media/media_util.js"></script>
<script src="js/action_choice_util.js"></script>
<script src="js/action_choice.js"></script>
</if>
<title></title>
</head>
<body>
<div class="action-choice">
<div class="content">
<div class="previews"></div>
<div class="counter"></div>
<h1 i18n-content="ACTION_CHOICE_OPENING_METHOD"></h1>
<div class="choices"></div>
</div>
<div class="loading">
<div class="device-type">
<div class="spinner"></div>
</div>
<div class="loading-text"></div>
</div>
</div>
</body>
</html>
|