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

Unified Diff: chrome/browser/ui/views/frame/browser_view.h

Issue 13684002: cros: Instant extended support for immersive fullscreen (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/ui/views/frame/browser_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/frame/browser_view.h
diff --git a/chrome/browser/ui/views/frame/browser_view.h b/chrome/browser/ui/views/frame/browser_view.h
index eed6a11a759b622633b53444b3c6119bdbdb7230..dec31ea1ff7929ae95f804bf21fbefce03639731 100644
--- a/chrome/browser/ui/views/frame/browser_view.h
+++ b/chrome/browser/ui/views/frame/browser_view.h
@@ -435,6 +435,11 @@ class BrowserView : public BrowserWindow,
virtual void ChildPreferredSizeChanged(View* child) OVERRIDE;
virtual void GetAccessibleState(ui::AccessibleViewState* state) OVERRIDE;
+ views::SingleSplitView* GetContentsSplitForTest() { return contents_split_; }
+ // TODO(jamescook): Rename |contents_| and |contents_container_|.
+ ContentsContainer* GetContentsContainerForTest() { return contents_; }
+ views::WebView* GetContentsWebViewForTest() { return contents_container_; }
+
protected:
// Appends to |toolbars| a pointer to each AccessiblePaneView that
// can be traversed using F6, in the order they should be traversed.
@@ -650,6 +655,8 @@ class BrowserView : public BrowserWindow,
InfoBarContainerView* infobar_container_;
// The view that contains the selected WebContents.
+ // TODO(jamescook): Rename this to |contents_web_view_| in order to
+ // reduce confusion with ContentsContainer |contents_| below.
views::WebView* contents_container_;
// The view that contains devtools window for the selected WebContents.
« no previous file with comments | « no previous file | chrome/browser/ui/views/frame/browser_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698