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

Unified Diff: chrome/browser/resources/md_history/side_bar.js

Issue 2068613002: [MD History] Add URL parameter for search. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@routing
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/side_bar.js
diff --git a/chrome/browser/resources/md_history/side_bar.js b/chrome/browser/resources/md_history/side_bar.js
index e794065333a2c68745395db89b8db78b3cf4b541..52b2113d3f939ae5f4ad2709f972b45306e79ed2 100644
--- a/chrome/browser/resources/md_history/side_bar.js
+++ b/chrome/browser/resources/md_history/side_bar.js
@@ -10,6 +10,8 @@ Polymer({
type: String,
notify: true
},
+
+ route: Object,
},
/**
@@ -31,5 +33,9 @@ Polymer({
return 'history';
return selectedPage;
+ },
+
+ getQueryString_: function(route) {
+ return window.location.search;
}
});

Powered by Google App Engine
This is Rietveld 408576698