| 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_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/ref_counted.h" | 9 #include "base/ref_counted.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 "content/browser/tab_contents/tab_contents_delegate.h" |
| 13 #include "ui/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; |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 explicit EulaScreen(WizardScreenDelegate* delegate) | 160 explicit EulaScreen(WizardScreenDelegate* delegate) |
| 161 : DefaultViewScreen<EulaView>(delegate) { | 161 : DefaultViewScreen<EulaView>(delegate) { |
| 162 } | 162 } |
| 163 private: | 163 private: |
| 164 DISALLOW_COPY_AND_ASSIGN(EulaScreen); | 164 DISALLOW_COPY_AND_ASSIGN(EulaScreen); |
| 165 }; | 165 }; |
| 166 | 166 |
| 167 } // namespace chromeos | 167 } // namespace chromeos |
| 168 | 168 |
| 169 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_EULA_VIEW_H_ | 169 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_EULA_VIEW_H_ |
| OLD | NEW |