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

Side by Side Diff: chrome/test/base/test_browser_window.cc

Issue 12018007: Refactor BrowserWindow fullscreen and presentation on Mac to be consistent with other platforms. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge TOT Created 7 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "chrome/test/base/test_browser_window.h" 5 #include "chrome/test/base/test_browser_window.h"
6 6
7 #include "chrome/browser/ui/browser_list.h" 7 #include "chrome/browser/ui/browser_list.h"
8 #include "chrome/browser/ui/browser_list_observer.h" 8 #include "chrome/browser/ui/browser_list_observer.h"
9 #include "ui/gfx/rect.h" 9 #include "ui/gfx/rect.h"
10 10
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 104
105 DownloadShelf* TestBrowserWindow::GetDownloadShelf() { 105 DownloadShelf* TestBrowserWindow::GetDownloadShelf() {
106 return &download_shelf_; 106 return &download_shelf_;
107 } 107 }
108 108
109 int TestBrowserWindow::GetExtraRenderViewHeight() const { 109 int TestBrowserWindow::GetExtraRenderViewHeight() const {
110 return 0; 110 return 0;
111 } 111 }
112 112
113 #if defined(OS_MACOSX) 113 #if defined(OS_MACOSX)
114 bool TestBrowserWindow::InPresentationMode() { 114 bool TestBrowserWindow::IsFullscreenWithChrome() {
115 return false;
116 }
117
118 bool TestBrowserWindow::IsFullscreenWithoutChrome() {
115 return false; 119 return false;
116 } 120 }
117 #endif 121 #endif
118 122
119 gfx::Rect TestBrowserWindow::GetInstantBounds() { 123 gfx::Rect TestBrowserWindow::GetInstantBounds() {
120 return gfx::Rect(); 124 return gfx::Rect();
121 } 125 }
122 126
123 WindowOpenDisposition TestBrowserWindow::GetDispositionForPopupBounds( 127 WindowOpenDisposition TestBrowserWindow::GetDispositionForPopupBounds(
124 const gfx::Rect& bounds) { 128 const gfx::Rect& bounds) {
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 } 176 }
173 177
174 Browser* CreateBrowserWithTestWindowForParams(Browser::CreateParams* params) { 178 Browser* CreateBrowserWithTestWindowForParams(Browser::CreateParams* params) {
175 TestBrowserWindow* window = new TestBrowserWindow; 179 TestBrowserWindow* window = new TestBrowserWindow;
176 new TestBrowserWindowOwner(window); 180 new TestBrowserWindowOwner(window);
177 params->window = window; 181 params->window = window;
178 return new Browser(*params); 182 return new Browser(*params);
179 } 183 }
180 184
181 } // namespace chrome 185 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698