| Index: chrome/browser/ui/search/search_tab_helper_delegate.cc
|
| diff --git a/chrome/browser/ui/search/search_tab_helper_delegate.cc b/chrome/browser/ui/search/search_tab_helper_delegate.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..992727122d6881754c2bd66f5914fea0fa9908b9
|
| --- /dev/null
|
| +++ b/chrome/browser/ui/search/search_tab_helper_delegate.cc
|
| @@ -0,0 +1,26 @@
|
| +// Copyright 2014 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "chrome/browser/ui/search/search_tab_helper_delegate.h"
|
| +
|
| +void SearchTabHelperDelegate::NavigateToURL(
|
| + const GURL& url,
|
| + WindowOpenDisposition disposition,
|
| + content::WebContents* source_contents) {
|
| +}
|
| +
|
| +void SearchTabHelperDelegate::OnWebContentsInstantSupportDisabled(
|
| + const content::WebContents* web_contents) {
|
| +}
|
| +
|
| +void SearchTabHelperDelegate::RemoveMostVisitedItemsMatchingOpenTabs(
|
| + std::vector<InstantMostVisitedItem>* items) {
|
| +}
|
| +
|
| +OmniboxView* SearchTabHelperDelegate::GetOmniboxView() {
|
| + return NULL;
|
| +}
|
| +
|
| +SearchTabHelperDelegate::~SearchTabHelperDelegate() {
|
| +}
|
|
|