| 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/controls/button/text_button.h" | 13 #include "ui/views/controls/button/text_button.h" |
| 14 #include "ui/views/view.h" |
| 14 #include "ui/views/widget/widget_delegate.h" | 15 #include "ui/views/widget/widget_delegate.h" |
| 15 #include "views/view.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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 | 157 |
| 158 // Defaults to true. Indicates that the current message loop should be quit | 158 // Defaults to true. Indicates that the current message loop should be quit |
| 159 // when the window is closed. This is false in tests when this dialog does not | 159 // when the window is closed. This is false in tests when this dialog does not |
| 160 // spin its own message loop. | 160 // spin its own message loop. |
| 161 bool quit_on_closing_; | 161 bool quit_on_closing_; |
| 162 | 162 |
| 163 DISALLOW_COPY_AND_ASSIGN(FirstRunSearchEngineView); | 163 DISALLOW_COPY_AND_ASSIGN(FirstRunSearchEngineView); |
| 164 }; | 164 }; |
| 165 | 165 |
| 166 #endif // CHROME_BROWSER_UI_VIEWS_FIRST_RUN_SEARCH_ENGINE_VIEW_H_ | 166 #endif // CHROME_BROWSER_UI_VIEWS_FIRST_RUN_SEARCH_ENGINE_VIEW_H_ |
| OLD | NEW |