Chromium Code Reviews| Index: chrome/browser/chromeos/arc/arc_migration_guide_notification.h |
| diff --git a/chrome/browser/chromeos/arc/arc_migration_guide_notification.h b/chrome/browser/chromeos/arc/arc_migration_guide_notification.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..45fa4b3c0aa2867edf78920101bb8474ea24098f |
| --- /dev/null |
| +++ b/chrome/browser/chromeos/arc/arc_migration_guide_notification.h |
| @@ -0,0 +1,19 @@ |
| +// Copyright 2017 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_BROWSER_CHROMEOS_ARC_ARC_MIGRATION_GUIDE_NOTIFICATION_H_ |
| +#define CHROME_BROWSER_CHROMEOS_ARC_ARC_MIGRATION_GUIDE_NOTIFICATION_H_ |
| + |
| +class Profile; |
| + |
| +namespace arc { |
| + |
| +// 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.
|
| +// This is used when an ARC app is launched while ARC is temporaliry disabled |
| +// due to the file system incompatibility. |
| +void ShowArcMigrationGuideNotification(Profile* profile); |
| + |
| +} // namespace arc |
| + |
| +#endif // CHROME_BROWSER_CHROMEOS_ARC_ARC_MIGRATION_GUIDE_NOTIFICATION_H_ |