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

Unified Diff: chrome/browser/resources/md_downloads/toolbar.html

Issue 1313453002: Make cr.ui.Focus* play nice with Shadow DOM and MD chrome://downloads (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 4 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/md_downloads/toolbar.html
diff --git a/chrome/browser/resources/md_downloads/toolbar.html b/chrome/browser/resources/md_downloads/toolbar.html
index bfb4d986a2be2c83d38849fa8e8731d680b313df..e4e8b2e35ce0a6a656e7f0368b4d1a846c5a0eea 100644
--- a/chrome/browser/resources/md_downloads/toolbar.html
+++ b/chrome/browser/resources/md_downloads/toolbar.html
@@ -4,8 +4,6 @@
<link rel="import" href="chrome://resources/polymer/v1_0/paper-menu/paper-menu.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-menu-button/paper-menu-button.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper-icon-button.html">
-<link rel="import" href="chrome://resources/cr_elements/v1_0/cr_button/cr_button.html">
-<link rel="import" href="chrome://resources/cr_elements/v1_0/cr_input/cr_input.html">
<link rel="import" href="chrome://resources/html/assert.html">
<link rel="import" href="chrome://resources/html/cr.html">
@@ -15,10 +13,10 @@
<h1 i18n-content="title"></h1>
</div>
<div id="actions">
- <cr-button class="clear-all" i18n-content="clearAll"
- on-click="onClearAllClick_"></cr-button>
- <cr-button i18n-content="openDownloadsFolder"
- on-click="onOpenDownloadsFolderClick_"></cr-button>
+ <paper-button class="clear-all" i18n-content="clearAll"
+ on-click="onClearAllClick_"></paper-button>
+ <paper-button i18n-content="openDownloadsFolder"
+ on-click="onOpenDownloadsFolderClick_"></paper-button>
</div>
<div id="search">
<paper-icon-button icon="search" id="search-button"

Powered by Google App Engine
This is Rietveld 408576698