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 611 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
622 | 622 |
623 // The TabStrip. | 623 // The TabStrip. |
624 AbstractTabStripView* tabstrip_; | 624 AbstractTabStripView* tabstrip_; |
625 | 625 |
626 // The Toolbar containing the navigation buttons, menus and the address bar. | 626 // The Toolbar containing the navigation buttons, menus and the address bar. |
627 ToolbarView* toolbar_; | 627 ToolbarView* toolbar_; |
628 | 628 |
629 // The Bookmark Bar View for this window. Lazily created. | 629 // The Bookmark Bar View for this window. Lazily created. |
630 scoped_ptr<BookmarkBarView> bookmark_bar_view_; | 630 scoped_ptr<BookmarkBarView> bookmark_bar_view_; |
631 | 631 |
632 #if !defined(OS_CHROMEOS) || defined(USE_AURA) | 632 #if !defined(OS_CHROMEOS) |
633 // The download shelf view (view at the bottom of the page). ChromiumOS | 633 // The download shelf view (view at the bottom of the page). ChromiumOS |
634 // uses ActiveDownloadsUI instead. | 634 // uses ActiveDownloadsUI instead. |
635 scoped_ptr<DownloadShelfView> download_shelf_; | 635 scoped_ptr<DownloadShelfView> download_shelf_; |
636 #endif | 636 #endif |
637 | 637 |
638 // The InfoBarContainerView that contains InfoBars for the current tab. | 638 // The InfoBarContainerView that contains InfoBars for the current tab. |
639 InfoBarContainerView* infobar_container_; | 639 InfoBarContainerView* infobar_container_; |
640 | 640 |
641 // The view that contains sidebar for the current tab. | 641 // The view that contains sidebar for the current tab. |
642 TabContentsContainer* sidebar_container_; | 642 TabContentsContainer* sidebar_container_; |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
724 // If this flag is set then SetFocusToLocationBar() will set focus to the | 724 // If this flag is set then SetFocusToLocationBar() will set focus to the |
725 // location bar even if the browser window is not active. | 725 // location bar even if the browser window is not active. |
726 bool force_location_bar_focus_; | 726 bool force_location_bar_focus_; |
727 | 727 |
728 PendingFullscreenRequest fullscreen_request_; | 728 PendingFullscreenRequest fullscreen_request_; |
729 | 729 |
730 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 730 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
731 }; | 731 }; |
732 | 732 |
733 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 733 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
OLD | NEW |