| 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..695098046b5918747961c5c4901b1d19f27e8717 100644
|
| --- a/chrome/browser/ui/browser_window.h
|
| +++ b/chrome/browser/ui/browser_window.h
|
| @@ -328,6 +328,9 @@ class BrowserWindow {
|
| virtual WindowOpenDisposition GetDispositionForPopupBounds(
|
| const gfx::Rect& bounds) = 0;
|
|
|
| + // Construct a FindBar implementation for the |browser|.
|
| + virtual FindBar* CreateFindBar() = 0;
|
| +
|
| #if defined(OS_CHROMEOS)
|
| // Shows the keyboard overlay dialog box.
|
| virtual void ShowKeyboardOverlay(gfx::NativeWindow owning_window) = 0;
|
| @@ -336,9 +339,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;
|
|
|