| 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_FIRST_RUN_TRY_CHROME_DIALOG_VIEW_H_ | 5 #ifndef CHROME_BROWSER_FIRST_RUN_TRY_CHROME_DIALOG_VIEW_H_ |
| 6 #define CHROME_BROWSER_FIRST_RUN_TRY_CHROME_DIALOG_VIEW_H_ | 6 #define CHROME_BROWSER_FIRST_RUN_TRY_CHROME_DIALOG_VIEW_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include <stddef.h> |
| 9 |
| 9 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" |
| 10 #include "ui/gfx/native_widget_types.h" | 12 #include "ui/gfx/native_widget_types.h" |
| 11 #include "ui/views/controls/button/button.h" | 13 #include "ui/views/controls/button/button.h" |
| 12 #include "ui/views/controls/link_listener.h" | 14 #include "ui/views/controls/link_listener.h" |
| 13 | 15 |
| 14 class ProcessSingleton; | 16 class ProcessSingleton; |
| 15 | 17 |
| 16 namespace gfx { | 18 namespace gfx { |
| 17 class Rect; | 19 class Rect; |
| 18 } | 20 } |
| 19 | 21 |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 views::RadioButton* try_chrome_; | 121 views::RadioButton* try_chrome_; |
| 120 views::RadioButton* kill_chrome_; | 122 views::RadioButton* kill_chrome_; |
| 121 views::RadioButton* dont_try_chrome_; | 123 views::RadioButton* dont_try_chrome_; |
| 122 views::Checkbox* make_default_; | 124 views::Checkbox* make_default_; |
| 123 Result result_; | 125 Result result_; |
| 124 | 126 |
| 125 DISALLOW_COPY_AND_ASSIGN(TryChromeDialogView); | 127 DISALLOW_COPY_AND_ASSIGN(TryChromeDialogView); |
| 126 }; | 128 }; |
| 127 | 129 |
| 128 #endif // CHROME_BROWSER_FIRST_RUN_TRY_CHROME_DIALOG_VIEW_H_ | 130 #endif // CHROME_BROWSER_FIRST_RUN_TRY_CHROME_DIALOG_VIEW_H_ |
| OLD | NEW |