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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
|
// 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_OPTIONS_BROWSER_OPTIONS_HANDLER_H_
#define CHROME_BROWSER_UI_WEBUI_OPTIONS_BROWSER_OPTIONS_HANDLER_H_
#include <vector>
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/prefs/pref_change_registrar.h"
#include "base/prefs/pref_member.h"
#include "base/scoped_observer.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/shell_integration.h"
#include "chrome/browser/sync/profile_sync_service_observer.h"
#include "chrome/browser/ui/host_desktop.h"
#include "chrome/browser/ui/webui/options/options_ui.h"
#include "components/search_engines/template_url_service_observer.h"
#include "components/signin/core/browser/signin_manager_base.h"
#include "content/public/browser/notification_observer.h"
#include "extensions/browser/extension_registry_observer.h"
#include "google_apis/gaia/google_service_auth_error.h"
#include "ui/base/models/table_model_observer.h"
#include "ui/shell_dialogs/select_file_dialog.h"
#if defined(OS_CHROMEOS)
#include "chrome/browser/chromeos/system/pointer_device_observer.h"
#endif // defined(OS_CHROMEOS)
class AutocompleteController;
class CloudPrintSetupHandler;
class CustomHomePagesTableModel;
class TemplateURLService;
namespace base {
class Value;
}
namespace policy {
class PolicyChangeRegistrar;
}
namespace options {
// Chrome browser options page UI handler.
class BrowserOptionsHandler
: public OptionsPageUIHandler,
public ProfileSyncServiceObserver,
public SigninManagerBase::Observer,
public ui::SelectFileDialog::Listener,
public ShellIntegration::DefaultWebClientObserver,
#if defined(OS_CHROMEOS)
public chromeos::system::PointerDeviceObserver::Observer,
#endif
public TemplateURLServiceObserver,
public extensions::ExtensionRegistryObserver,
public content::NotificationObserver {
public:
BrowserOptionsHandler();
virtual ~BrowserOptionsHandler();
// OptionsPageUIHandler implementation.
virtual void GetLocalizedValues(base::DictionaryValue* values) OVERRIDE;
virtual void PageLoadStarted() OVERRIDE;
virtual void InitializeHandler() OVERRIDE;
virtual void InitializePage() OVERRIDE;
virtual void RegisterMessages() OVERRIDE;
virtual void Uninitialize() OVERRIDE;
// ProfileSyncServiceObserver implementation.
virtual void OnStateChanged() OVERRIDE;
// SigninManagerBase::Observer implementation.
virtual void GoogleSigninSucceeded(const std::string& username,
const std::string& password) OVERRIDE;
virtual void GoogleSignedOut(const std::string& username) OVERRIDE;
// ShellIntegration::DefaultWebClientObserver implementation.
virtual void SetDefaultWebClientUIState(
ShellIntegration::DefaultWebClientUIState state) OVERRIDE;
virtual bool IsInteractiveSetDefaultPermitted() OVERRIDE;
// TemplateURLServiceObserver implementation.
virtual void OnTemplateURLServiceChanged() OVERRIDE;
// extensions::ExtensionRegistryObserver:
virtual void OnExtensionLoaded(
content::BrowserContext* browser_context,
const extensions::Extension* extension) OVERRIDE;
virtual void OnExtensionUnloaded(
content::BrowserContext* browser_context,
const extensions::Extension* extension,
extensions::UnloadedExtensionInfo::Reason reason) OVERRIDE;
private:
// content::NotificationObserver implementation.
virtual void Observe(int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) OVERRIDE;
#if defined(ENABLE_FULL_PRINTING) && !defined(OS_CHROMEOS)
void OnCloudPrintPrefsChanged();
#endif
// SelectFileDialog::Listener implementation
virtual void FileSelected(const base::FilePath& path,
int index,
void* params) OVERRIDE;
#if defined(OS_CHROMEOS)
// PointerDeviceObserver::Observer implementation.
virtual void TouchpadExists(bool exists) OVERRIDE;
virtual void MouseExists(bool exists) OVERRIDE;
// Will be called when the policy::key::kUserAvatarImage policy changes.
void OnUserImagePolicyChanged(const base::Value* previous_policy,
const base::Value* current_policy);
// Will be called when the policy::key::kWallpaperImage policy changes.
void OnWallpaperPolicyChanged(const base::Value* previous_policy,
const base::Value* current_policy);
// Will be called when powerwash dialog is shown.
void OnPowerwashDialogShow(const base::ListValue* args);
#endif
void UpdateSyncState();
// Will be called when the kSigninAllowed pref has changed.
void OnSigninAllowedPrefChange();
// Makes this the default browser. Called from WebUI.
void BecomeDefaultBrowser(const base::ListValue* args);
// Sets the search engine at the given index to be default. Called from WebUI.
void SetDefaultSearchEngine(const base::ListValue* args);
// Enables/disables auto-launching of Chrome on computer startup.
void ToggleAutoLaunch(const base::ListValue* args);
// Checks (on the file thread) whether the user is in the auto-launch trial
// and whether Chrome is set to auto-launch at login. Gets a reply on the UI
// thread (see CheckAutoLaunchCallback). A weak pointer to this is passed in
// as a parameter to avoid the need to lock between this function and the
// destructor. |profile_path| is the full path to the current profile.
static void CheckAutoLaunch(base::WeakPtr<BrowserOptionsHandler> weak_this,
const base::FilePath& profile_path);
// Sets up (on the UI thread) the necessary bindings for toggling auto-launch
// (if the user is part of the auto-launch and makes sure the HTML UI knows
// whether Chrome will auto-launch at login.
void CheckAutoLaunchCallback(bool is_in_auto_launch_group,
bool will_launch_at_login);
// Returns the string ID for the given default browser state.
int StatusStringIdForState(ShellIntegration::DefaultWebClientState state);
// Returns if the "make Chrome default browser" button should be shown.
bool ShouldShowSetDefaultBrowser();
// Returns if profiles list should be shown on settings page.
bool ShouldShowMultiProfilesUserList();
// Returns if access to advanced settings should be allowed.
bool ShouldAllowAdvancedSettings();
// Gets the current default browser state, and asynchronously reports it to
// the WebUI page.
void UpdateDefaultBrowserState();
// Updates the UI with the given state for the default browser.
void SetDefaultBrowserUIString(int status_string_id);
// Loads the possible default search engine list and reports it to the WebUI.
void AddTemplateUrlServiceObserver();
// Creates a list of dictionaries where each dictionary is of the form:
// profileInfo = {
// name: "Profile Name",
// iconURL: "chrome://path/to/icon/image",
// filePath: "/path/to/profile/data/on/disk",
// isCurrentProfile: false
// };
scoped_ptr<base::ListValue> GetProfilesInfoList();
// Sends an array of Profile objects to javascript.
void SendProfilesInfo();
// Deletes the given profile. Expects one argument:
// 0: profile file path (string)
void DeleteProfile(const base::ListValue* args);
void ObserveThemeChanged();
void ThemesReset(const base::ListValue* args);
#if defined(OS_LINUX) && !defined(OS_CHROMEOS)
void ThemesSetNative(const base::ListValue* args);
#endif
#if defined(OS_CHROMEOS)
void UpdateAccountPicture();
// Updates the UI, allowing the user to change the avatar image if |managed|
// is |false| and preventing the user from changing the avatar image if
// |managed| is |true|.
void OnAccountPictureManagedChanged(bool managed);
// Updates the UI, allowing the user to change the wallpaper if |managed| is
// |false| and preventing the user from changing the wallpaper if |managed| is
// |true|.
void OnWallpaperManagedChanged(bool managed);
#endif
// Callback for the "selectDownloadLocation" message. This will prompt the
// user for a destination folder using platform-specific APIs.
void HandleSelectDownloadLocation(const base::ListValue* args);
// Callback for the "autoOpenFileTypesResetToDefault" message. This will
// remove all auto-open file-type settings.
void HandleAutoOpenButton(const base::ListValue* args);
// Callback for the "defaultFontSizeAction" message. This is called if the
// user changes the default font size. |args| is an array that contains
// one item, the font size as a numeric value.
void HandleDefaultFontSize(const base::ListValue* args);
// Callback for the "defaultZoomFactorAction" message. This is called if the
// user changes the default zoom factor. |args| is an array that contains
// one item, the zoom factor as a numeric value.
void HandleDefaultZoomFactor(const base::ListValue* args);
// Callback for the "Use SSL 3.0" checkbox. This is called if the user toggles
// the "Use SSL 3.0" checkbox.
void HandleUseSSL3Checkbox(const base::ListValue* args);
// Callback for the "Use TLS 1.0" checkbox. This is called if the user toggles
// the "Use TLS 1.0" checkbox.
void HandleUseTLS1Checkbox(const base::ListValue* args);
// Callback for the "restartBrowser" message. Restores all tabs on restart.
void HandleRestartBrowser(const base::ListValue* args);
// Callback for "requestProfilesInfo" message.
void HandleRequestProfilesInfo(const base::ListValue* args);
#if !defined(OS_CHROMEOS)
// Callback for the "showNetworkProxySettings" message. This will invoke
// an appropriate dialog for configuring proxy settings.
void ShowNetworkProxySettings(const base::ListValue* args);
#endif
#if !defined(USE_NSS)
// Callback for the "showManageSSLCertificates" message. This will invoke
// an appropriate certificate management action based on the platform.
void ShowManageSSLCertificates(const base::ListValue* args);
#endif
#if defined(ENABLE_SERVICE_DISCOVERY)
void ShowCloudPrintDevicesPage(const base::ListValue* args);
#endif
#if defined(ENABLE_FULL_PRINTING)
// Register localized values used by Cloud Print
void RegisterCloudPrintValues(base::DictionaryValue* values);
#endif
// Check if hotword is available. If it is, tell the javascript to show
// the hotword section of the settings page.
void SendHotwordAvailable();
// Callback for "requestHotwordAvailable" message.
void HandleRequestHotwordAvailable(const base::ListValue* args);
// Callback for "launchEasyUnlockSetup" message.
void HandleLaunchEasyUnlockSetup(const base::ListValue* args);
// Callback for "refreshExtensionControlIndicators" message.
void HandleRefreshExtensionControlIndicators(const base::ListValue* args);
#if defined(OS_CHROMEOS)
// Opens the wallpaper manager component extension.
void HandleOpenWallpaperManager(const base::ListValue* args);
// Called when the accessibility checkbox values are changed.
// |args| will contain the checkbox checked state as a string
// ("true" or "false").
void VirtualKeyboardChangeCallback(const base::ListValue* args);
// Called when the user confirmed factory reset. Chrome will
// initiate asynchronous file operation and then log out.
void PerformFactoryResetRestart(const base::ListValue* args);
#endif
// Setup the visibility for the metrics reporting setting.
void SetupMetricsReportingSettingVisibility();
// Update value of predictive network actions UI element.
void SetupNetworkPredictionControl();
// Setup the font size selector control.
void SetupFontSizeSelector();
// Setup the page zoom selector control.
void SetupPageZoomSelector();
// Setup the visibility of the reset button.
void SetupAutoOpenFileTypes();
// Setup the proxy settings section UI.
void SetupProxySettingsSection();
// Setup the manage certificates section UI.
void SetupManageCertificatesSection();
// Setup the UI specific to managing supervised users.
void SetupManagingSupervisedUsers();
// Setup the UI for Easy Unlock.
void SetupEasyUnlock();
// Setup the UI for showing which settings are extension controlled.
void SetupExtensionControlledIndicators();
#if defined(OS_CHROMEOS)
// Setup the accessibility features for ChromeOS.
void SetupAccessibilityFeatures();
#endif
// Returns a newly created dictionary with a number of properties that
// correspond to the status of sync.
scoped_ptr<base::DictionaryValue> GetSyncStateDictionary();
scoped_refptr<ShellIntegration::DefaultBrowserWorker> default_browser_worker_;
bool page_initialized_;
StringPrefMember homepage_;
BooleanPrefMember default_browser_policy_;
TemplateURLService* template_url_service_; // Weak.
scoped_refptr<ui::SelectFileDialog> select_folder_dialog_;
bool cloud_print_mdns_ui_enabled_;
StringPrefMember auto_open_files_;
DoublePrefMember default_zoom_level_;
PrefChangeRegistrar profile_pref_registrar_;
#if defined(OS_CHROMEOS)
scoped_ptr<policy::PolicyChangeRegistrar> policy_registrar_;
#endif
ScopedObserver<SigninManagerBase, SigninManagerBase::Observer>
signin_observer_;
// Used to get WeakPtr to self for use on the UI thread.
base::WeakPtrFactory<BrowserOptionsHandler> weak_ptr_factory_;
DISALLOW_COPY_AND_ASSIGN(BrowserOptionsHandler);
};
} // namespace options
#endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_BROWSER_OPTIONS_HANDLER_H_
|