Chromium Code Reviews| Index: chrome/browser/ui/browser_window.h |
| diff --git a/chrome/browser/ui/browser_window.h b/chrome/browser/ui/browser_window.h |
| index 67e7fe540c9874c645b7319b9d1a4c9b5dc96119..152e524c34354a8b224fa5808b7384a9bce559e3 100644 |
| --- a/chrome/browser/ui/browser_window.h |
| +++ b/chrome/browser/ui/browser_window.h |
| @@ -328,6 +328,10 @@ class BrowserWindow { |
| virtual WindowOpenDisposition GetDispositionForPopupBounds( |
| const gfx::Rect& bounds) = 0; |
| + // Construct a FindBar implementation for the |browser|. |
| + virtual FindBar* CreateFindBar() = 0; |
|
jianli
2011/08/01 18:52:13
It seems that we can add const modifier to this me
jennb
2011/08/08 17:26:02
As discussed, leaving as-is. I can't guarantee tha
|
| + |
|
jianli
2011/08/01 18:52:13
One extra empty line.
jennb
2011/08/08 17:26:02
Done.
|
| + |
| #if defined(OS_CHROMEOS) |
| // Shows the keyboard overlay dialog box. |
| virtual void ShowKeyboardOverlay(gfx::NativeWindow owning_window) = 0; |
| @@ -336,9 +340,6 @@ class BrowserWindow { |
| // Construct a BrowserWindow implementation for the specified |browser|. |
| static BrowserWindow* CreateBrowserWindow(Browser* browser); |
| - // Construct a FindBar implementation for the specified |browser|. |
| - static FindBar* CreateFindBar(Browser* browser_window); |
| - |
| protected: |
| friend class BrowserList; |
| friend class BrowserView; |