| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_ENCRYPTION_MIGRATION_SCREEN_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_ENCRYPTION_MIGRATION_SCREEN_H_ |
| 7 |
| 8 #include "chrome/browser/chromeos/login/screens/base_screen.h" |
| 9 #include "chrome/browser/chromeos/login/screens/encryption_migration_screen_view
.h" |
| 10 |
| 11 namespace chromeos { |
| 12 |
| 13 class EncryptionMigrationScreen |
| 14 : public BaseScreen, |
| 15 public EncryptionMigrationScreenView::Delegate { |
| 16 public: |
| 17 EncryptionMigrationScreen(BaseScreenDelegate* base_screen_delegate, |
| 18 EncryptionMigrationScreenView* view); |
| 19 ~EncryptionMigrationScreen() override; |
| 20 |
| 21 // BaseScreen: |
| 22 void Show() override; |
| 23 void Hide() override; |
| 24 |
| 25 // EncryptionMigrationScreenView::Delegate: |
| 26 void OnExit() override; |
| 27 void OnViewDestroyed(EncryptionMigrationScreenView* view) override; |
| 28 |
| 29 private: |
| 30 EncryptionMigrationScreenView* view_; |
| 31 |
| 32 DISALLOW_COPY_AND_ASSIGN(EncryptionMigrationScreen); |
| 33 }; |
| 34 |
| 35 } // namespace chromeos |
| 36 |
| 37 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_ENCRYPTION_MIGRATION_SCREEN_H_ |
| OLD | NEW |