summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/file_manager/action_choice.html
blob: a93329aceab20294baeaf9f41d342b855119b1da (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
74
75
76
77
78
79
80
81
82
83
<!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"/>

  <script src="js/action_choice_scripts.js"></script>

  <if expr="0">
    <!-- This file has not been flattened, load individual scripts.
         Keep the list in sync with action_choice_scripts.js. -->
    <script src="../image_loader/client.js"></script>

    <script src="../../../../ui/webui/resources/js/load_time_data.js"></script>
    <script src="../../../../ui/webui/resources/js/util.js"></script>
    <script src="../../../../ui/webui/resources/js/i18n_template_no_process.js"></script>

    <script src="../../../../ui/webui/resources/js/cr.js"></script>
    <script src="../../../../ui/webui/resources/js/event_tracker.js"></script>
    <script src="../../../../ui/webui/resources/js/cr/ui.js"></script>
    <script src="../../../../ui/webui/resources/js/cr/event_target.js"></script>
    <script src="../../../../ui/webui/resources/js/cr/ui/touch_handler.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.js"></script>
  </if>
  <title>&#xFEFF;</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>
          <input id="import-photos-to-drive" type="radio" name="action">
          <label for="import-photos-to-drive"
                 i18n-content="ACTION_CHOICE_DRIVE_NOT_REACHED"></label>
        </div>

        <div>
          <input id="view-files" type="radio" name="action" checked>
          <label for="view-files"
                 i18n-content="ACTION_CHOICE_VIEW_FILES"></label>
        </div>

        <div>
          <input id="watch-single-video" type="radio" name="action">
          <label for="watch-single-video"></label>
        </div>
      </div>

      <div class="footer">
        <button class="ok" i18n-content="ACTION_CHOICE_OK"></button>
      </div>
    </div>

    <div class="loading">
      <div class="device-type">
        <div class="spinner"></div>
      </div>
      <div class="loading-text"></div>
    </div>
  </div>
</body>
</html>