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

Unified Diff: chrome/browser/resources/md_history/history_item.html

Issue 2046303002: [MD History] Add history-searched-label to embolden the synced device search. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@disable_grouped
Patch Set: Created 4 years, 6 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_history/history_item.html
diff --git a/chrome/browser/resources/md_history/history_item.html b/chrome/browser/resources/md_history/history_item.html
index 7b2169dd51f39bad1e195ccc80e9130c1521ae8d..651b241c39507a43c800ed3744ecca089990ee8e 100644
--- a/chrome/browser/resources/md_history/history_item.html
+++ b/chrome/browser/resources/md_history/history_item.html
@@ -8,6 +8,7 @@
<link rel="import" href="chrome://resources/html/icon.html">
<link rel="import" href="chrome://resources/html/util.html">
<link rel="import" href="chrome://history/constants.html">
+<link rel="import" href="chrome://history/searched_label.html">
<link rel="import" href="chrome://history/shared_style.html">
<dom-module id="history-item">
@@ -132,7 +133,10 @@
<span id="time-accessed">[[item.readableTimestamp]]</span>
<div class="website-icon" id="icon"></div>
<div id="title-and-domain">
- <a href="[[item.url]]" id="title" class="website-title"></a>
+ <a href="[[item.url]]" id="title" class="website-title">
+ <history-searched-label title="[[item.title]]"
+ search-term="[[searchTerm]]"></history-searched-label>
+ </a>
<span id="domain">[[item.domain]]</span>
</div>
<iron-icon icon="cr:star" id="bookmark-star"></iron-icon>

Powered by Google App Engine
This is Rietveld 408576698