summaryrefslogtreecommitdiffstats
path: root/chrome/browser/cocoa/browser_window_cocoa.mm
diff options
context:
space:
mode:
authorrohitrao@chromium.org <rohitrao@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-14 15:09:51 +0000
committerrohitrao@chromium.org <rohitrao@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-14 15:09:51 +0000
commit6af4014c7c0af5efc058aa9789c9d302c2f7873a (patch)
treed71c355805e37fd01a6fdd75b5aff7c2954fa781 /chrome/browser/cocoa/browser_window_cocoa.mm
parent11540af83d79c15475afadf8fc98822e3c3ca2c8 (diff)
downloadchromium_src-6af4014c7c0af5efc058aa9789c9d302c2f7873a.zip
chromium_src-6af4014c7c0af5efc058aa9789c9d302c2f7873a.tar.gz
chromium_src-6af4014c7c0af5efc058aa9789c9d302c2f7873a.tar.bz2
[Mac] Plumb through the Instant and omnibox popup bounds. This will allow instant results to properly move out of the way of the omnibox.
BUG=56385 TEST=Do a Google search with Instant turned on. The omnibox should not overlap with the results. Review URL: http://codereview.chromium.org/3735005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62550 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/cocoa/browser_window_cocoa.mm')
-rw-r--r--chrome/browser/cocoa/browser_window_cocoa.mm10
1 files changed, 7 insertions, 3 deletions
diff --git a/chrome/browser/cocoa/browser_window_cocoa.mm b/chrome/browser/cocoa/browser_window_cocoa.mm
index 108a9269..d339e9d 100644
--- a/chrome/browser/cocoa/browser_window_cocoa.mm
+++ b/chrome/browser/cocoa/browser_window_cocoa.mm
@@ -573,9 +573,13 @@ void BrowserWindowCocoa::HideInstant() {
}
gfx::Rect BrowserWindowCocoa::GetInstantBounds() {
- // TODO: implement me
- NOTIMPLEMENTED();
- return gfx::Rect();
+ // Flip coordinates based on the primary screen.
+ NSScreen* screen = [[NSScreen screens] objectAtIndex:0];
+ NSRect monitorFrame = [screen frame];
+ NSRect frame = [controller_ instantFrame];
+ gfx::Rect bounds(NSRectToCGRect(frame));
+ bounds.set_y(NSHeight(monitorFrame) - bounds.y() - bounds.height());
+ return bounds;
}
void BrowserWindowCocoa::Observe(NotificationType type,