| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_BROWSER_WINDOW_H_ | 5 #ifndef CHROME_BROWSER_BROWSER_WINDOW_H_ |
| 6 #define CHROME_BROWSER_BROWSER_WINDOW_H_ | 6 #define CHROME_BROWSER_BROWSER_WINDOW_H_ |
| 7 | 7 |
| 8 #include "base/gfx/native_widget_types.h" | 8 #include "app/gfx/native_widget_types.h" |
| 9 #include "chrome/browser/tab_contents/navigation_entry.h" | 9 #include "chrome/browser/tab_contents/navigation_entry.h" |
| 10 | 10 |
| 11 class Browser; | 11 class Browser; |
| 12 class BrowserWindowTesting; | 12 class BrowserWindowTesting; |
| 13 class DownloadShelf; | 13 class DownloadShelf; |
| 14 class FindBar; | 14 class FindBar; |
| 15 class GURL; | 15 class GURL; |
| 16 class HtmlDialogUIDelegate; | 16 class HtmlDialogUIDelegate; |
| 17 class LocationBar; | 17 class LocationBar; |
| 18 class Profile; | 18 class Profile; |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 | 294 |
| 295 // Returns the TabContentsContainer. | 295 // Returns the TabContentsContainer. |
| 296 virtual views::View* GetTabContentsContainerView() const = 0; | 296 virtual views::View* GetTabContentsContainerView() const = 0; |
| 297 | 297 |
| 298 // Returns the ToolbarView. | 298 // Returns the ToolbarView. |
| 299 virtual ToolbarView* GetToolbarView() const = 0; | 299 virtual ToolbarView* GetToolbarView() const = 0; |
| 300 #endif | 300 #endif |
| 301 }; | 301 }; |
| 302 | 302 |
| 303 #endif // CHROME_BROWSER_BROWSER_WINDOW_H_ | 303 #endif // CHROME_BROWSER_BROWSER_WINDOW_H_ |
| OLD | NEW |