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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
|
// Copyright (c) 2012 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.
#ifndef CHROME_BROWSER_UI_WEBUI_NTP_APP_LAUNCHER_HANDLER_H_
#define CHROME_BROWSER_UI_WEBUI_NTP_APP_LAUNCHER_HANDLER_H_
#include <set>
#include <string>
#include "apps/metrics_names.h"
#include "base/memory/scoped_ptr.h"
#include "base/prefs/pref_change_registrar.h"
#include "chrome/browser/extensions/extension_uninstall_dialog.h"
#include "chrome/browser/favicon/favicon_service.h"
#include "chrome/browser/ui/extensions/extension_enable_flow_delegate.h"
#include "chrome/common/cancelable_task_tracker.h"
#include "chrome/common/extensions/extension.h"
#include "chrome/common/extensions/extension_constants.h"
#include "content/public/browser/notification_observer.h"
#include "content/public/browser/notification_registrar.h"
#include "content/public/browser/web_ui_message_handler.h"
#include "sync/api/string_ordinal.h"
class ExtensionEnableFlow;
class ExtensionService;
class PrefChangeRegistrar;
class Profile;
namespace chrome {
struct FaviconImageResult;
}
namespace user_prefs {
class PrefRegistrySyncable;
}
// The handler for Javascript messages related to the "apps" view.
class AppLauncherHandler : public content::WebUIMessageHandler,
public ExtensionUninstallDialog::Delegate,
public ExtensionEnableFlowDelegate,
public content::NotificationObserver {
public:
explicit AppLauncherHandler(ExtensionService* extension_service);
virtual ~AppLauncherHandler();
// Populate a dictionary with the information from an extension.
static void CreateAppInfo(
const extensions::Extension* extension,
ExtensionService* service,
base::DictionaryValue* value);
// WebUIMessageHandler implementation.
virtual void RegisterMessages() OVERRIDE;
// content::NotificationObserver
virtual void Observe(int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) OVERRIDE;
// Populate the given dictionary with all installed app info.
void FillAppDictionary(base::DictionaryValue* value);
// Create a dictionary value for the given extension. May return NULL, e.g. if
// the given extension is not an app. If non-NULL, the caller assumes
// ownership of the pointer.
base::DictionaryValue* GetAppInfo(const extensions::Extension* extension);
// Populate the given dictionary with the web store promo content.
void FillPromoDictionary(base::DictionaryValue* value);
// Handles the "launchApp" message with unused |args|.
void HandleGetApps(const base::ListValue* args);
// Handles the "launchApp" message with |args| containing [extension_id,
// source] with optional [url, disposition], |disposition| defaulting to
// CURRENT_TAB.
void HandleLaunchApp(const base::ListValue* args);
// Handles the "setLaunchType" message with args containing [extension_id,
// launch_type].
void HandleSetLaunchType(const base::ListValue* args);
// Handles the "uninstallApp" message with |args| containing [extension_id]
// and an optional bool to not confirm the uninstall when true, defaults to
// false.
void HandleUninstallApp(const base::ListValue* args);
// Handles the "createAppShortcut" message with |args| containing
// [extension_id].
void HandleCreateAppShortcut(const base::ListValue* args);
// Handles the "reorderApps" message with |args| containing [dragged_app_id,
// app_order].
void HandleReorderApps(const base::ListValue* args);
// Handles the "setPageIndex" message with |args| containing [extension_id,
// page_index].
void HandleSetPageIndex(const base::ListValue* args);
// Handles "saveAppPageName" message with |args| containing [name,
// page_index].
void HandleSaveAppPageName(const base::ListValue* args);
// Handles "generateAppForLink" message with |args| containing [url, title,
// page_index].
void HandleGenerateAppForLink(const base::ListValue* args);
// Callback for the "recordAppLaunchByURL" message. Takes an escaped URL and a
// launch source (integer), and if the URL represents an app, records the
// action for UMA.
void HandleRecordAppLaunchByUrl(const base::ListValue* args);
// Other registered message callbacks with unused |args|.
void StopShowingAppLauncherPromo(const base::ListValue* args);
void OnLearnMore(const base::ListValue* args);
// Register app launcher preferences.
static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry);
// Records the given type of app launch for UMA.
static void RecordAppLaunchType(extension_misc::AppLaunchBucket bucket,
extensions::Manifest::Type app_type);
// Records an app launch from the search view of the app list.
static void RecordAppListSearchLaunch(const extensions::Extension* extension);
// Records an app launch from the main view of the app list.
static void RecordAppListMainLaunch(const extensions::Extension* extension);
private:
struct AppInstallInfo {
AppInstallInfo();
~AppInstallInfo();
bool is_bookmark_app;
string16 title;
GURL app_url;
syncer::StringOrdinal page_ordinal;
};
// Reset some instance flags we use to track the currently uninstalling app.
void CleanupAfterUninstall();
// Records a web store launch in the appropriate histograms.
static void RecordWebStoreLaunch();
// Records an app launch in the corresponding |bucket| of the app launch
// histogram if the |escaped_url| corresponds to an installed app.
static void RecordAppLaunchByUrl(Profile* profile,
std::string escaped_url,
extension_misc::AppLaunchBucket bucket);
// Prompts the user to re-enable the app for |extension_id|.
void PromptToEnableApp(const std::string& extension_id);
// ExtensionUninstallDialog::Delegate:
virtual void ExtensionUninstallAccepted() OVERRIDE;
virtual void ExtensionUninstallCanceled() OVERRIDE;
// ExtensionEnableFlowDelegate:
virtual void ExtensionEnableFlowFinished() OVERRIDE;
virtual void ExtensionEnableFlowAborted(bool user_initiated) OVERRIDE;
// Returns the ExtensionUninstallDialog object for this class, creating it if
// needed.
ExtensionUninstallDialog* GetExtensionUninstallDialog();
// Continuation for installing a bookmark app after favicon lookup.
void OnFaviconForApp(scoped_ptr<AppInstallInfo> install_info,
const chrome::FaviconImageResult& image_result);
// Sends |highlight_app_id_| to the js.
void SetAppToBeHighlighted();
void OnExtensionPreferenceChanged();
void OnLocalStatePreferenceChanged();
// The apps are represented in the extensions model, which
// outlives us since it's owned by our containing profile.
ExtensionService* const extension_service_;
// We monitor changes to the extension system so that we can reload the apps
// when necessary.
content::NotificationRegistrar registrar_;
// Monitor extension preference changes so that the Web UI can be notified.
PrefChangeRegistrar extension_pref_change_registrar_;
// Monitor the local state pref to control the app launcher promo.
PrefChangeRegistrar local_state_pref_change_registrar_;
// Used to show confirmation UI for uninstalling extensions in incognito mode.
scoped_ptr<ExtensionUninstallDialog> extension_uninstall_dialog_;
// Used to show confirmation UI for enabling extensions.
scoped_ptr<ExtensionEnableFlow> extension_enable_flow_;
// The ids of apps to show on the NTP.
std::set<std::string> visible_apps_;
// The id of the extension we are prompting the user about (either enable or
// uninstall).
std::string extension_id_prompting_;
// When true, we ignore changes to the underlying data rather than immediately
// refreshing. This is useful when making many batch updates to avoid flicker.
bool ignore_changes_;
// When true, we have attempted to install a bookmark app, and are still
// waiting to hear about success or failure from the extensions system.
bool attempted_bookmark_app_install_;
// True if we have executed HandleGetApps() at least once.
bool has_loaded_apps_;
// The ID of the app to be highlighted on the NTP (i.e. shown on the page
// and pulsed). This is done for new installs. The actual higlighting occurs
// when the app is added to the page (via getAppsCallback or appAdded).
std::string highlight_app_id_;
// Used for favicon loading tasks.
CancelableTaskTracker cancelable_task_tracker_;
DISALLOW_COPY_AND_ASSIGN(AppLauncherHandler);
};
#endif // CHROME_BROWSER_UI_WEBUI_NTP_APP_LAUNCHER_HANDLER_H_
|