| Index: chrome/browser/extensions/api/autotest_private/autotest_private_api.cc
|
| diff --git a/chrome/browser/extensions/api/autotest_private/autotest_private_api.cc b/chrome/browser/extensions/api/autotest_private/autotest_private_api.cc
|
| index e50590e4ca262775a3b410c6363cb665ce1e3afe..bea0a0e82ff7f56f3959d91942469f84a84a0dcc 100644
|
| --- a/chrome/browser/extensions/api/autotest_private/autotest_private_api.cc
|
| +++ b/chrome/browser/extensions/api/autotest_private/autotest_private_api.cc
|
| @@ -28,8 +28,10 @@
|
| #include "extensions/common/permissions/permissions_data.h"
|
|
|
| #if defined(OS_CHROMEOS)
|
| +#include "chrome/browser/chromeos/arc/arc_util.h"
|
| #include "chrome/browser/chromeos/login/lock/screen_locker.h"
|
| #include "chrome/browser/chromeos/system/input_device_settings.h"
|
| +#include "chrome/browser/profiles/profile_manager.h"
|
| #include "chromeos/dbus/dbus_thread_manager.h"
|
| #include "chromeos/dbus/session_manager_client.h"
|
| #include "components/user_manager/user.h"
|
| @@ -380,6 +382,45 @@ AutotestPrivateGetVisibleNotificationsFunction::Run() {
|
| return RespondNow(OneArgument(std::move(values)));
|
| }
|
|
|
| +ExtensionFunction::ResponseAction
|
| +AutotestPrivateGetPlayStoreStateFunction::Run() {
|
| + DVLOG(1) << "AutotestPrivateGetPlayStoreStateFunction";
|
| + api::autotest_private::PlayStoreState play_store_state;
|
| + play_store_state.allowed = false;
|
| +#if defined(OS_CHROMEOS)
|
| + Profile* profile = ProfileManager::GetActiveUserProfile();
|
| + if (arc::IsArcAllowedForProfile(profile)) {
|
| + play_store_state.allowed = true;
|
| + play_store_state.enabled =
|
| + base::MakeUnique<bool>(arc::IsArcPlayStoreEnabledForProfile(profile));
|
| + play_store_state.managed = base::MakeUnique<bool>(
|
| + arc::IsArcPlayStoreEnabledPreferenceManagedForProfile(profile));
|
| + }
|
| +#endif
|
| + return RespondNow(OneArgument(play_store_state.ToValue()));
|
| +}
|
| +
|
| +ExtensionFunction::ResponseAction
|
| +AutotestPrivateSetPlayStoreEnabledFunction::Run() {
|
| + DVLOG(1) << "AutotestPrivateSetPlayStoreEnabledFunction";
|
| + std::unique_ptr<api::autotest_private::SetPlayStoreEnabled::Params> params(
|
| + api::autotest_private::SetPlayStoreEnabled::Params::Create(*args_));
|
| + EXTENSION_FUNCTION_VALIDATE(params);
|
| +#if defined(OS_CHROMEOS)
|
| + Profile* profile = ProfileManager::GetActiveUserProfile();
|
| + if (arc::IsArcAllowedForProfile(profile)) {
|
| + if (!arc::SetArcPlayStoreEnabledForProfile(profile, params->enabled)) {
|
| + return RespondNow(
|
| + Error("ARC enabled state cannot be changed for the current user"));
|
| + }
|
| + return RespondNow(NoArguments());
|
| + } else {
|
| + return RespondNow(Error("ARC is not available for the current user"));
|
| + }
|
| +#endif
|
| + return RespondNow(Error("ARC is not available for the current platform"));
|
| +}
|
| +
|
| static base::LazyInstance<BrowserContextKeyedAPIFactory<AutotestPrivateAPI>>::
|
| DestructorAtExit g_factory = LAZY_INSTANCE_INITIALIZER;
|
|
|
|
|