Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(34)

Unified Diff: chrome/browser/resources/settings/bluetooth_page/bluetooth_add_device_dialog.html

Issue 1954383002: MD Settings: combine bluetooth adding and pairing dialogs into one (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: whoops, html deps Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/settings/bluetooth_page/bluetooth_add_device_dialog.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/settings/bluetooth_page/bluetooth_add_device_dialog.html
diff --git a/chrome/browser/resources/settings/bluetooth_page/bluetooth_add_device_dialog.html b/chrome/browser/resources/settings/bluetooth_page/bluetooth_add_device_dialog.html
deleted file mode 100644
index ae8a66e8c392a22b93e3feedbc77f47bdedcd728..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/settings/bluetooth_page/bluetooth_add_device_dialog.html
+++ /dev/null
@@ -1,52 +0,0 @@
-<link rel="import" href="chrome://resources/html/polymer.html">
-<link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classes/iron-flex-layout.html">
-<link rel="import" href="chrome://resources/polymer/v1_0/iron-selector/iron-selector.html">
-<link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-button.html">
-<link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spinner.html">
-<link rel="import" href="chrome://md-settings/settings_shared_css.html">
-<link rel="import" href="chrome://md-settings/bluetooth_page/bluetooth_dialog_shared_css.html">
-<link rel="import" href="chrome://md-settings/icons.html">
-
-<dom-module id="settings-bluetooth-add-device-dialog">
- <template>
- <style include="settings-shared"></style>
- <style include="bluetooth-dialog-shared"></style>
- <div id="dialogOuterDiv" class="layout vertical flex">
- <div id="dialogHeaderDiv" class="settings-box layout horizontal">
- <span id="dialogTitle" class="flex"
- i18n-content="bluetoothAddDevicePageTitle">
- </span>
- <paper-icon-button icon="settings:close" on-tap="onCancelTap_"
- id="close">
- </paper-icon-button>
- </div>
- <div class="settings-box flex">
- <div id="dialogDeviceList" class="settings-box layout vertical"
- on-device-event="onDeviceEvent_">
- <span class="no-devices" hidden$="[[haveDevices_(deviceList)]]"
- i18n-content="bluetoothNoDevices">
- </span>
- <iron-selector class="flex">
- <template is="dom-repeat" items="[[deviceList]]"
- filter="deviceNotPaired_" observe="paired">
- <bluetooth-device-list-item device="[[item]]">
- </bluetooth-device-list-item>
- </template>
- </iron-selector>
- </div>
- </div>
- <div id="dialogFooterDiv" class="layout horizontal center">
- <div id="scanning" class="layout horizontal center flex"
- hidden$="[[!adapterState.discovering]]">
- <paper-spinner active="[[adapterState.discovering]]">
- </paper-spinner>
- <span i18n-content="bluetoothScanning"></span>
- </div>
- <paper-button id="cancel" class="end-justified"
- i18n-content="cancel" on-tap="onCancelTap_">
- </paper-button>
- </div>
- </div>
- </template>
- <script src="bluetooth_add_device_dialog.js"></script>
-</dom-module>
« no previous file with comments | « no previous file | chrome/browser/resources/settings/bluetooth_page/bluetooth_add_device_dialog.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698