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

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: rebase 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 db0c9676a73b11d9e6fde3186a8748d724f536a8..f5520aa40dce1d4713aaa9ae8f01647ee9fbe0a7 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
@@ -34,6 +34,10 @@ namespace arc {
class ArcPackageSyncableService;
} // namespace arc
+namespace chromeos {
+class ArcKioskAppService;
+} // namespace chromeos
+
namespace content {
class BrowserContext;
} // namespace content
@@ -374,7 +378,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_;

Powered by Google App Engine
This is Rietveld 408576698