summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/resources/settings/device_page/storage_external.html
blob: 922c2613d1f48b00516b5c08e99b70461a70227a (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
<link rel="import" href="chrome://resources/html/polymer.html">

<link rel="import" href="chrome://resources/html/assert.html">
<link rel="import" href="storage_external_entry.html">
<link rel="import" href="../prefs/prefs.html">
<link rel="import" href="../settings_shared_css.html">

<dom-module id="settings-storage-external">
  <template>
    <style include="settings-shared">
      h2 {
        padding-inline-start: var(--cr-section-padding);
      }

    </style>
    <div class="settings-box first">
      <span>
        $i18n{storageAndroidAppsExternalDrivesNote}
      </span>
    </div>
    <h2>$i18n{storageExternalStorageListHeader}</h2>
    <iron-list id="removableDevices" preserve-focus
        items="[[externalStorages_]]">
      <template>
        <storage-external-entry uuid="[[item.uuid]]" label="[[item.label]]"
            prefs="{{prefs}}">
        </storage-external-entry>
      </template>
    </iron-list>
  </template>
  <script src="storage_external.js"></script>
</dom-module>