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_ARC_ARC_MIGRATION_GUIDE_NOTIFICATION_H_ | |
6 #define CHROME_BROWSER_CHROMEOS_ARC_ARC_MIGRATION_GUIDE_NOTIFICATION_H_ | |
7 | |
8 class Profile; | |
9 | |
10 namespace arc { | |
11 | |
12 // Show a notification for guiding the user for file system migration. | |
khmel
2017/04/10 19:10:10
nit: Shows
kinaba
2017/04/11 00:59:20
Done.
| |
13 // This is used when an ARC app is launched while ARC is temporaliry disabled | |
14 // due to the file system incompatibility. | |
15 void ShowArcMigrationGuideNotification(Profile* profile); | |
16 | |
17 } // namespace arc | |
18 | |
19 #endif // CHROME_BROWSER_CHROMEOS_ARC_ARC_MIGRATION_GUIDE_NOTIFICATION_H_ | |
OLD | NEW |