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

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

Issue 12803011: Add BaseWindow::GetContentBounds() and use in WindowController::CreateWindowValue() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix osx build Created 7 years, 9 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/views/frame/browser_view.cc ('k') | chrome/test/base/test_browser_window.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) 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 #ifndef CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ 5 #ifndef CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_
6 #define CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ 6 #define CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 30 matching lines...) Expand all
41 virtual StatusBubble* GetStatusBubble() OVERRIDE; 41 virtual StatusBubble* GetStatusBubble() OVERRIDE;
42 virtual void UpdateTitleBar() OVERRIDE {} 42 virtual void UpdateTitleBar() OVERRIDE {}
43 virtual void BookmarkBarStateChanged( 43 virtual void BookmarkBarStateChanged(
44 BookmarkBar::AnimateChangeType change_type) OVERRIDE {} 44 BookmarkBar::AnimateChangeType change_type) OVERRIDE {}
45 virtual void UpdateDevTools() OVERRIDE {} 45 virtual void UpdateDevTools() OVERRIDE {}
46 virtual void UpdateLoadingAnimations(bool should_animate) OVERRIDE {} 46 virtual void UpdateLoadingAnimations(bool should_animate) OVERRIDE {}
47 virtual void SetStarredState(bool is_starred) OVERRIDE {} 47 virtual void SetStarredState(bool is_starred) OVERRIDE {}
48 virtual void ZoomChangedForActiveTab(bool can_show_bubble) OVERRIDE {} 48 virtual void ZoomChangedForActiveTab(bool can_show_bubble) OVERRIDE {}
49 virtual gfx::Rect GetRestoredBounds() const OVERRIDE; 49 virtual gfx::Rect GetRestoredBounds() const OVERRIDE;
50 virtual gfx::Rect GetBounds() const OVERRIDE; 50 virtual gfx::Rect GetBounds() const OVERRIDE;
51 virtual gfx::Rect GetContentBounds() const OVERRIDE;
51 virtual bool IsMaximized() const OVERRIDE; 52 virtual bool IsMaximized() const OVERRIDE;
52 virtual bool IsMinimized() const OVERRIDE; 53 virtual bool IsMinimized() const OVERRIDE;
53 virtual void Maximize() OVERRIDE {} 54 virtual void Maximize() OVERRIDE {}
54 virtual void Minimize() OVERRIDE {} 55 virtual void Minimize() OVERRIDE {}
55 virtual void Restore() OVERRIDE {} 56 virtual void Restore() OVERRIDE {}
56 virtual void EnterFullscreen( 57 virtual void EnterFullscreen(
57 const GURL& url, FullscreenExitBubbleType type) OVERRIDE {} 58 const GURL& url, FullscreenExitBubbleType type) OVERRIDE {}
58 virtual void ExitFullscreen() OVERRIDE {} 59 virtual void ExitFullscreen() OVERRIDE {}
59 virtual void UpdateFullscreenExitBubbleContent( 60 virtual void UpdateFullscreenExitBubbleContent(
60 const GURL& url, 61 const GURL& url,
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 }; 149 };
149 150
150 namespace chrome { 151 namespace chrome {
151 152
152 // Helper that handle the lifetime of TestBrowserWindow instances. 153 // Helper that handle the lifetime of TestBrowserWindow instances.
153 Browser* CreateBrowserWithTestWindowForParams(Browser::CreateParams* params); 154 Browser* CreateBrowserWithTestWindowForParams(Browser::CreateParams* params);
154 155
155 } // namespace chrome 156 } // namespace chrome
156 157
157 #endif // CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ 158 #endif // CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/frame/browser_view.cc ('k') | chrome/test/base/test_browser_window.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698