blob: c09e092a6eacec9f64105a131948595b55fc99a8 (
plain)
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 2013 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_RESET_PROFILE_SETTINGS_HANDLER_H_
#define CHROME_BROWSER_UI_WEBUI_OPTIONS_RESET_PROFILE_SETTINGS_HANDLER_H_
#include "base/compiler_specific.h"
#include "base/memory/weak_ptr.h"
#include "chrome/browser/ui/webui/options/options_ui.h"
namespace base {
class DictionaryValue;
class ListValue;
} // namespace base
class AutomaticProfileResetter;
class BrandcodeConfigFetcher;
class ProfileResetter;
class ResettableSettingsSnapshot;
namespace options {
// Reset Profile Settings handler page UI handler.
class ResetProfileSettingsHandler
: public OptionsPageUIHandler,
public base::SupportsWeakPtr<ResetProfileSettingsHandler> {
public:
ResetProfileSettingsHandler();
virtual ~ResetProfileSettingsHandler();
// OptionsPageUIHandler implementation.
virtual void GetLocalizedValues(
base::DictionaryValue* localized_strings) OVERRIDE;
virtual void InitializeHandler() OVERRIDE;
virtual void InitializePage() OVERRIDE;
virtual void Uninitialize() OVERRIDE;
// WebUIMessageHandler implementation.
virtual void RegisterMessages() OVERRIDE;
private:
// Javascript callback to start clearing data.
void HandleResetProfileSettings(const base::ListValue* value);
// Closes the dialog once all requested settings has been reset.
void OnResetProfileSettingsDone();
// Called when the confirmation box appears.
void OnShowResetProfileDialog(const base::ListValue* value);
// Called when BrandcodeConfigFetcher completed fetching settings.
void OnSettingsFetched();
// Resets profile settings to default values. |send_settings| is true if user
// gave his consent to upload broken settings to Google for analysis.
void ResetProfile(bool send_settings);
// Destroyed with the Profile, thus it should outlive us.
AutomaticProfileResetter* automatic_profile_resetter_;
// Records whether or not the Profile Reset confirmation dialog was opened at
// least once during the lifetime of the settings page.
bool has_shown_confirmation_dialog_;
scoped_ptr<ProfileResetter> resetter_;
scoped_ptr<BrandcodeConfigFetcher> config_fetcher_;
// Snapshot of settings before profile was reseted.
scoped_ptr<ResettableSettingsSnapshot> setting_snapshot_;
// Contains Chrome brand code; empty for organic Chrome.
std::string brandcode_;
DISALLOW_COPY_AND_ASSIGN(ResetProfileSettingsHandler);
};
} // namespace options
#endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_RESET_PROFILE_SETTINGS_HANDLER_H_
|