blob: 5af1de113555b1634fb918ae6a266658113d36c8 [file] [log] [blame]
hidehikoaab3dea2017-01-30 14:36:461// 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 COMPONENTS_ARC_ARC_UTIL_H_
6#define COMPONENTS_ARC_ARC_UTIL_H_
7
8// This file contains utility to see ARC functionality status controlled by
9// outside of ARC, e.g. CommandLine flag, attribute of global data/state,
10// users' preferences, and FeatureList.
11
yusukes5f38c3cd2017-05-17 03:56:5512namespace aura {
13class Window;
14} // namespace aura
15
hidehikoaab3dea2017-01-30 14:36:4616namespace base {
17class CommandLine;
18} // namespace base
19
xiyuan94a81dea2017-05-25 14:31:0320namespace user_manager {
21class User;
22} // namespace user_manager
23
hidehikoaab3dea2017-01-30 14:36:4624namespace arc {
25
26// Returns true if ARC is installed and the current device is officially
27// supported to run ARC.
28// Note that, to run ARC practically, it is necessary to meet more conditions,
29// e.g., ARC supports only on Primary User Profile. To see if ARC can actually
30// run for the profile etc., arc::ArcSessionManager::IsAllowedForProfile() is
31// the function for that purpose. Please see also its comment, too.
32// Also note that, ARC singleton classes (e.g. ArcSessionManager,
33// ArcServiceManager, ArcServiceLauncher) are instantiated regardless of this
34// check, so it is ok to access them directly.
35bool IsArcAvailable();
36
Alex Newcomer8a327592017-08-09 18:53:1837// Returns true if ARC is not installed and the current device is not supported
38// to run ARC.
39bool IsWebstoreSearchEnabled();
40
khmelb045baaf2017-06-09 21:50:2641// Returns true if ARC image has Play Store package.
42bool IsPlayStoreAvailable();
43
victorhsiehec707852017-03-07 19:37:0644// Returns true if ARC should always start within the primary user session
45// (opted in user or not), and other supported mode such as guest and Kiosk
46// mode.
47bool ShouldArcAlwaysStart();
48
49// Enables to always start ARC for testing, by appending the command line flag.
khmelb045baaf2017-06-09 21:50:2650// If |bool play_store_available| is not set then flag that disables ARC Play
51// Store UI is added.
52void SetArcAlwaysStartForTesting(bool play_store_available);
victorhsiehec707852017-03-07 19:37:0653
poromov4fdd0672017-02-09 17:30:0254// Returns true if ARC is installed and running ARC kiosk apps on the current
55// device is officially supported.
56// It doesn't follow that ARC is available for user sessions and
57// IsArcAvailable() will return true, although the reverse should be.
58// This is used to distinguish special cases when ARC kiosk is available on
59// the device, but is not yet supported for regular user sessions.
60// In most cases, IsArcAvailable() check should be used instead of this.
61// Also not that this function may return true when ARC is not running in
62// Kiosk mode, it checks only ARC Kiosk availability.
63bool IsArcKioskAvailable();
64
hidehikoaab3dea2017-01-30 14:36:4665// For testing ARC in browser tests, this function should be called in
66// SetUpCommandLine(), and its argument should be passed to this function.
67// Also, in unittests, this can be called in SetUp() with
68// base::CommandLine::ForCurrentProcess().
69// |command_line| must not be nullptr.
70void SetArcAvailableCommandLineForTesting(base::CommandLine* command_line);
71
poromov4fdd0672017-02-09 17:30:0272// Returns true if ARC should run under Kiosk mode for the current profile.
73// As it can return true only when user is already initialized, it implies
74// that ARC availability was checked before and IsArcKioskAvailable()
75// should also return true in that case.
hidehiko0b75bce62017-01-31 13:13:0176bool IsArcKioskMode();
77
Sergey Poromovba8ed0882017-12-22 11:40:4578// Returns true if current user is a robot account user.
79// These are Public Session and ARC Kiosk users.
80// As it can return true only when user is already initialized, it implies
81// that ARC availability was checked before.
82// The check is basically IsArcKioskMode() | IsPublicSessionMode().
83bool IsRobotAccountMode();
84
xiyuan94a81dea2017-05-25 14:31:0385// Returns true if ARC is allowed for the given user. Note this should not be
86// used as a signal of whether ARC is allowed alone because it only considers
87// user meta data. e.g. a user could be allowed for ARC but if the user signs in
88// as a secondary user or signs in to create a supervised user, ARC should be
89// disabled for such cases.
90bool IsArcAllowedForUser(const user_manager::User* user);
91
hidehiko0b75bce62017-01-31 13:13:0192// Checks if opt-in verification was disabled by switch in command line.
93// In most cases, it is disabled for testing purpose.
94bool IsArcOptInVerificationDisabled();
95
yusukes5f38c3cd2017-05-17 03:56:5596// Returns true if the |window|'s aura::client::kAppType is ARC_APP. When
97// |window| is nullptr, returns false.
98bool IsArcAppWindow(aura::Window* window);
99
yusukeseca81512017-05-25 22:47:57100// Adjusts the amount of CPU the ARC instance is allowed to use. When
101// |do_restrict| is true, the limit is adjusted so ARC can only use tightly
102// restricted CPU resources.
Yusuke Sato9e8443d2017-08-07 21:30:46103// TODO(yusukes): Use enum instead of bool.
yusukeseca81512017-05-25 22:47:57104void SetArcCpuRestriction(bool do_restrict);
updowndota29b240a2017-05-25 20:19:19105
hidehikoaab3dea2017-01-30 14:36:46106} // namespace arc
107
108#endif // COMPONENTS_ARC_ARC_UTIL_H_