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/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 "ui/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; |
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
378 | 378 |
379 // Returns the ToolbarView. | 379 // Returns the ToolbarView. |
380 virtual ToolbarView* GetToolbarView() const = 0; | 380 virtual ToolbarView* GetToolbarView() const = 0; |
381 #endif | 381 #endif |
382 | 382 |
383 protected: | 383 protected: |
384 virtual ~BrowserWindowTesting() {} | 384 virtual ~BrowserWindowTesting() {} |
385 }; | 385 }; |
386 | 386 |
387 #endif // CHROME_BROWSER_UI_BROWSER_WINDOW_H_ | 387 #endif // CHROME_BROWSER_UI_BROWSER_WINDOW_H_ |
OLD | NEW |