OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_UI_BROWSER_WINDOW_H_ | 5 #ifndef CHROME_BROWSER_UI_BROWSER_WINDOW_H_ |
6 #define CHROME_BROWSER_UI_BROWSER_WINDOW_H_ | 6 #define CHROME_BROWSER_UI_BROWSER_WINDOW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "chrome/browser/ui/bookmarks/bookmark_bar.h" | 9 #include "chrome/browser/ui/bookmarks/bookmark_bar.h" |
10 #include "chrome/browser/ui/fullscreen_exit_bubble_type.h" | 10 #include "chrome/browser/ui/fullscreen_exit_bubble_type.h" |
11 #include "chrome/common/content_settings_types.h" | 11 #include "chrome/common/content_settings_types.h" |
12 #include "content/browser/tab_contents/navigation_entry.h" | 12 #include "content/browser/tab_contents/navigation_entry.h" |
13 #include "ui/gfx/native_widget_types.h" | 13 #include "ui/gfx/native_widget_types.h" |
14 #include "webkit/glue/window_open_disposition.h" | 14 #include "webkit/glue/window_open_disposition.h" |
15 | 15 |
16 class Browser; | 16 class Browser; |
17 class BrowserWindowTesting; | 17 class BrowserWindowTesting; |
18 class DownloadShelf; | 18 class DownloadShelf; |
19 class FindBar; | 19 class FindBar; |
20 class GURL; | 20 class GURL; |
21 class HtmlDialogUIDelegate; | |
22 class LocationBar; | 21 class LocationBar; |
23 class Panel; | |
24 class Profile; | 22 class Profile; |
25 class StatusBubble; | 23 class StatusBubble; |
26 class TabContents; | 24 class TabContents; |
27 class TabContentsWrapper; | 25 class TabContentsWrapper; |
28 class TemplateURL; | 26 class TemplateURL; |
29 class TemplateURLService; | |
30 #if !defined(OS_MACOSX) | 27 #if !defined(OS_MACOSX) |
31 class ToolbarView; | 28 class ToolbarView; |
32 #endif | 29 #endif |
33 struct NativeWebKeyboardEvent; | 30 struct NativeWebKeyboardEvent; |
34 | 31 |
35 namespace gfx { | 32 namespace gfx { |
36 class Rect; | 33 class Rect; |
37 class Size; | 34 class Size; |
38 } | 35 } |
39 | 36 |
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
392 | 389 |
393 // Returns the ToolbarView. | 390 // Returns the ToolbarView. |
394 virtual ToolbarView* GetToolbarView() const = 0; | 391 virtual ToolbarView* GetToolbarView() const = 0; |
395 #endif | 392 #endif |
396 | 393 |
397 protected: | 394 protected: |
398 virtual ~BrowserWindowTesting() {} | 395 virtual ~BrowserWindowTesting() {} |
399 }; | 396 }; |
400 | 397 |
401 #endif // CHROME_BROWSER_UI_BROWSER_WINDOW_H_ | 398 #endif // CHROME_BROWSER_UI_BROWSER_WINDOW_H_ |
OLD | NEW |