Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(64)

Side by Side Diff: chrome/browser/ui/views/frame/browser_view.h

Issue 8585040: Fix DownloadTests and change cros/aura to use shelf (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review nits Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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) 632 #if !defined(OS_CHROMEOS) || defined(USE_AURA)
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
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_
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/download/download_started_animation_win.cc ('k') | chrome/browser/ui/views/frame/browser_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698