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

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

Issue 2811713002: Check the available storage size before starting encryption migration. (Closed)
Patch Set: Always check the available storage. 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
1 // Copyright 2017 The Chromium Authors. All rights reserved. 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 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_SCREENS_ENCRYPTION_MIGRATION_SCREEN_VIEW_H _ 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_ENCRYPTION_MIGRATION_SCREEN_VIEW_H _
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_ENCRYPTION_MIGRATION_SCREEN_VIEW_H _ 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_ENCRYPTION_MIGRATION_SCREEN_VIEW_H _
7 7
8 #include "base/callback_forward.h" 8 #include "base/callback_forward.h"
9 #include "chrome/browser/chromeos/login/oobe_screen.h" 9 #include "chrome/browser/chromeos/login/oobe_screen.h"
10 10
(...skipping 21 matching lines...) Expand all
32 OobeScreen::SCREEN_ENCRYPTION_MIGRATION; 32 OobeScreen::SCREEN_ENCRYPTION_MIGRATION;
33 33
34 virtual ~EncryptionMigrationScreenView() {} 34 virtual ~EncryptionMigrationScreenView() {}
35 35
36 virtual void Show() = 0; 36 virtual void Show() = 0;
37 virtual void Hide() = 0; 37 virtual void Hide() = 0;
38 virtual void SetDelegate(Delegate* delegate) = 0; 38 virtual void SetDelegate(Delegate* delegate) = 0;
39 virtual void SetUserContext(const UserContext& user_context) = 0; 39 virtual void SetUserContext(const UserContext& user_context) = 0;
40 virtual void SetShouldResume(bool should_resume) = 0; 40 virtual void SetShouldResume(bool should_resume) = 0;
41 virtual void SetContinueLoginCallback(ContinueLoginCallback callback) = 0; 41 virtual void SetContinueLoginCallback(ContinueLoginCallback callback) = 0;
42 virtual void SetupInitialView() = 0;
42 }; 43 };
43 44
44 } // namespace chromeos 45 } // namespace chromeos
45 46
46 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_ENCRYPTION_MIGRATION_SCREEN_VIE W_H_ 47 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_ENCRYPTION_MIGRATION_SCREEN_VIE W_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698