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

Unified Diff: chrome/browser/ui/extensions/app_launch_params.cc

Issue 635233008: Make management.launchApp() work for hosted apps on Athena (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@webstore_dialogs_athena
Patch Set: Created 6 years, 2 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
« no previous file with comments | « chrome/browser/ui/extensions/app_launch_params.h ('k') | chrome/browser/ui/extensions/application_launch.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/extensions/app_launch_params.cc
diff --git a/chrome/browser/ui/extensions/app_launch_params.cc b/chrome/browser/ui/extensions/app_launch_params.cc
new file mode 100644
index 0000000000000000000000000000000000000000..a8598753a3033869a7bd0eb2e63cea039b2bf2cc
--- /dev/null
+++ b/chrome/browser/ui/extensions/app_launch_params.cc
@@ -0,0 +1,70 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/ui/extensions/app_launch_params.h"
+
+#include "chrome/browser/extensions/launch_util.h"
+#include "chrome/browser/profiles/profile.h"
+#include "extensions/browser/extension_prefs.h"
+#include "extensions/common/extension.h"
+
+using extensions::ExtensionPrefs;
+
+AppLaunchParams::AppLaunchParams(Profile* profile,
+ const extensions::Extension* extension,
+ extensions::LaunchContainer container,
+ WindowOpenDisposition disposition)
+ : profile(profile),
+ extension_id(extension ? extension->id() : std::string()),
+ container(container),
+ disposition(disposition),
+ desktop_type(chrome::GetActiveDesktop()),
+ override_url(),
+ override_bounds(),
+ command_line(CommandLine::NO_PROGRAM) {}
+
+AppLaunchParams::AppLaunchParams(Profile* profile,
+ const extensions::Extension* extension,
+ WindowOpenDisposition disposition)
+ : profile(profile),
+ extension_id(extension ? extension->id() : std::string()),
+ container(extensions::LAUNCH_CONTAINER_NONE),
+ disposition(disposition),
+ desktop_type(chrome::GetActiveDesktop()),
+ override_url(),
+ override_bounds(),
+ command_line(CommandLine::NO_PROGRAM) {
+ // Look up the app preference to find out the right launch container. Default
+ // is to launch as a regular tab.
+ container =
+ extensions::GetLaunchContainer(ExtensionPrefs::Get(profile), extension);
+}
+
+AppLaunchParams::AppLaunchParams(Profile* profile,
+ const extensions::Extension* extension,
+ int event_flags,
+ chrome::HostDesktopType desktop_type)
+ : profile(profile),
+ extension_id(extension ? extension->id() : std::string()),
+ container(extensions::LAUNCH_CONTAINER_NONE),
+ disposition(ui::DispositionFromEventFlags(event_flags)),
+ desktop_type(desktop_type),
+ override_url(),
+ override_bounds(),
+ command_line(CommandLine::NO_PROGRAM) {
+ if (disposition == NEW_FOREGROUND_TAB || disposition == NEW_BACKGROUND_TAB) {
+ container = extensions::LAUNCH_CONTAINER_TAB;
+ } else if (disposition == NEW_WINDOW) {
+ container = extensions::LAUNCH_CONTAINER_WINDOW;
+ } else {
+ // Look at preference to find the right launch container. If no preference
+ // is set, launch as a regular tab.
+ container =
+ extensions::GetLaunchContainer(ExtensionPrefs::Get(profile), extension);
+ disposition = NEW_FOREGROUND_TAB;
+ }
+}
+
+AppLaunchParams::~AppLaunchParams() {
+}
« no previous file with comments | « chrome/browser/ui/extensions/app_launch_params.h ('k') | chrome/browser/ui/extensions/application_launch.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698