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

Unified Diff: chrome/browser/ui/app_list/arc/arc_app_list_prefs.h

Issue 2496903003: arc: Add Arc Kiosk app service and ability to launch kiosk apps. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@policy_comp_parse
Patch Set: Remove unnecessary null check. Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
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..10b5e650184d17b71c3c4c02dfb04690bf7a60f5 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,8 @@ 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;
+ chromeos::ArcKioskAppService* kiosk_app_service_ = nullptr;
mojo::Binding<arc::mojom::AppHost> binding_;

Powered by Google App Engine
This is Rietveld 408576698