| 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 #ifndef CHROME_BROWSER_UI_VIEWS_FIRST_RUN_SEARCH_ENGINE_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_FIRST_RUN_SEARCH_ENGINE_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_FIRST_RUN_SEARCH_ENGINE_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_FIRST_RUN_SEARCH_ENGINE_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "chrome/browser/search_engines/template_url_service_observer.h" | 11 #include "chrome/browser/search_engines/template_url_service_observer.h" |
| 12 #include "ui/gfx/size.h" | 12 #include "ui/gfx/size.h" |
| 13 #include "ui/views/widget/widget_delegate.h" |
| 13 #include "views/controls/button/text_button.h" | 14 #include "views/controls/button/text_button.h" |
| 14 #include "views/view.h" | 15 #include "views/view.h" |
| 15 #include "views/widget/widget_delegate.h" | |
| 16 | 16 |
| 17 class Profile; | 17 class Profile; |
| 18 class TemplateURL; | 18 class TemplateURL; |
| 19 class TemplateURLService; | 19 class TemplateURLService; |
| 20 class ThemeService; | 20 class ThemeService; |
| 21 | 21 |
| 22 namespace views { | 22 namespace views { |
| 23 class ImageView; | 23 class ImageView; |
| 24 class Label; | 24 class Label; |
| 25 } | 25 } |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 views::ImageView* background_image_; | 132 views::ImageView* background_image_; |
| 133 | 133 |
| 134 // UI elements: | 134 // UI elements: |
| 135 views::Label* title_label_; | 135 views::Label* title_label_; |
| 136 views::Label* text_label_; | 136 views::Label* text_label_; |
| 137 | 137 |
| 138 DISALLOW_COPY_AND_ASSIGN(FirstRunSearchEngineView); | 138 DISALLOW_COPY_AND_ASSIGN(FirstRunSearchEngineView); |
| 139 }; | 139 }; |
| 140 | 140 |
| 141 #endif // CHROME_BROWSER_UI_VIEWS_FIRST_RUN_SEARCH_ENGINE_VIEW_H_ | 141 #endif // CHROME_BROWSER_UI_VIEWS_FIRST_RUN_SEARCH_ENGINE_VIEW_H_ |
| OLD | NEW |