blob: 0415bc9c4bd88bc226cb513cd40b80edf56baff4 (
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
|
<!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" href="../shared/css/list.css"></link>
<link rel="stylesheet" href="../shared/css/dialogs.css"></link>
<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/media_controls.css"/>
<link rel="stylesheet" type="text/css" href="css/select_album_dialog.css"/>
<link rel="stylesheet" type="text/css" href="css/tile_view.css"/>
<link rel="stylesheet" type="text/css" href="css/photo_import.css"/>
<script src="js/photo/photo_import_scripts.js"></script>
<if expr="0">
<!-- This file has not been flattened, load individual scripts.
Keep the list in sync with photo_import_scripts.js. -->
<script src="../shared/js/load_time_data.js"></script>
<script src="../shared/js/util.js"></script>
<script src="../shared/js/i18n_template_no_process.js"></script>
<script src="../shared/js/cr.js"></script>
<script src="../shared/js/event_tracker.js"></script>
<script src="../shared/js/cr/ui.js"></script>
<script src="../shared/js/cr/event_target.js"></script>
<script src="../shared/js/cr/ui/touch_handler.js"></script>
<script src="../shared/js/cr/ui/array_data_model.js"></script>
<script src="../shared/js/cr/ui/dialogs.js"></script>
<script src="../shared/js/cr/ui/list_item.js"></script>
<script src="../shared/js/cr/ui/list_selection_model.js"></script>
<script src="../shared/js/cr/ui/list_single_selection_model.js"></script>
<script src="../shared/js/cr/ui/list_selection_controller.js"></script>
<script src="../shared/js/cr/ui/list.js"></script>
<script src="../shared/js/cr/ui/grid.js"></script>
<script src="js/util.js"></script>
<script src="js/file_type.js"></script>
<script src="js/directory_contents.js"></script>
<script src="js/volume_manager.js"></script>
<script src="js/file_copy_manager_wrapper.js"></script>
<script src="js/path_util.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/photo/select_album_dialog.js"></script>
<script src="js/photo/tile_view.js"></script>
<script src="js/photo/photo_import.js"></script>
</if>
</head>
<body>
<div class="photo-import">
<div class="grid-container">
<div class="titlebar">
<div class="title"></div>
<button class="import"></button>
</div>
<grid></grid>
</div>
<div class="spinner"></div>
</div>
</body>
</html>
|