OLD | NEW |
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_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_RESULT_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_RESULT_VIEW_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_RESULT_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_RESULT_VIEW_H_ |
7 | 7 |
| 8 #include <stddef.h> |
| 9 |
8 #include <vector> | 10 #include <vector> |
9 | 11 |
| 12 #include "base/macros.h" |
10 #include "components/omnibox/browser/autocomplete_match.h" | 13 #include "components/omnibox/browser/autocomplete_match.h" |
11 #include "components/omnibox/browser/suggestion_answer.h" | 14 #include "components/omnibox/browser/suggestion_answer.h" |
12 #include "third_party/skia/include/core/SkColor.h" | 15 #include "third_party/skia/include/core/SkColor.h" |
13 #include "ui/gfx/animation/animation_delegate.h" | 16 #include "ui/gfx/animation/animation_delegate.h" |
14 #include "ui/gfx/animation/slide_animation.h" | 17 #include "ui/gfx/animation/slide_animation.h" |
15 #include "ui/gfx/font_list.h" | 18 #include "ui/gfx/font_list.h" |
16 #include "ui/gfx/geometry/rect.h" | 19 #include "ui/gfx/geometry/rect.h" |
17 #include "ui/views/controls/image_view.h" | 20 #include "ui/views/controls/image_view.h" |
18 #include "ui/views/view.h" | 21 #include "ui/views/view.h" |
19 | 22 |
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
227 mutable scoped_ptr<gfx::RenderText> separator_rendertext_; | 230 mutable scoped_ptr<gfx::RenderText> separator_rendertext_; |
228 mutable scoped_ptr<gfx::RenderText> keyword_contents_rendertext_; | 231 mutable scoped_ptr<gfx::RenderText> keyword_contents_rendertext_; |
229 mutable scoped_ptr<gfx::RenderText> keyword_description_rendertext_; | 232 mutable scoped_ptr<gfx::RenderText> keyword_description_rendertext_; |
230 | 233 |
231 mutable int separator_width_; | 234 mutable int separator_width_; |
232 | 235 |
233 DISALLOW_COPY_AND_ASSIGN(OmniboxResultView); | 236 DISALLOW_COPY_AND_ASSIGN(OmniboxResultView); |
234 }; | 237 }; |
235 | 238 |
236 #endif // CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_RESULT_VIEW_H_ | 239 #endif // CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_RESULT_VIEW_H_ |
OLD | NEW |