OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_BROWSER_VIEWS_FIND_BAR_HOST_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_FIND_BAR_HOST_H_ |
6 #define CHROME_BROWSER_VIEWS_FIND_BAR_HOST_H_ | 6 #define CHROME_BROWSER_VIEWS_FIND_BAR_HOST_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "app/animation.h" | |
10 #include "chrome/browser/find_bar.h" | 9 #include "chrome/browser/find_bar.h" |
11 #include "chrome/browser/renderer_host/render_view_host_delegate.h" | 10 #include "chrome/browser/renderer_host/render_view_host_delegate.h" |
12 #include "chrome/browser/views/dropdown_bar_host.h" | 11 #include "chrome/browser/views/dropdown_bar_host.h" |
13 #include "gfx/native_widget_types.h" | 12 #include "gfx/native_widget_types.h" |
14 #include "gfx/rect.h" | 13 #include "gfx/rect.h" |
15 #include "views/controls/textfield/textfield.h" | 14 #include "views/controls/textfield/textfield.h" |
16 | 15 |
17 class BrowserView; | 16 class BrowserView; |
18 class FindBarController; | 17 class FindBarController; |
19 class FindBarView; | 18 class FindBarView; |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 // Returns the FindBarView. | 125 // Returns the FindBarView. |
127 FindBarView* find_bar_view(); | 126 FindBarView* find_bar_view(); |
128 | 127 |
129 // A pointer back to the owning controller. | 128 // A pointer back to the owning controller. |
130 FindBarController* find_bar_controller_; | 129 FindBarController* find_bar_controller_; |
131 | 130 |
132 DISALLOW_COPY_AND_ASSIGN(FindBarHost); | 131 DISALLOW_COPY_AND_ASSIGN(FindBarHost); |
133 }; | 132 }; |
134 | 133 |
135 #endif // CHROME_BROWSER_VIEWS_FIND_BAR_HOST_H_ | 134 #endif // CHROME_BROWSER_VIEWS_FIND_BAR_HOST_H_ |
OLD | NEW |