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

Unified Diff: chrome/test/test_browser_window.cc

Issue 7541001: Move more files from chrome/test to chrome/test/base, part #3 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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 | « chrome/test/test_browser_window.h ('k') | chrome/test/test_launcher_utils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
-}
« no previous file with comments | « chrome/test/test_browser_window.h ('k') | chrome/test/test_launcher_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698