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 14 matching lines...) Expand all Loading... |
25 #include "ui/base/models/simple_menu_model.h" | 25 #include "ui/base/models/simple_menu_model.h" |
26 #include "ui/gfx/sys_color_change_listener.h" | 26 #include "ui/gfx/sys_color_change_listener.h" |
27 #include "ui/gfx/native_widget_types.h" | 27 #include "ui/gfx/native_widget_types.h" |
28 #include "ui/views/controls/single_split_view_listener.h" | 28 #include "ui/views/controls/single_split_view_listener.h" |
29 #include "ui/views/widget/widget_delegate.h" | 29 #include "ui/views/widget/widget_delegate.h" |
30 #include "ui/views/window/client_view.h" | 30 #include "ui/views/window/client_view.h" |
31 | 31 |
32 #if defined(OS_WIN) | 32 #if defined(OS_WIN) |
33 #include "chrome/browser/hang_monitor/hung_plugin_action.h" | 33 #include "chrome/browser/hang_monitor/hung_plugin_action.h" |
34 #include "chrome/browser/hang_monitor/hung_window_detector.h" | 34 #include "chrome/browser/hang_monitor/hung_window_detector.h" |
35 #include "ui/views/controls/menu/native_menu_win.h" | |
36 #endif | 35 #endif |
37 | 36 |
38 // 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, |
39 // view: http://dev.chromium.org/developers/design-documents/browser-window | 38 // view: http://dev.chromium.org/developers/design-documents/browser-window |
40 | 39 |
41 class BookmarkBarView; | 40 class BookmarkBarView; |
42 class Browser; | 41 class Browser; |
43 class BrowserViewLayout; | 42 class BrowserViewLayout; |
44 class ContentsContainer; | 43 class ContentsContainer; |
45 class DownloadShelfView; | 44 class DownloadShelfView; |
(...skipping 10 matching lines...) Expand all Loading... |
56 class JumpList; | 55 class JumpList; |
57 #endif | 56 #endif |
58 | 57 |
59 #if defined(USE_AURA) | 58 #if defined(USE_AURA) |
60 class LauncherUpdater; | 59 class LauncherUpdater; |
61 #endif | 60 #endif |
62 | 61 |
63 namespace views { | 62 namespace views { |
64 class AccessiblePaneView; | 63 class AccessiblePaneView; |
65 class ExternalFocusTracker; | 64 class ExternalFocusTracker; |
66 class Menu; | |
67 class WebView; | 65 class WebView; |
68 } | 66 } |
69 | 67 |
70 /////////////////////////////////////////////////////////////////////////////// | 68 /////////////////////////////////////////////////////////////////////////////// |
71 // BrowserView | 69 // BrowserView |
72 // | 70 // |
73 // A ClientView subclass that provides the contents of a browser window, | 71 // A ClientView subclass that provides the contents of a browser window, |
74 // including the TabStrip, toolbars, download shelves, the content area etc. | 72 // including the TabStrip, toolbars, download shelves, the content area etc. |
75 // | 73 // |
76 class BrowserView : public BrowserWindow, | 74 class BrowserView : public BrowserWindow, |
(...skipping 601 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
678 bool force_location_bar_focus_; | 676 bool force_location_bar_focus_; |
679 | 677 |
680 PendingFullscreenRequest fullscreen_request_; | 678 PendingFullscreenRequest fullscreen_request_; |
681 | 679 |
682 gfx::ScopedSysColorChangeListener color_change_listener_; | 680 gfx::ScopedSysColorChangeListener color_change_listener_; |
683 | 681 |
684 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 682 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
685 }; | 683 }; |
686 | 684 |
687 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 685 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
OLD | NEW |