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

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

Issue 2238523004: MD History: Add tooltip to more actions button in synced tabs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@history_shadows
Patch Set: 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 </style> 69 </style>
70 <div id="history-item-container"> 70 <div id="history-item-container">
71 <div class="card-title" id="card-heading" aria-expanded$="[[cardOpen_]]" 71 <div class="card-title" id="card-heading" aria-expanded$="[[cardOpen_]]"
72 aria-controls="collapse" on-tap="toggleTabCard"> 72 aria-controls="collapse" on-tap="toggleTabCard">
73 <div> 73 <div>
74 [[device]] 74 [[device]]
75 <span id="last-update-time">[[lastUpdateTime]]</span> 75 <span id="last-update-time">[[lastUpdateTime]]</span>
76 </div> 76 </div>
77 <div id="right-buttons"> 77 <div id="right-buttons">
78 <button is="paper-icon-button-light" id="menu-button" 78 <button is="paper-icon-button-light" id="menu-button"
79 class="icon-button" on-tap="onMenuButtonTap_"> 79 class="icon-button" on-tap="onMenuButtonTap_"
80 title="$i18n{moreActionsButton}">
80 <iron-icon icon="cr:more-vert"></iron-icon> 81 <iron-icon icon="cr:more-vert"></iron-icon>
81 </button> 82 </button>
82 <button is="paper-icon-button-light" class="icon-button" 83 <button is="paper-icon-button-light" class="icon-button"
83 title$="[[getCollapseTitle_(cardOpen_)]]"> 84 title$="[[getCollapseTitle_(cardOpen_)]]">
84 <iron-icon icon="cr:expand-less" id="dropdown-indicator"> 85 <iron-icon icon="cr:expand-less" id="dropdown-indicator">
85 </iron-icon> 86 </iron-icon>
86 </button> 87 </button>
87 </div> 88 </div>
88 </div> 89 </div>
89 90
(...skipping 11 matching lines...) Expand all
101 <div id="window-separator" 102 <div id="window-separator"
102 hidden$="[[!isWindowSeparatorIndex_(index, separatorIndexes)]]"> 103 hidden$="[[!isWindowSeparatorIndex_(index, separatorIndexes)]]">
103 </div> 104 </div>
104 </template> 105 </template>
105 </div> 106 </div>
106 </iron-collapse> 107 </iron-collapse>
107 </div> 108 </div>
108 </template> 109 </template>
109 <script src="chrome://history/synced_device_card.js"></script> 110 <script src="chrome://history/synced_device_card.js"></script>
110 </dom-module> 111 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698