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

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

Issue 9003014: Replace WebUI::tab_contents() with web_contents() and switch all users to use web_contents.h inst... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 8 years, 11 months 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
« no previous file with comments | « chrome/browser/ui/panels/panel.cc ('k') | chrome/browser/ui/views/frame/browser_view.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 virtual void ShowInstant(TabContentsWrapper* preview) OVERRIDE; 333 virtual void ShowInstant(TabContentsWrapper* preview) OVERRIDE;
334 virtual void HideInstant() OVERRIDE; 334 virtual void HideInstant() OVERRIDE;
335 virtual gfx::Rect GetInstantBounds() OVERRIDE; 335 virtual gfx::Rect GetInstantBounds() OVERRIDE;
336 virtual WindowOpenDisposition GetDispositionForPopupBounds( 336 virtual WindowOpenDisposition GetDispositionForPopupBounds(
337 const gfx::Rect& bounds) OVERRIDE; 337 const gfx::Rect& bounds) OVERRIDE;
338 virtual FindBar* CreateFindBar() OVERRIDE; 338 virtual FindBar* CreateFindBar() OVERRIDE;
339 #if defined(OS_CHROMEOS) 339 #if defined(OS_CHROMEOS)
340 virtual void ShowMobileSetup() OVERRIDE; 340 virtual void ShowMobileSetup() OVERRIDE;
341 virtual void ShowKeyboardOverlay(gfx::NativeWindow owning_window) OVERRIDE; 341 virtual void ShowKeyboardOverlay(gfx::NativeWindow owning_window) OVERRIDE;
342 #endif 342 #endif
343 virtual void ShowAvatarBubble(TabContents* tab_contents, 343 virtual void ShowAvatarBubble(content::WebContents* web_contents,
344 const gfx::Rect& rect) OVERRIDE; 344 const gfx::Rect& rect) OVERRIDE;
345 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; 345 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE;
346 346
347 // Overridden from BrowserWindowTesting: 347 // Overridden from BrowserWindowTesting:
348 virtual BookmarkBarView* GetBookmarkBarView() const OVERRIDE; 348 virtual BookmarkBarView* GetBookmarkBarView() const OVERRIDE;
349 virtual LocationBarView* GetLocationBarView() const OVERRIDE; 349 virtual LocationBarView* GetLocationBarView() const OVERRIDE;
350 virtual views::View* GetTabContentsContainerView() const OVERRIDE; 350 virtual views::View* GetTabContentsContainerView() const OVERRIDE;
351 virtual views::View* GetSidebarContainerView() const OVERRIDE; 351 virtual views::View* GetSidebarContainerView() const OVERRIDE;
352 virtual ToolbarView* GetToolbarView() const OVERRIDE; 352 virtual ToolbarView* GetToolbarView() const OVERRIDE;
353 353
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after
742 // If this flag is set then SetFocusToLocationBar() will set focus to the 742 // If this flag is set then SetFocusToLocationBar() will set focus to the
743 // location bar even if the browser window is not active. 743 // location bar even if the browser window is not active.
744 bool force_location_bar_focus_; 744 bool force_location_bar_focus_;
745 745
746 PendingFullscreenRequest fullscreen_request_; 746 PendingFullscreenRequest fullscreen_request_;
747 747
748 DISALLOW_COPY_AND_ASSIGN(BrowserView); 748 DISALLOW_COPY_AND_ASSIGN(BrowserView);
749 }; 749 };
750 750
751 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ 751 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/panels/panel.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