| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 22 matching lines...) Expand all Loading... |
| 33 #if defined(OS_WIN) | 33 #if defined(OS_WIN) |
| 34 #include "chrome/browser/hang_monitor/hung_plugin_action.h" | 34 #include "chrome/browser/hang_monitor/hung_plugin_action.h" |
| 35 #include "chrome/browser/hang_monitor/hung_window_detector.h" | 35 #include "chrome/browser/hang_monitor/hung_window_detector.h" |
| 36 #include "views/controls/menu/native_menu_win.h" | 36 #include "views/controls/menu/native_menu_win.h" |
| 37 #endif | 37 #endif |
| 38 | 38 |
| 39 // NOTE: For more information about the objects and files in this directory, | 39 // NOTE: For more information about the objects and files in this directory, |
| 40 // view: http://dev.chromium.org/developers/design-documents/browser-window | 40 // view: http://dev.chromium.org/developers/design-documents/browser-window |
| 41 | 41 |
| 42 class AccessiblePaneView; | 42 class AccessiblePaneView; |
| 43 class AccessibleViewHelper; | |
| 44 class BookmarkBarView; | 43 class BookmarkBarView; |
| 45 class Browser; | 44 class Browser; |
| 46 class BrowserBubble; | 45 class BrowserBubble; |
| 47 class BrowserViewLayout; | 46 class BrowserViewLayout; |
| 48 class ContentsContainer; | 47 class ContentsContainer; |
| 49 class DownloadShelfView; | 48 class DownloadShelfView; |
| 50 class EncodingMenuModel; | 49 class EncodingMenuModel; |
| 51 class FullscreenExitBubble; | 50 class FullscreenExitBubble; |
| 52 class HtmlDialogUIDelegate; | 51 class HtmlDialogUIDelegate; |
| 53 class InfoBarContainer; | 52 class InfoBarContainer; |
| (...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 667 | 666 |
| 668 // The custom AeroPeek manager for Windows 7. | 667 // The custom AeroPeek manager for Windows 7. |
| 669 scoped_ptr<AeroPeekManager> aeropeek_manager_; | 668 scoped_ptr<AeroPeekManager> aeropeek_manager_; |
| 670 #endif | 669 #endif |
| 671 | 670 |
| 672 // The timer used to update frames for the Loading Animation. | 671 // The timer used to update frames for the Loading Animation. |
| 673 base::RepeatingTimer<BrowserView> loading_animation_timer_; | 672 base::RepeatingTimer<BrowserView> loading_animation_timer_; |
| 674 | 673 |
| 675 UnhandledKeyboardEventHandler unhandled_keyboard_event_handler_; | 674 UnhandledKeyboardEventHandler unhandled_keyboard_event_handler_; |
| 676 | 675 |
| 677 scoped_ptr<AccessibleViewHelper> accessible_view_helper_; | |
| 678 | |
| 679 NotificationRegistrar registrar_; | 676 NotificationRegistrar registrar_; |
| 680 | 677 |
| 681 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 678 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 682 }; | 679 }; |
| 683 | 680 |
| 684 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 681 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |