OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/base_window.h" | 9 #include "chrome/browser/ui/base_window.h" |
10 #include "chrome/browser/ui/bookmarks/bookmark_bar.h" | 10 #include "chrome/browser/ui/bookmarks/bookmark_bar.h" |
11 #include "chrome/browser/ui/fullscreen_exit_bubble_type.h" | 11 #include "chrome/browser/ui/fullscreen_exit_bubble_type.h" |
12 #include "chrome/common/content_settings_types.h" | 12 #include "chrome/common/content_settings_types.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 LocationBar; | 21 class LocationBar; |
22 class Profile; | 22 class Profile; |
23 class StatusBubble; | 23 class StatusBubble; |
24 class TabContents; | |
25 class TabContentsWrapper; | 24 class TabContentsWrapper; |
26 class TemplateURL; | 25 class TemplateURL; |
27 #if !defined(OS_MACOSX) | 26 #if !defined(OS_MACOSX) |
28 class ToolbarView; | 27 class ToolbarView; |
29 #endif | 28 #endif |
30 struct NativeWebKeyboardEvent; | 29 struct NativeWebKeyboardEvent; |
31 | 30 |
32 namespace content { | 31 namespace content { |
33 class WebContents; | 32 class WebContents; |
34 struct SSLStatus; | 33 struct SSLStatus; |
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
388 | 387 |
389 // Returns the ToolbarView. | 388 // Returns the ToolbarView. |
390 virtual ToolbarView* GetToolbarView() const = 0; | 389 virtual ToolbarView* GetToolbarView() const = 0; |
391 #endif | 390 #endif |
392 | 391 |
393 protected: | 392 protected: |
394 virtual ~BrowserWindowTesting() {} | 393 virtual ~BrowserWindowTesting() {} |
395 }; | 394 }; |
396 | 395 |
397 #endif // CHROME_BROWSER_UI_BROWSER_WINDOW_H_ | 396 #endif // CHROME_BROWSER_UI_BROWSER_WINDOW_H_ |
OLD | NEW |