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_VIEWS_FRAME_BROWSER_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
(...skipping 24 matching lines...) Expand all Loading... |
35 #endif | 35 #endif |
36 | 36 |
37 // NOTE: For more information about the objects and files in this directory, | 37 // NOTE: For more information about the objects and files in this directory, |
38 // view: http://dev.chromium.org/developers/design-documents/browser-window | 38 // view: http://dev.chromium.org/developers/design-documents/browser-window |
39 | 39 |
40 class BookmarkBarView; | 40 class BookmarkBarView; |
41 class Browser; | 41 class Browser; |
42 class BrowserViewLayout; | 42 class BrowserViewLayout; |
43 class ContentsContainer; | 43 class ContentsContainer; |
44 class DownloadShelfView; | 44 class DownloadShelfView; |
45 class Extension; | |
46 class FullscreenExitBubbleViews; | 45 class FullscreenExitBubbleViews; |
47 class InfoBarContainerView; | 46 class InfoBarContainerView; |
48 class LocationBarView; | 47 class LocationBarView; |
49 class StatusBubbleViews; | 48 class StatusBubbleViews; |
50 class TabStrip; | 49 class TabStrip; |
51 class TabStripModel; | 50 class TabStripModel; |
52 class ToolbarView; | 51 class ToolbarView; |
53 | 52 |
54 #if defined(OS_WIN) | 53 #if defined(OS_WIN) |
55 class JumpList; | 54 class JumpList; |
56 #endif | 55 #endif |
57 | 56 |
58 #if defined(USE_AURA) | 57 #if defined(USE_AURA) |
59 class BrowserLauncherItemController; | 58 class BrowserLauncherItemController; |
60 #endif | 59 #endif |
61 | 60 |
| 61 namespace extensions { |
| 62 class Extension; |
| 63 } |
| 64 |
62 namespace views { | 65 namespace views { |
63 class AccessiblePaneView; | 66 class AccessiblePaneView; |
64 class ExternalFocusTracker; | 67 class ExternalFocusTracker; |
65 class WebView; | 68 class WebView; |
66 } | 69 } |
67 | 70 |
68 /////////////////////////////////////////////////////////////////////////////// | 71 /////////////////////////////////////////////////////////////////////////////// |
69 // BrowserView | 72 // BrowserView |
70 // | 73 // |
71 // A ClientView subclass that provides the contents of a browser window, | 74 // A ClientView subclass that provides the contents of a browser window, |
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 bool show_history) OVERRIDE; | 298 bool show_history) OVERRIDE; |
296 virtual void ShowAppMenu() OVERRIDE; | 299 virtual void ShowAppMenu() OVERRIDE; |
297 virtual bool PreHandleKeyboardEvent( | 300 virtual bool PreHandleKeyboardEvent( |
298 const content::NativeWebKeyboardEvent& event, | 301 const content::NativeWebKeyboardEvent& event, |
299 bool* is_keyboard_shortcut) OVERRIDE; | 302 bool* is_keyboard_shortcut) OVERRIDE; |
300 virtual void HandleKeyboardEvent( | 303 virtual void HandleKeyboardEvent( |
301 const content::NativeWebKeyboardEvent& event) OVERRIDE; | 304 const content::NativeWebKeyboardEvent& event) OVERRIDE; |
302 virtual void ShowCreateWebAppShortcutsDialog( | 305 virtual void ShowCreateWebAppShortcutsDialog( |
303 TabContentsWrapper* tab_contents) OVERRIDE; | 306 TabContentsWrapper* tab_contents) OVERRIDE; |
304 virtual void ShowCreateChromeAppShortcutsDialog( | 307 virtual void ShowCreateChromeAppShortcutsDialog( |
305 Profile*, const Extension* app) OVERRIDE; | 308 Profile*, const extensions::Extension* app) OVERRIDE; |
306 virtual void Cut() OVERRIDE; | 309 virtual void Cut() OVERRIDE; |
307 virtual void Copy() OVERRIDE; | 310 virtual void Copy() OVERRIDE; |
308 virtual void Paste() OVERRIDE; | 311 virtual void Paste() OVERRIDE; |
309 virtual void ShowInstant(TabContentsWrapper* preview) OVERRIDE; | 312 virtual void ShowInstant(TabContentsWrapper* preview) OVERRIDE; |
310 virtual void HideInstant() OVERRIDE; | 313 virtual void HideInstant() OVERRIDE; |
311 virtual gfx::Rect GetInstantBounds() OVERRIDE; | 314 virtual gfx::Rect GetInstantBounds() OVERRIDE; |
312 virtual WindowOpenDisposition GetDispositionForPopupBounds( | 315 virtual WindowOpenDisposition GetDispositionForPopupBounds( |
313 const gfx::Rect& bounds) OVERRIDE; | 316 const gfx::Rect& bounds) OVERRIDE; |
314 virtual FindBar* CreateFindBar() OVERRIDE; | 317 virtual FindBar* CreateFindBar() OVERRIDE; |
315 virtual void ShowAvatarBubble(content::WebContents* web_contents, | 318 virtual void ShowAvatarBubble(content::WebContents* web_contents, |
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
671 bool force_location_bar_focus_; | 674 bool force_location_bar_focus_; |
672 | 675 |
673 PendingFullscreenRequest fullscreen_request_; | 676 PendingFullscreenRequest fullscreen_request_; |
674 | 677 |
675 gfx::ScopedSysColorChangeListener color_change_listener_; | 678 gfx::ScopedSysColorChangeListener color_change_listener_; |
676 | 679 |
677 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 680 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
678 }; | 681 }; |
679 | 682 |
680 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 683 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
OLD | NEW |