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

Unified Diff: chrome/browser/instant/instant_delegate.h

Issue 4694008: Make pink's TabContentsWrapper change compile on Windows.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month 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/instant/instant_delegate.h
===================================================================
--- chrome/browser/instant/instant_delegate.h (revision 66453)
+++ chrome/browser/instant/instant_delegate.h (working copy)
@@ -8,7 +8,7 @@
#include "base/string16.h"
-class TabContents;
+class TabContentsWrapper;
namespace gfx {
class Rect;
@@ -24,7 +24,7 @@
virtual void PrepareForInstant() = 0;
// Invoked when the instant TabContents should be shown.
- virtual void ShowInstant(TabContents* preview_contents) = 0;
+ virtual void ShowInstant(TabContentsWrapper* preview_contents) = 0;
// Invoked when the instant TabContents should be hidden.
virtual void HideInstant() = 0;
@@ -32,7 +32,7 @@
// Invoked when the user does something that should result in the preview
// TabContents becoming the active TabContents. The delegate takes ownership
// of the supplied TabContents.
- virtual void CommitInstant(TabContents* preview_contents) = 0;
+ virtual void CommitInstant(TabContentsWrapper* preview_contents) = 0;
// Invoked when the suggested text is to change to |text|.
virtual void SetSuggestedText(const string16& text) = 0;

Powered by Google App Engine
This is Rietveld 408576698