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

Unified Diff: chrome/browser/ui/browser.h

Issue 6685002: Wires up ability for page to specify instant auto complete (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix unit test and stray char Created 9 years, 9 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
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 ///////////////////////////////////////////////

Powered by Google App Engine
This is Rietveld 408576698