OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_VIEWS_FRAME_BROWSER_VIEW_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ |
6 #define CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ | 6 #define CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 28 matching lines...) Expand all Loading... |
39 class Browser; | 39 class Browser; |
40 class BrowserBubble; | 40 class BrowserBubble; |
41 class BrowserExtender; | 41 class BrowserExtender; |
42 class BrowserViewLayout; | 42 class BrowserViewLayout; |
43 class DownloadShelfView; | 43 class DownloadShelfView; |
44 class EncodingMenuModel; | 44 class EncodingMenuModel; |
45 class ExtensionShelf; | 45 class ExtensionShelf; |
46 class FullscreenExitBubble; | 46 class FullscreenExitBubble; |
47 class HtmlDialogUIDelegate; | 47 class HtmlDialogUIDelegate; |
48 class InfoBarContainer; | 48 class InfoBarContainer; |
49 #if defined(OS_WIN) | |
50 class AeroPeekManager; | |
51 class JumpList; | |
52 #endif | |
53 class LocationBarView; | 49 class LocationBarView; |
54 class SideTabStrip; | 50 class SideTabStrip; |
55 class StatusBubbleViews; | 51 class StatusBubbleViews; |
56 class TabContentsContainer; | 52 class TabContentsContainer; |
57 class ToolbarView; | 53 class ToolbarView; |
58 class ZoomMenuModel; | 54 class ZoomMenuModel; |
59 | 55 |
| 56 #if defined(OS_WIN) |
| 57 class AeroPeekManager; |
| 58 class JumpList; |
| 59 #elif defined(OS_LINUX) |
| 60 class AccessibleWidgetHelper; |
| 61 #endif |
| 62 |
60 namespace views { | 63 namespace views { |
61 class ExternalFocusTracker; | 64 class ExternalFocusTracker; |
62 class Menu; | 65 class Menu; |
63 class SingleSplitView; | 66 class SingleSplitView; |
64 } | 67 } |
65 | 68 |
66 /////////////////////////////////////////////////////////////////////////////// | 69 /////////////////////////////////////////////////////////////////////////////// |
67 // BrowserView | 70 // BrowserView |
68 // | 71 // |
69 // A ClientView subclass that provides the contents of a browser window, | 72 // A ClientView subclass that provides the contents of a browser window, |
(...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
563 // The accessible name of this view. | 566 // The accessible name of this view. |
564 std::wstring accessible_name_; | 567 std::wstring accessible_name_; |
565 | 568 |
566 scoped_ptr<BrowserExtender> browser_extender_; | 569 scoped_ptr<BrowserExtender> browser_extender_; |
567 | 570 |
568 // Last focused view that issued a tab traversal. | 571 // Last focused view that issued a tab traversal. |
569 int last_focused_view_storage_id_; | 572 int last_focused_view_storage_id_; |
570 | 573 |
571 UnhandledKeyboardEventHandler unhandled_keyboard_event_handler_; | 574 UnhandledKeyboardEventHandler unhandled_keyboard_event_handler_; |
572 | 575 |
| 576 #if defined(OS_LINUX) |
| 577 scoped_ptr<AccessibleWidgetHelper> accessible_widget_helper_; |
| 578 #endif |
| 579 |
573 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 580 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
574 }; | 581 }; |
575 | 582 |
576 #endif // CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ | 583 #endif // CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ |
OLD | NEW |