1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
// 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/constants.h"
#include "extensions/common/extension.h"
#include "ui/base/window_open_disposition.h"
using extensions::ExtensionPrefs;
AppLaunchParams::AppLaunchParams(Profile* profile,
const extensions::Extension* extension,
extensions::LaunchContainer container,
WindowOpenDisposition disposition,
extensions::AppLaunchSource source)
: profile(profile),
extension_id(extension ? extension->id() : std::string()),
container(container),
disposition(disposition),
desktop_type(chrome::GetActiveDesktop()),
override_url(),
override_bounds(),
command_line(base::CommandLine::NO_PROGRAM),
source(source) {
}
AppLaunchParams::AppLaunchParams(Profile* profile,
const extensions::Extension* extension,
WindowOpenDisposition disposition,
extensions::AppLaunchSource source)
: 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(base::CommandLine::NO_PROGRAM),
source(source) {
// 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,
WindowOpenDisposition raw_disposition,
chrome::HostDesktopType desktop_type,
extensions::AppLaunchSource source)
: profile(profile),
extension_id(extension ? extension->id() : std::string()),
container(extensions::LAUNCH_CONTAINER_NONE),
desktop_type(desktop_type),
override_url(),
override_bounds(),
command_line(base::CommandLine::NO_PROGRAM),
source(source) {
if (raw_disposition == NEW_FOREGROUND_TAB ||
raw_disposition == NEW_BACKGROUND_TAB) {
container = extensions::LAUNCH_CONTAINER_TAB;
disposition = raw_disposition;
} else if (raw_disposition == NEW_WINDOW) {
container = extensions::LAUNCH_CONTAINER_WINDOW;
disposition = raw_disposition;
} 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() {
}
|