OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 | 7 |
8 #include "base/callback_forward.h" | 8 #include "base/callback_forward.h" |
9 #include "chrome/browser/lifetime/browser_close_manager.h" | 9 #include "chrome/browser/lifetime/browser_close_manager.h" |
10 #include "chrome/browser/ui/bookmarks/bookmark_bar.h" | 10 #include "chrome/browser/ui/bookmarks/bookmark_bar.h" |
11 #include "chrome/browser/ui/browser.h" | 11 #include "chrome/browser/ui/browser.h" |
12 #include "chrome/browser/ui/fullscreen/fullscreen_exit_bubble_type.h" | 12 #include "chrome/browser/ui/fullscreen/fullscreen_exit_bubble_type.h" |
13 #include "chrome/browser/ui/host_desktop.h" | 13 #include "chrome/browser/ui/host_desktop.h" |
14 #include "chrome/browser/ui/sync/one_click_signin_sync_starter.h" | 14 #include "chrome/browser/ui/sync/one_click_signin_sync_starter.h" |
15 #include "chrome/browser/ui/translate/translate_bubble_model.h" | 15 #include "chrome/browser/ui/translate/translate_bubble_model.h" |
16 #include "chrome/common/content_settings_types.h" | 16 #include "chrome/common/content_settings_types.h" |
17 #include "chrome/common/translate/translate_errors.h" | 17 #include "components/translate/core/common/translate_errors.h" |
18 #include "ui/base/base_window.h" | 18 #include "ui/base/base_window.h" |
19 #include "ui/base/window_open_disposition.h" | 19 #include "ui/base/window_open_disposition.h" |
20 #include "ui/gfx/native_widget_types.h" | 20 #include "ui/gfx/native_widget_types.h" |
21 | 21 |
22 class Browser; | 22 class Browser; |
23 class BrowserWindowTesting; | 23 class BrowserWindowTesting; |
24 class DownloadShelf; | 24 class DownloadShelf; |
25 class FindBar; | 25 class FindBar; |
26 class GURL; | 26 class GURL; |
27 class LocationBar; | 27 class LocationBar; |
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
417 | 417 |
418 // Returns the ToolbarView. | 418 // Returns the ToolbarView. |
419 virtual ToolbarView* GetToolbarView() const = 0; | 419 virtual ToolbarView* GetToolbarView() const = 0; |
420 #endif | 420 #endif |
421 | 421 |
422 protected: | 422 protected: |
423 virtual ~BrowserWindowTesting() {} | 423 virtual ~BrowserWindowTesting() {} |
424 }; | 424 }; |
425 | 425 |
426 #endif // CHROME_BROWSER_UI_BROWSER_WINDOW_H_ | 426 #endif // CHROME_BROWSER_UI_BROWSER_WINDOW_H_ |
OLD | NEW |