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

Unified Diff: chrome/browser/chromeos/login/demo_mode/demo_app_launcher.cc

Issue 156493004: Add the ability to show a demo app on OOBE if a machine is derelict. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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/chromeos/login/demo_mode/demo_app_launcher.cc
diff --git a/chrome/browser/chromeos/login/demo_mode/demo_app_launcher.cc b/chrome/browser/chromeos/login/demo_mode/demo_app_launcher.cc
new file mode 100644
index 0000000000000000000000000000000000000000..86fd1698ba6a74bb3f89f80b5ae3496d81f84321
--- /dev/null
+++ b/chrome/browser/chromeos/login/demo_mode/demo_app_launcher.cc
@@ -0,0 +1,69 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
Lei Zhang 2014/02/11 22:13:59 2014
rkc 2014/02/11 22:37:38 Done.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/chromeos/login/demo_mode/demo_app_launcher.h"
+
+#include "base/command_line.h"
+#include "chrome/browser/chromeos/app_mode/app_session_lifetime.h"
+#include "chrome/browser/chromeos/login/login_display_host_impl.h"
+#include "chrome/browser/chromeos/login/user_manager.h"
+#include "chrome/browser/extensions/component_loader.h"
+#include "chrome/browser/extensions/extension_service.h"
+#include "chrome/browser/ui/extensions/application_launch.h"
+#include "chrome/common/chrome_switches.h"
+#include "extensions/browser/extension_system.h"
+#include "grit/browser_resources.h"
+
+namespace {
+
+const char kDemoAppUserId[] = "demouser@demo.app";
+
+}
+
+namespace chromeos {
+
+DemoAppLauncher::DemoAppLauncher() : profile_(NULL) {}
+
+DemoAppLauncher::~DemoAppLauncher() {}
+
+void DemoAppLauncher::StartDemoAppLaunch() {
+ DVLOG(1) << "Launching demo app...";
+ kiosk_profile_loader_.reset(new KioskProfileLoader(kDemoAppUserId, this));
+ kiosk_profile_loader_->Start();
+}
+
+void DemoAppLauncher::OnProfileLoaded(Profile* profile) {
+ DVLOG(1) << "Profile loaded... Starting demo app launch.";
+ profile_ = profile;
+
+ kiosk_profile_loader_.reset();
+
+ // Load our demo app, then launch it.
+ ExtensionService* extension_service =
+ extensions::ExtensionSystem::Get(profile_)->extension_service();
+ std::string extension_id = extension_service->component_loader()->Add(
+ IDR_DEMO_APP_MANIFEST,
+ base::FilePath(FILE_PATH_LITERAL("/usr/share/chromeos-assets/demo_app")));
Lei Zhang 2014/02/11 22:13:59 you don't need FILE_PATH_LITERAL since it's CrOS-o
rkc 2014/02/11 22:37:38 Done.
+
+ const extensions::Extension* extension =
+ extension_service->GetExtensionById(extension_id, true);
+
+ CommandLine* command_line = CommandLine::ForCurrentProcess();
+ command_line->AppendSwitch(switches::kForceAppMode);
+ command_line->AppendSwitchASCII(switches::kAppId, extension_id);
+
+ OpenApplication(AppLaunchParams(
+ profile_, extension, extensions::LAUNCH_CONTAINER_WINDOW, NEW_WINDOW));
+ InitAppSession(profile_, extension_id);
+
+ UserManager::Get()->SessionStarted();
+
+ LoginDisplayHostImpl::default_host()->Finalize();
+}
+
+void DemoAppLauncher::OnProfileLoadFailed(KioskAppLaunchError::Error error) {
+ LOG(ERROR) << "Loading the Kiosk Profile failed.";
Lei Zhang 2014/02/11 22:13:59 Wouldn't you want to include GetErrorMessage(error
rkc 2014/02/11 22:37:38 There isn't anything we can do with the error at t
+}
+
+} // namespace chromeos

Powered by Google App Engine
This is Rietveld 408576698