| 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 "base/callback_forward.h" | 9 #include "base/callback_forward.h" |
| 10 #include "chrome/browser/lifetime/application_lifetime.h" | 10 #include "chrome/browser/lifetime/application_lifetime.h" |
| 11 #include "chrome/browser/ui/base_window.h" | 11 #include "chrome/browser/ui/base_window.h" |
| 12 #include "chrome/browser/ui/bookmarks/bookmark_bar.h" | 12 #include "chrome/browser/ui/bookmarks/bookmark_bar.h" |
| 13 #include "chrome/browser/ui/fullscreen_exit_bubble_type.h" | 13 #include "chrome/browser/ui/fullscreen_exit_bubble_type.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/gfx/native_widget_types.h" | 16 #include "ui/gfx/native_widget_types.h" |
| 17 #include "webkit/glue/window_open_disposition.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 TabContentsWrapper; | 27 class TabContents; |
| 28 typedef TabContents TabContentsWrapper; |
| 28 class TemplateURL; | 29 class TemplateURL; |
| 29 #if !defined(OS_MACOSX) | 30 #if !defined(OS_MACOSX) |
| 30 class ToolbarView; | 31 class ToolbarView; |
| 31 #endif | 32 #endif |
| 32 | 33 |
| 33 namespace content { | 34 namespace content { |
| 34 class WebContents; | 35 class WebContents; |
| 35 struct NativeWebKeyboardEvent; | 36 struct NativeWebKeyboardEvent; |
| 36 struct SSLStatus; | 37 struct SSLStatus; |
| 37 } | 38 } |
| (...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 407 | 408 |
| 408 // Returns the ToolbarView. | 409 // Returns the ToolbarView. |
| 409 virtual ToolbarView* GetToolbarView() const = 0; | 410 virtual ToolbarView* GetToolbarView() const = 0; |
| 410 #endif | 411 #endif |
| 411 | 412 |
| 412 protected: | 413 protected: |
| 413 virtual ~BrowserWindowTesting() {} | 414 virtual ~BrowserWindowTesting() {} |
| 414 }; | 415 }; |
| 415 | 416 |
| 416 #endif // CHROME_BROWSER_UI_BROWSER_WINDOW_H_ | 417 #endif // CHROME_BROWSER_UI_BROWSER_WINDOW_H_ |
| OLD | NEW |