OLD | NEW |
1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> | 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> |
2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> |
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-icons/iron-icons.h
tml"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h
tml"> |
6 <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/iron-flex-layout/iron-f
lex-layout.html"> |
7 <link rel="import" href="chrome://resources/html/util.html"> | 7 <link rel="import" href="chrome://resources/html/util.html"> |
8 <link rel="import" href="chrome://history/shared_style.html"> | 8 <link rel="import" href="chrome://history/shared_style.html"> |
9 | 9 |
10 <dom-module id="history-synced-device-card"> | 10 <dom-module id="history-synced-device-card"> |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 <div id="icon" class="website-icon"></div> | 92 <div id="icon" class="website-icon"></div> |
93 <a href="[[tab.url]]" class="website-title" title="[[tab.title]]"> | 93 <a href="[[tab.url]]" class="website-title" title="[[tab.title]]"> |
94 [[tab.title]] | 94 [[tab.title]] |
95 </a> | 95 </a> |
96 </div> | 96 </div> |
97 <template is="dom-if" if="[[tab.needsWindowSeparator]]"> | 97 <template is="dom-if" if="[[tab.needsWindowSeparator]]"> |
98 <div id="window-separator"></div> | 98 <div id="window-separator"></div> |
99 </template> | 99 </template> |
100 </template> | 100 </template> |
101 <div class="item-container"> | 101 <div class="item-container"> |
102 <p on-tap="openAllTabs_" id="open-tabs" i18n-content="openAll"></p> | 102 <p on-tap="openAllTabs_" id="open-tabs">$i18n{openAll}</p> |
103 </div> | 103 </div> |
104 </div> | 104 </div> |
105 </iron-collapse> | 105 </iron-collapse> |
106 </div> | 106 </div> |
107 </template> | 107 </template> |
108 <script src="chrome://history/synced_device_card.js"></script> | 108 <script src="chrome://history/synced_device_card.js"></script> |
109 </dom-module> | 109 </dom-module> |
OLD | NEW |