| 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 "gfx/canvas.h" |
| 10 | 10 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 WizardScreenDelegate* delegate() { return delegate_; } | 45 WizardScreenDelegate* delegate() { return delegate_; } |
| 46 | 46 |
| 47 // Refreshes screen state. Should be called after view is made visible. | 47 // Refreshes screen state. Should be called after view is made visible. |
| 48 virtual void Refresh() = 0; | 48 virtual void Refresh() = 0; |
| 49 | 49 |
| 50 private: | 50 private: |
| 51 WizardScreenDelegate* delegate_; | 51 WizardScreenDelegate* delegate_; |
| 52 }; | 52 }; |
| 53 | 53 |
| 54 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_SCREEN_H_ | 54 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_SCREEN_H_ |
| 55 | |
| OLD | NEW |