summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/resources/settings/multidevice_page/multidevice_tether_item.html
blob: 4809023c3b1c119b0e025a8e44081639ac43db99 (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
<link rel="import" href="chrome://resources/html/polymer.html">

<link rel="import" href="chrome://resources/cr_elements/chromeos/network/cr_network_icon.html">
<link rel="import" href="chrome://resources/cr_elements/chromeos/network/cr_network_listener_behavior.html">
<link rel="import" href="chrome://resources/html/chromeos/onc_mojo.html">
<link rel="import" href="../i18n_setup.html">
<link rel="import" href="../route.html">
<link rel="import" href="../settings_shared_css.html">
<link rel="import" href="../settings_vars_css.html">
<link rel="import" href="multidevice_feature_behavior.html">
<link rel="import" href="multidevice_feature_item.html">

<dom-module id="settings-multidevice-tether-item">
  <style include="settings-shared">
  </style>
  <template>
    <settings-multidevice-feature-item page-content-data="[[pageContentData]]"
        feature="[[MultiDeviceFeature.INSTANT_TETHERING]]"
        subpage-route="[[routes.INTERNET_NETWORKS]]"
        subpage-route-url-search-params=
            "[[getTetherNetworkUrlSearchParams_()]]">
      <cr-network-icon slot="icon"
          show-technology-badge="[[showTechnologyBadge_]]"
          network-state="[[activeNetworkState_]]"
          device-state="[[deviceState_]]">
      </cr-network-icon>
    </settings-multidevice-feature-item>
  </template>
  <script src="multidevice_tether_item.js"></script>
</dom-module>