| Index: chrome/browser/tab_contents/tab_contents.cc
|
| diff --git a/chrome/browser/tab_contents/tab_contents.cc b/chrome/browser/tab_contents/tab_contents.cc
|
| index 96c2411f64e9a8db521861b9b89ab1912684a3e1..14dcf2e46f1feb9d7b6384dae1e273a72e5ee9ef 100644
|
| --- a/chrome/browser/tab_contents/tab_contents.cc
|
| +++ b/chrome/browser/tab_contents/tab_contents.cc
|
| @@ -69,6 +69,7 @@
|
| #include "chrome/browser/sessions/session_types.h"
|
| #include "chrome/browser/tab_contents/infobar_delegate.h"
|
| #include "chrome/browser/tab_contents/interstitial_page.h"
|
| +#include "chrome/browser/tab_contents/match_preview.h"
|
| #include "chrome/browser/tab_contents/navigation_entry.h"
|
| #include "chrome/browser/tab_contents/provisional_load_details.h"
|
| #include "chrome/browser/tab_contents/tab_contents_delegate.h"
|
| @@ -424,6 +425,9 @@ TabContents::TabContents(Profile* profile,
|
| // Set-up the showing of the omnibox search infobar if applicable.
|
| if (OmniboxSearchHint::IsEnabled(profile))
|
| omnibox_search_hint_.reset(new OmniboxSearchHint(this));
|
| +
|
| + if (MatchPreview::IsEnabled())
|
| + match_preview_.reset(new MatchPreview(this));
|
| }
|
|
|
| TabContents::~TabContents() {
|
|
|