| 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 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 557 // The custom AeroPeek manager for Windows 7. | 557 // The custom AeroPeek manager for Windows 7. |
| 558 scoped_ptr<AeroPeekManager> aeropeek_manager_; | 558 scoped_ptr<AeroPeekManager> aeropeek_manager_; |
| 559 #endif | 559 #endif |
| 560 | 560 |
| 561 // The timer used to update frames for the Loading Animation. | 561 // The timer used to update frames for the Loading Animation. |
| 562 base::RepeatingTimer<BrowserView> loading_animation_timer_; | 562 base::RepeatingTimer<BrowserView> loading_animation_timer_; |
| 563 | 563 |
| 564 // A bottom bar for showing extensions. | 564 // A bottom bar for showing extensions. |
| 565 ExtensionShelf* extension_shelf_; | 565 ExtensionShelf* extension_shelf_; |
| 566 | 566 |
| 567 // The accessible name of this view. | |
| 568 std::wstring accessible_name_; | |
| 569 | |
| 570 scoped_ptr<BrowserExtender> browser_extender_; | 567 scoped_ptr<BrowserExtender> browser_extender_; |
| 571 | 568 |
| 572 // Last focused view that issued a tab traversal. | 569 // Last focused view that issued a tab traversal. |
| 573 int last_focused_view_storage_id_; | 570 int last_focused_view_storage_id_; |
| 574 | 571 |
| 575 UnhandledKeyboardEventHandler unhandled_keyboard_event_handler_; | 572 UnhandledKeyboardEventHandler unhandled_keyboard_event_handler_; |
| 576 | 573 |
| 577 scoped_ptr<AccessibleViewHelper> accessible_view_helper_; | 574 scoped_ptr<AccessibleViewHelper> accessible_view_helper_; |
| 578 #if defined(OS_LINUX) | 575 #if defined(OS_LINUX) |
| 579 scoped_ptr<AccessibleWidgetHelper> accessible_widget_helper_; | 576 scoped_ptr<AccessibleWidgetHelper> accessible_widget_helper_; |
| 580 #endif | 577 #endif |
| 581 | 578 |
| 582 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 579 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 583 }; | 580 }; |
| 584 | 581 |
| 585 #endif // CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ | 582 #endif // CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |