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

Unified Diff: chrome/browser/extensions/api/autotest_private/autotest_private_api.cc

Issue 2801173002: arc: Provide API to control Play Store state from autotests (Closed)
Patch Set: nits Created 3 years, 8 months 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/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;

Powered by Google App Engine
This is Rietveld 408576698