| Index: chrome/browser/ui/browser.h
|
| diff --git a/chrome/browser/ui/browser.h b/chrome/browser/ui/browser.h
|
| index 1a12dd7ce3ee786fae74bd95df29fc2dacaf4a49..e0908054fb2852158c67eb9def402803de6c61c5 100644
|
| --- a/chrome/browser/ui/browser.h
|
| +++ b/chrome/browser/ui/browser.h
|
| @@ -835,12 +835,13 @@ class Browser : public TabHandlerDelegate,
|
| virtual void OnStateChanged();
|
|
|
| // Overriden from InstantDelegate:
|
| - virtual void PrepareForInstant();
|
| - virtual void ShowInstant(TabContentsWrapper* preview_contents);
|
| - virtual void HideInstant();
|
| - virtual void CommitInstant(TabContentsWrapper* preview_contents);
|
| - virtual void SetSuggestedText(const string16& text);
|
| - virtual gfx::Rect GetInstantBounds();
|
| + virtual void PrepareForInstant() OVERRIDE;
|
| + virtual void ShowInstant(TabContentsWrapper* preview_contents) OVERRIDE;
|
| + virtual void HideInstant() OVERRIDE;
|
| + virtual void CommitInstant(TabContentsWrapper* preview_contents) OVERRIDE;
|
| + virtual void SetSuggestedText(const string16& text,
|
| + InstantCompleteBehavior behavior) OVERRIDE;
|
| + virtual gfx::Rect GetInstantBounds() OVERRIDE;
|
|
|
| // Command and state updating ///////////////////////////////////////////////
|
|
|
|
|