Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(86)

Side by Side Diff: chrome/browser/chromeos/login/screens/encryption_migration_screen.h

Issue 2779933002: Add a screen to migrate filesystem encryption from eCryptfs to ext4 crypto. (Closed)
Patch Set: Address review comments. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/oobe_screen.cc ('k') | chrome/browser/chromeos/login/screens/encryption_migration_screen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698