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

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

Issue 2852693002: Remove DetermineIfPageSupportsInstant and all its plumbing (Closed)
Patch Set: rebase Created 3 years, 8 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
« no previous file with comments | « chrome/browser/ui/search/search_ipc_router.h ('k') | chrome/browser/ui/search/search_tab_helper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 613021b849fec73a2d705362f1686d843e349cfa..f4338c1fb3b9037dfe9ca36d9f0c01f704c81ca1 100644
--- a/chrome/browser/ui/search/search_ipc_router.cc
+++ b/chrome/browser/ui/search/search_ipc_router.cc
@@ -107,10 +107,6 @@ void SearchIPCRouter::OnNavigationEntryCommitted() {
search_box()->SetPageSequenceNumber(commit_counter_);
}
-void SearchIPCRouter::DetermineIfPageSupportsInstant() {
- search_box()->DetermineIfPageSupportsInstant();
-}
-
void SearchIPCRouter::SendChromeIdentityCheckResult(
const base::string16& identity,
bool identity_match) {
@@ -182,14 +178,6 @@ void SearchIPCRouter::OnTabDeactivated() {
is_active_tab_ = false;
}
-void SearchIPCRouter::InstantSupportDetermined(int page_seq_no,
- bool instant_support) {
- if (page_seq_no != commit_counter_)
- return;
-
- delegate_->OnInstantSupportDetermined(instant_support);
-}
-
void SearchIPCRouter::FocusOmnibox(int page_seq_no, OmniboxFocusState state) {
if (page_seq_no != commit_counter_)
return;
« no previous file with comments | « chrome/browser/ui/search/search_ipc_router.h ('k') | chrome/browser/ui/search/search_tab_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698