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

Unified Diff: chrome/browser/ui/search/search_ipc_router.cc

Issue 1543203002: Remove a variety of no-longer-used query params. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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/ui/search/search_ipc_router.cc
diff --git a/chrome/browser/ui/search/search_ipc_router.cc b/chrome/browser/ui/search/search_ipc_router.cc
index 18de36433ac9b8ebd33a1c4cf12ea955f2e99aca..0198615c5c67d94eb1dd4c90b153ef7d5a7bde2c 100644
--- a/chrome/browser/ui/search/search_ipc_router.cc
+++ b/chrome/browser/ui/search/search_ipc_router.cc
@@ -98,13 +98,6 @@ void SearchIPCRouter::SetSuggestionToPrefetch(
suggestion));
}
-void SearchIPCRouter::SetOmniboxStartMargin(int start_margin) {
- if (!policy_->ShouldSendSetOmniboxStartMargin())
- return;
-
- Send(new ChromeViewMsg_SearchBoxMarginChange(routing_id(), start_margin));
-}
-
void SearchIPCRouter::SetInputInProgress(bool input_in_progress) {
if (!policy_->ShouldSendSetInputInProgress(is_active_tab_))
return;

Powered by Google App Engine
This is Rietveld 408576698