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
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
|
// 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/compiler_specific.h"
#include "base/macros.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 "build/build_config.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_info_cache_observer.h"
#include "chrome/browser/shell_integration.h"
#include "chrome/browser/ui/host_desktop.h"
#include "chrome/browser/ui/webui/options/options_ui.h"
#include "chrome/browser/ui/zoom/chrome_zoom_level_prefs.h"
#include "components/policy/core/common/policy_service.h"
#include "components/search_engines/template_url_service_observer.h"
#include "components/signin/core/browser/signin_manager_base.h"
#include "components/signin/core/common/signin_pref_names.h"
#include "components/sync_driver/sync_service_observer.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/policy/consumer_management_service.h"
#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 ProfileInfoCacheObserver,
public sync_driver::SyncServiceObserver,
public SigninManagerBase::Observer,
public ui::SelectFileDialog::Listener,
public ShellIntegration::DefaultWebClientObserver,
#if defined(OS_CHROMEOS)
public chromeos::system::PointerDeviceObserver::Observer,
public policy::ConsumerManagementService::Observer,
#endif
public TemplateURLServiceObserver,
public extensions::ExtensionRegistryObserver,
public content::NotificationObserver,
public policy::PolicyService::Observer {
public:
BrowserOptionsHandler();
~BrowserOptionsHandler() override;
// OptionsPageUIHandler implementation.
void GetLocalizedValues(base::DictionaryValue* values) override;
void PageLoadStarted() override;
void InitializeHandler() override;
void InitializePage() override;
void RegisterMessages() override;
void Uninitialize() override;
// sync_driver::SyncServiceObserver implementation.
void OnStateChanged() override;
// SigninManagerBase::Observer implementation.
void GoogleSigninSucceeded(const std::string& account_id,
const std::string& username,
const std::string& password) override;
void GoogleSignedOut(const std::string& account_id,
const std::string& username) override;
// ShellIntegration::DefaultWebClientObserver implementation.
void SetDefaultWebClientUIState(
ShellIntegration::DefaultWebClientUIState state) override;
bool IsInteractiveSetDefaultPermitted() override;
// TemplateURLServiceObserver implementation.
void OnTemplateURLServiceChanged() override;
// extensions::ExtensionRegistryObserver:
void OnExtensionLoaded(content::BrowserContext* browser_context,
const extensions::Extension* extension) override;
void OnExtensionUnloaded(
content::BrowserContext* browser_context,
const extensions::Extension* extension,
extensions::UnloadedExtensionInfo::Reason reason) override;
// policy::PolicyService::Observer:
void OnPolicyUpdated(const policy::PolicyNamespace& ns,
const policy::PolicyMap& previous,
const policy::PolicyMap& current) override;
private:
// content::NotificationObserver implementation.
void Observe(int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) override;
// ProfileInfoCacheObserver implementation.
void OnProfileAdded(const base::FilePath& profile_path) override;
void OnProfileWasRemoved(const base::FilePath& profile_path,
const base::string16& profile_name) override;
void OnProfileNameChanged(const base::FilePath& profile_path,
const base::string16& old_profile_name) override;
void OnProfileAvatarChanged(const base::FilePath& profile_path) override;
#if defined(ENABLE_PRINT_PREVIEW) && !defined(OS_CHROMEOS)
void OnCloudPrintPrefsChanged();
#endif
// SelectFileDialog::Listener implementation
void FileSelected(const base::FilePath& path,
int index,
void* params) override;
#if defined(OS_CHROMEOS)
// PointerDeviceObserver::Observer implementation.
void TouchpadExists(bool exists) override;
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);
// ConsumerManagementService::Observer:
void OnConsumerManagementStatusChanged() override;
#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);
// 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);
// Updates the UI, allowing the user to change the system time zone if
// kSystemTimezonePolicy is set, and preventing the user from changing the
// system time zone if kSystemTimezonePolicy is not set.
void OnSystemTimezonePolicyChanged();
#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_CERTS)
// 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_PRINT_PREVIEW)
// 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 that updates the visibility of the audio history upon completion
// of a call to the server to the get the current value.
void SetHotwordAudioHistorySectionVisible(
const base::string16& audio_history_state,
bool success,
bool logging_enabled);
// Callback for "requestHotwordAvailable" message.
void HandleRequestHotwordAvailable(const base::ListValue* args);
// Callback for "launchHotwordAudioVerificationApp" message.
void HandleLaunchHotwordAudioVerificationApp(const base::ListValue* args);
// Callback for "requestGoogleNowAvailable" message.
void HandleRequestGoogleNowAvailable(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();
// Setup the value and the disabled property for metrics reporting for (except
// Android).
void SetupMetricsReportingCheckbox();
// Called when the MetricsReportingEnabled checkbox values are changed.
// |args| will contain the checkbox checked state as a boolean.
void HandleMetricsReportingChange(const base::ListValue* args);
// Notifies the result of MetricsReportingEnabled change to Javascript layer.
void NotifyUIOfMetricsReportingChange(bool enabled);
// Calls a Javascript function to set the state of MetricsReporting checkbox.
void SetMetricsReportingCheckbox(bool checked,
bool policy_managed,
bool owner_managed);
#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();
// Checks whether on Chrome OS the current user is the device owner. Returns
// true on other platforms.
bool IsDeviceOwnerProfile();
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_;
scoped_ptr<ChromeZoomLevelPrefs::DefaultZoomLevelSubscription>
default_zoom_level_subscription_;
PrefChangeRegistrar profile_pref_registrar_;
#if defined(OS_CHROMEOS)
scoped_ptr<policy::PolicyChangeRegistrar> policy_registrar_;
// Whether factory reset can be performed.
bool enable_factory_reset_;
#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_
|