OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/browser/ui/views/find_bar_host.h" | 5 #include "chrome/browser/ui/views/find_bar_host.h" |
6 | 6 |
7 #include "chrome/browser/ui/find_bar/find_bar_controller.h" | |
8 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" | |
9 #include "chrome/browser/ui/views/frame/browser_view.h" | |
10 #include "chrome/browser/ui/views/tab_contents/tab_contents_view_views.h" | |
11 #include "content/browser/tab_contents/tab_contents.h" | |
12 #include "content/browser/tab_contents/tab_contents_view.h" | |
13 | |
14 void FindBarHost::AudibleAlert() { | 7 void FindBarHost::AudibleAlert() { |
15 // TODO(davemoore) implement. | 8 // TODO(davemoore) implement. |
16 NOTIMPLEMENTED(); | 9 NOTIMPLEMENTED(); |
17 } | 10 } |
18 | 11 |
19 void FindBarHost::GetWidgetPositionNative(gfx::Rect* avoid_overlapping_rect) { | |
20 gfx::Rect frame_rect = host()->GetTopLevelWidget()->GetWindowScreenBounds(); | |
21 TabContentsView* tab_view = find_bar_controller_->tab_contents()->view(); | |
22 gfx::Rect webcontents_rect; | |
23 tab_view->GetViewBounds(&webcontents_rect); | |
24 avoid_overlapping_rect->Offset(0, webcontents_rect.y() - frame_rect.y()); | |
25 } | |
26 | |
27 bool FindBarHost::ShouldForwardKeyEventToWebpageNative( | 12 bool FindBarHost::ShouldForwardKeyEventToWebpageNative( |
28 const views::KeyEvent& key_event) { | 13 const views::KeyEvent& key_event) { |
29 return true; | 14 return true; |
30 } | 15 } |
OLD | NEW |