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_CHROMEOS_LOGIN_EULA_VIEW_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_EULA_VIEW_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_EULA_VIEW_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_EULA_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/scoped_ptr.h" | 9 #include "base/scoped_ptr.h" |
10 #include "chrome/browser/chromeos/login/message_bubble.h" | 10 #include "chrome/browser/chromeos/login/message_bubble.h" |
11 #include "chrome/browser/chromeos/login/view_screen.h" | 11 #include "chrome/browser/chromeos/login/view_screen.h" |
12 #include "chrome/browser/tab_contents/tab_contents_delegate.h" | 12 #include "chrome/browser/tab_contents/tab_contents_delegate.h" |
13 #include "gfx/native_widget_types.h" | 13 #include "ui/gfx/native_widget_types.h" |
14 #include "views/controls/button/button.h" | 14 #include "views/controls/button/button.h" |
15 #include "views/controls/link.h" | 15 #include "views/controls/link.h" |
16 #include "views/view.h" | 16 #include "views/view.h" |
17 | 17 |
18 namespace views { | 18 namespace views { |
19 | 19 |
20 class Checkbox; | 20 class Checkbox; |
21 class Label; | 21 class Label; |
22 class Link; | 22 class Link; |
23 class NativeButton; | 23 class NativeButton; |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 explicit EulaScreen(WizardScreenDelegate* delegate) | 161 explicit EulaScreen(WizardScreenDelegate* delegate) |
162 : DefaultViewScreen<EulaView>(delegate) { | 162 : DefaultViewScreen<EulaView>(delegate) { |
163 } | 163 } |
164 private: | 164 private: |
165 DISALLOW_COPY_AND_ASSIGN(EulaScreen); | 165 DISALLOW_COPY_AND_ASSIGN(EulaScreen); |
166 }; | 166 }; |
167 | 167 |
168 } // namespace chromeos | 168 } // namespace chromeos |
169 | 169 |
170 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_EULA_VIEW_H_ | 170 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_EULA_VIEW_H_ |
OLD | NEW |