| Index: chrome/browser/ui/cocoa/tab_contents/previewable_contents_controller.h
|
| diff --git a/chrome/browser/ui/cocoa/tab_contents/previewable_contents_controller.h b/chrome/browser/ui/cocoa/tab_contents/previewable_contents_controller.h
|
| index a40053b7f03b8d3d38d6734b120a49992a0dec3d..8e666437ea6488a705301f65b4cdfed8da007122 100644
|
| --- a/chrome/browser/ui/cocoa/tab_contents/previewable_contents_controller.h
|
| +++ b/chrome/browser/ui/cocoa/tab_contents/previewable_contents_controller.h
|
| @@ -77,14 +77,12 @@ class WebContents;
|
| windowController:(BrowserWindowController*)windowController;
|
|
|
| // Sets the current preview and installs its WebContentsView into the view
|
| -// hierarchy. Hides the active view. |preview| must not be NULL.
|
| -- (void)showPreview:(content::WebContents*)preview
|
| - height:(CGFloat)height
|
| - heightUnits:(InstantSizeUnits)heightUnits
|
| - drawDropShadow:(BOOL)drawDropShadow;
|
| -
|
| -// Closes the current preview and shows the active view.
|
| -- (void)hidePreview;
|
| +// hierarchy. Hides the active view. If |preview| is NULL then closes the
|
| +// current preview and shows the active view.
|
| +- (void)setPreview:(content::WebContents*)preview
|
| + height:(CGFloat)height
|
| + heightUnits:(InstantSizeUnits)heightUnits
|
| + drawDropShadow:(BOOL)drawDropShadow;
|
|
|
| // Called when a tab with |contents| is activated, so that we can check to see
|
| // if it's the preview being activated (and adjust internal state accordingly).
|
|
|