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

Side by Side Diff: chrome/browser/resources/md_history/synced_device_card.html

Issue 2219753002: MD History: Fix crash when opening Synced Tab links with touch (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename closure type Created 4 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 unified diff | Download patch
OLDNEW
1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 1 <link rel="import" href="chrome://resources/cr_elements/icons.html">
2 <link rel="import" href="chrome://resources/html/polymer.html"> 2 <link rel="import" href="chrome://resources/html/polymer.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll apse.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll apse.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l">
5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
7 <link rel="import" href="chrome://resources/html/icon.html"> 7 <link rel="import" href="chrome://resources/html/icon.html">
8 <link rel="import" href="chrome://history/browser_service.html"> 8 <link rel="import" href="chrome://history/browser_service.html">
9 <link rel="import" href="chrome://history/constants.html"> 9 <link rel="import" href="chrome://history/constants.html">
10 <link rel="import" href="chrome://history/searched_label.html"> 10 <link rel="import" href="chrome://history/searched_label.html">
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 </button> 87 </button>
88 </div> 88 </div>
89 </div> 89 </div>
90 90
91 <iron-collapse opened="{{cardOpen_}}" id="collapse"> 91 <iron-collapse opened="{{cardOpen_}}" id="collapse">
92 <div id="tab-item-list"> 92 <div id="tab-item-list">
93 <template is="dom-repeat" items="[[tabs]]" as="tab" id="tab-list"> 93 <template is="dom-repeat" items="[[tabs]]" as="tab" id="tab-list">
94 <div id="item-container"> 94 <div id="item-container">
95 <div id="icon" class="website-icon"></div> 95 <div id="icon" class="website-icon"></div>
96 <a href="[[tab.url]]" class="website-title" title="[[tab.title]]" 96 <a href="[[tab.url]]" class="website-title" title="[[tab.title]]"
97 on-tap="openTab_"> 97 on-click="openTab_">
98 <history-searched-label title="[[tab.title]]" 98 <history-searched-label title="[[tab.title]]"
99 search-term="[[searchTerm]]"></history-searched-label> 99 search-term="[[searchTerm]]"></history-searched-label>
100 </a> 100 </a>
101 </div> 101 </div>
102 <div id="window-separator" 102 <div id="window-separator"
103 hidden$="[[!isWindowSeparatorIndex_(index, separatorIndexes)]]"> 103 hidden$="[[!isWindowSeparatorIndex_(index, separatorIndexes)]]">
104 </div> 104 </div>
105 </template> 105 </template>
106 </div> 106 </div>
107 </iron-collapse> 107 </iron-collapse>
108 </div> 108 </div>
109 </template> 109 </template>
110 <script src="chrome://history/synced_device_card.js"></script> 110 <script src="chrome://history/synced_device_card.js"></script>
111 </dom-module> 111 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_history/constants.js ('k') | chrome/browser/resources/md_history/synced_device_card.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698