diff options
Diffstat (limited to 'chrome/browser/ui/tab_contents/tab_contents_wrapper.h')
-rw-r--r-- | chrome/browser/ui/tab_contents/tab_contents_wrapper.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/browser/ui/tab_contents/tab_contents_wrapper.h b/chrome/browser/ui/tab_contents/tab_contents_wrapper.h index dc2072d..a90366c 100644 --- a/chrome/browser/ui/tab_contents/tab_contents_wrapper.h +++ b/chrome/browser/ui/tab_contents/tab_contents_wrapper.h @@ -35,6 +35,7 @@ class ExtensionWebNavigationTabObserver; class FileSelectObserver; class FindTabHelper; class NavigationController; +class OmniboxSearchHint; class PasswordManager; class PasswordManagerDelegate; class SearchEngineTabHelper; @@ -167,6 +168,7 @@ class TabContentsWrapper : public NotificationObserver, const ThumbnailScore& score, const SkBitmap& bitmap); void OnSnapshot(const SkBitmap& bitmap); + void OnPDFHasUnsupportedFeature(); // Updates the starred state from the bookmark bar model. If the state has // changed, the delegate is notified. @@ -185,6 +187,10 @@ class TabContentsWrapper : public NotificationObserver, // Whether the current URL is starred. bool is_starred_; + // Shows an info-bar to users when they search from a known search engine and + // have never used the monibox for search before. + scoped_ptr<OmniboxSearchHint> omnibox_search_hint_; + // Tab Helpers --------------------------------------------------------------- // (These provide API for callers and have a getter function listed in the // "Tab Helpers" section in the member functions area, above.) |