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" | |
10 #include "chrome/common/content_settings_types.h" | 9 #include "chrome/common/content_settings_types.h" |
| 10 #include "content/browser/tab_contents/navigation_entry.h" |
11 #include "ui/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; |
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
387 | 387 |
388 // Returns the ToolbarView. | 388 // Returns the ToolbarView. |
389 virtual ToolbarView* GetToolbarView() const = 0; | 389 virtual ToolbarView* GetToolbarView() const = 0; |
390 #endif | 390 #endif |
391 | 391 |
392 protected: | 392 protected: |
393 virtual ~BrowserWindowTesting() {} | 393 virtual ~BrowserWindowTesting() {} |
394 }; | 394 }; |
395 | 395 |
396 #endif // CHROME_BROWSER_UI_BROWSER_WINDOW_H_ | 396 #endif // CHROME_BROWSER_UI_BROWSER_WINDOW_H_ |
OLD | NEW |