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

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

Issue 10732002: Upstream rewrite of Instant. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Try again. Created 8 years, 5 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/instant/instant_controller_delegate.h
diff --git a/chrome/browser/instant/instant_controller_delegate.h b/chrome/browser/instant/instant_controller_delegate.h
index 306cd079e7ffd8be694bdd05156287e8580630dd..b3040b90cb93ffef20d99d5c2bca35c482f3c929 100644
--- a/chrome/browser/instant/instant_controller_delegate.h
+++ b/chrome/browser/instant/instant_controller_delegate.h
@@ -14,15 +14,15 @@ namespace gfx {
class Rect;
}
-// |InstantController| calls these methods on its delegate (usually |Browser|)
+// InstantController calls these methods on its delegate (usually Browser)
// to ask for the Instant preview to be shown, hidden, etc. In the following
-// methods, if a |TabContents| argument is explicitly supplied, the delegate
+// methods, if a TabContents argument is explicitly supplied, the delegate
// MUST use it. Otherwise, the preview TabContents can be gotten by calling
-// |InstantController::GetPreviewContents| (note that it may return NULL).
+// InstantController::GetPreviewContents() (note that it may return NULL).
class InstantControllerDelegate {
public:
// Show the preview.
- virtual void ShowInstant(TabContents* preview_contents) = 0;
+ virtual void ShowInstant() = 0;
// Hide any preview currently being shown.
virtual void HideInstant() = 0;

Powered by Google App Engine
This is Rietveld 408576698