| 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/application_lifetime.h" | 9 #include "chrome/browser/lifetime/application_lifetime.h" |
| 10 #include "chrome/browser/ui/base_window.h" | 10 #include "chrome/browser/ui/base_window.h" |
| 11 #include "chrome/browser/ui/bookmarks/bookmark_bar.h" | 11 #include "chrome/browser/ui/bookmarks/bookmark_bar.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/common/content_settings_types.h" | 15 #include "chrome/common/content_settings_types.h" |
| 16 #include "ui/base/window_open_disposition.h" |
| 16 #include "ui/gfx/native_widget_types.h" | 17 #include "ui/gfx/native_widget_types.h" |
| 17 #include "webkit/glue/window_open_disposition.h" | |
| 18 | 18 |
| 19 class Browser; | 19 class Browser; |
| 20 class BrowserWindowTesting; | 20 class BrowserWindowTesting; |
| 21 class DownloadShelf; | 21 class DownloadShelf; |
| 22 class FindBar; | 22 class FindBar; |
| 23 class GURL; | 23 class GURL; |
| 24 class LocationBar; | 24 class LocationBar; |
| 25 class Profile; | 25 class Profile; |
| 26 class StatusBubble; | 26 class StatusBubble; |
| 27 class TemplateURL; | 27 class TemplateURL; |
| (...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 394 | 394 |
| 395 // Returns the ToolbarView. | 395 // Returns the ToolbarView. |
| 396 virtual ToolbarView* GetToolbarView() const = 0; | 396 virtual ToolbarView* GetToolbarView() const = 0; |
| 397 #endif | 397 #endif |
| 398 | 398 |
| 399 protected: | 399 protected: |
| 400 virtual ~BrowserWindowTesting() {} | 400 virtual ~BrowserWindowTesting() {} |
| 401 }; | 401 }; |
| 402 | 402 |
| 403 #endif // CHROME_BROWSER_UI_BROWSER_WINDOW_H_ | 403 #endif // CHROME_BROWSER_UI_BROWSER_WINDOW_H_ |
| OLD | NEW |