| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "chrome/browser/tab_contents/navigation_entry.h" | 9 #include "chrome/browser/tab_contents/navigation_entry.h" |
| 10 #include "chrome/common/content_settings_types.h" | 10 #include "chrome/common/content_settings_types.h" |
| 11 #include "gfx/native_widget_types.h" | 11 #include "gfx/native_widget_types.h" |
| 12 | 12 |
| 13 class Browser; | 13 class Browser; |
| 14 class BrowserWindowTesting; | 14 class BrowserWindowTesting; |
| 15 class DownloadShelf; | 15 class DownloadShelf; |
| 16 class FindBar; | 16 class FindBar; |
| 17 class GURL; | 17 class GURL; |
| 18 class HtmlDialogUIDelegate; | 18 class HtmlDialogUIDelegate; |
| 19 class LocationBar; | 19 class LocationBar; |
| 20 class Profile; | 20 class Profile; |
| 21 class StatusBubble; | 21 class StatusBubble; |
| 22 class TabContents; | 22 class TabContents; |
| 23 class TabContentsContainer; | |
| 24 class TemplateURL; | 23 class TemplateURL; |
| 25 #if !defined(OS_MACOSX) | 24 #if !defined(OS_MACOSX) |
| 26 class ToolbarView; | 25 class ToolbarView; |
| 27 #endif | 26 #endif |
| 28 struct NativeWebKeyboardEvent; | 27 struct NativeWebKeyboardEvent; |
| 29 | 28 |
| 30 namespace gfx { | 29 namespace gfx { |
| 31 class Rect; | 30 class Rect; |
| 32 } | 31 } |
| 33 | 32 |
| (...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 | 353 |
| 355 // Returns the ToolbarView. | 354 // Returns the ToolbarView. |
| 356 virtual ToolbarView* GetToolbarView() const = 0; | 355 virtual ToolbarView* GetToolbarView() const = 0; |
| 357 #endif | 356 #endif |
| 358 | 357 |
| 359 protected: | 358 protected: |
| 360 virtual ~BrowserWindowTesting() {} | 359 virtual ~BrowserWindowTesting() {} |
| 361 }; | 360 }; |
| 362 | 361 |
| 363 #endif // CHROME_BROWSER_BROWSER_WINDOW_H_ | 362 #endif // CHROME_BROWSER_BROWSER_WINDOW_H_ |
| OLD | NEW |