| Index: chrome/browser/ui/app_list/arc/arc_app_list_prefs.h
|
| diff --git a/chrome/browser/ui/app_list/arc/arc_app_list_prefs.h b/chrome/browser/ui/app_list/arc/arc_app_list_prefs.h
|
| index 3dce5be03a67eb73e01eaedfef1c8ab34eef0f70..e95e0f36fd5ae36c7169e8a2bca91cc335aa3abb 100644
|
| --- a/chrome/browser/ui/app_list/arc/arc_app_list_prefs.h
|
| +++ b/chrome/browser/ui/app_list/arc/arc_app_list_prefs.h
|
| @@ -33,6 +33,10 @@ namespace arc {
|
| class ArcPackageSyncableService;
|
| } // namespace arc
|
|
|
| +namespace chromeos {
|
| +class ArcKioskAppService;
|
| +} // namespace chromeos
|
| +
|
| namespace content {
|
| class BrowserContext;
|
| } // namespace content
|
| @@ -371,7 +375,9 @@ class ArcAppListPrefs
|
| // True is Arc package list has been refreshed once.
|
| bool package_list_initial_refreshed_ = false;
|
|
|
| - arc::ArcPackageSyncableService* sync_service_;
|
| + arc::ArcPackageSyncableService* sync_service_ = nullptr;
|
| + // Track ARC kiosk app and auto-launches it if needed.
|
| + chromeos::ArcKioskAppService* kiosk_app_service_ = nullptr;
|
|
|
| mojo::Binding<arc::mojom::AppHost> binding_;
|
|
|
|
|