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

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

Issue 2180823004: Migrate <cr-dialog> from PaperDialogBehavior to native <dialog>. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
Index: chrome/browser/resources/settings/bluetooth_page/bluetooth_device_dialog.html
diff --git a/chrome/browser/resources/settings/bluetooth_page/bluetooth_device_dialog.html b/chrome/browser/resources/settings/bluetooth_page/bluetooth_device_dialog.html
index 70d9cd369fb2fbf7fbd9332d15ad41cf2e7c8459..902606bc3d9a78d8a5779ceed05ff67daa29514f 100644
--- a/chrome/browser/resources/settings/bluetooth_page/bluetooth_device_dialog.html
+++ b/chrome/browser/resources/settings/bluetooth_page/bluetooth_device_dialog.html
@@ -76,8 +76,8 @@
margin: 0 20px;
}
</style>
- <cr-dialog id="dialog" class="layout vertical"
- on-iron-overlay-canceled="onIronOverlayCanceled_">
+ <dialog is="cr-dialog" id="dialog" class="layout vertical"
+ on-cancel="onDialogCanceled_">
<div class="title">[[getTitle_(dialogId)]]</div>
<div class="body">
<template is="dom-if" if="[[isDialogType_(dialogId, 'addDevice')]]">
@@ -163,7 +163,7 @@
</paper-button>
</template>
</div>
- </cr-dialog>
+ </dialog>
</template>
<script src="/bluetooth_page/bluetooth_device_dialog.js"></script>
</dom-module>

Powered by Google App Engine
This is Rietveld 408576698