| Index: chrome/test/test_browser_window.cc
|
| ===================================================================
|
| --- chrome/test/test_browser_window.cc (revision 94779)
|
| +++ chrome/test/test_browser_window.cc (working copy)
|
| @@ -1,98 +0,0 @@
|
| -// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#include "chrome/test/test_browser_window.h"
|
| -
|
| -#include "ui/gfx/rect.h"
|
| -
|
| -TestBrowserWindow::TestBrowserWindow(Browser* browser) {}
|
| -
|
| -TestBrowserWindow::~TestBrowserWindow() {}
|
| -
|
| -bool TestBrowserWindow::IsActive() const {
|
| - return false;
|
| -}
|
| -
|
| -gfx::NativeWindow TestBrowserWindow::GetNativeHandle() {
|
| - return NULL;
|
| -}
|
| -
|
| -BrowserWindowTesting* TestBrowserWindow::GetBrowserWindowTesting() {
|
| - return NULL;
|
| -}
|
| -
|
| -StatusBubble* TestBrowserWindow::GetStatusBubble() {
|
| - return NULL;
|
| -}
|
| -
|
| -gfx::Rect TestBrowserWindow::GetRestoredBounds() const {
|
| - return gfx::Rect();
|
| -}
|
| -
|
| -gfx::Rect TestBrowserWindow::GetBounds() const {
|
| - return gfx::Rect();
|
| -}
|
| -
|
| -bool TestBrowserWindow::IsMaximized() const {
|
| - return false;
|
| -}
|
| -
|
| -bool TestBrowserWindow::IsFullscreen() const {
|
| - return false;
|
| -}
|
| -
|
| -bool TestBrowserWindow::IsFullscreenBubbleVisible() const {
|
| - return false;
|
| -}
|
| -
|
| -LocationBar* TestBrowserWindow::GetLocationBar() const {
|
| - return const_cast<TestLocationBar*>(&location_bar_);
|
| -}
|
| -
|
| -bool TestBrowserWindow::PreHandleKeyboardEvent(
|
| - const NativeWebKeyboardEvent& event,
|
| - bool* is_keyboard_shortcut) {
|
| - return false;
|
| -}
|
| -
|
| -bool TestBrowserWindow::IsBookmarkBarVisible() const {
|
| - return false;
|
| -}
|
| -
|
| -bool TestBrowserWindow::IsBookmarkBarAnimating() const {
|
| - return false;
|
| -}
|
| -
|
| -bool TestBrowserWindow::IsTabStripEditable() const {
|
| - return false;
|
| -}
|
| -
|
| -bool TestBrowserWindow::IsToolbarVisible() const {
|
| - return false;
|
| -}
|
| -
|
| -void TestBrowserWindow::ShowAboutChromeDialog() {
|
| - return;
|
| -}
|
| -
|
| -bool TestBrowserWindow::IsDownloadShelfVisible() const {
|
| - return false;
|
| -}
|
| -
|
| -DownloadShelf* TestBrowserWindow::GetDownloadShelf() {
|
| - return NULL;
|
| -}
|
| -
|
| -int TestBrowserWindow::GetExtraRenderViewHeight() const {
|
| - return 0;
|
| -}
|
| -
|
| -gfx::Rect TestBrowserWindow::GetInstantBounds() {
|
| - return gfx::Rect();
|
| -}
|
| -
|
| -WindowOpenDisposition TestBrowserWindow::GetDispositionForPopupBounds(
|
| - const gfx::Rect& bounds) {
|
| - return NEW_POPUP;
|
| -}
|
|
|