| 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_WIZARD_SCREEN_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_SCREEN_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_SCREEN_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_SCREEN_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "gfx/canvas.h" | 9 #include "ui/gfx/canvas.h" |
| 10 | 10 |
| 11 class WizardScreen; | 11 class WizardScreen; |
| 12 namespace chromeos { | 12 namespace chromeos { |
| 13 class ScreenObserver; | 13 class ScreenObserver; |
| 14 } // namespace chromeos | 14 } // namespace chromeos |
| 15 namespace gfx { | 15 namespace gfx { |
| 16 class Size; | 16 class Size; |
| 17 } // namespace gfx | 17 } // namespace gfx |
| 18 namespace views { | 18 namespace views { |
| 19 class View; | 19 class View; |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 WizardScreenDelegate* delegate() { return delegate_; } | 53 WizardScreenDelegate* delegate() { return delegate_; } |
| 54 | 54 |
| 55 // Refreshes screen state. Should be called after view is made visible. | 55 // Refreshes screen state. Should be called after view is made visible. |
| 56 virtual void Refresh() = 0; | 56 virtual void Refresh() = 0; |
| 57 | 57 |
| 58 private: | 58 private: |
| 59 WizardScreenDelegate* delegate_; | 59 WizardScreenDelegate* delegate_; |
| 60 }; | 60 }; |
| 61 | 61 |
| 62 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_SCREEN_H_ | 62 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_SCREEN_H_ |
| OLD | NEW |