| Index: chrome/browser/tab_contents/constrained_window.h
|
| ===================================================================
|
| --- chrome/browser/tab_contents/constrained_window.h (revision 36364)
|
| +++ chrome/browser/tab_contents/constrained_window.h (working copy)
|
| @@ -39,8 +39,15 @@
|
| TabContents* owner,
|
| ConstrainedWindowDelegate* delegate);
|
|
|
| + // Makes the Constrained Window visible. Only one Constrained Window is shown
|
| + // at a time per tab.
|
| + virtual void ShowConstrainedWindow() = 0;
|
| +
|
| // Closes the Constrained Window.
|
| virtual void CloseConstrainedWindow() = 0;
|
| +
|
| + // Sets focus on the Constrained Window.
|
| + virtual void FocusConstrainedWindow() {}
|
| };
|
|
|
| #endif // CHROME_BROWSER_TAB_CONTENTS_CONSTRAINED_WINDOW_H_
|
|
|