Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Side by Side Diff: chrome/browser/profile_resetter/automatic_profile_resetter_delegate.h

Issue 62193002: Integrate UI and reset logic into AutomaticProfileResetter. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Win compile error introduce by rebase. Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_PROFILE_RESETTER_AUTOMATIC_PROFILE_RESETTER_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_PROFILE_RESETTER_AUTOMATIC_PROFILE_RESETTER_DELEGATE_H_
6 #define CHROME_BROWSER_PROFILE_RESETTER_AUTOMATIC_PROFILE_RESETTER_DELEGATE_H_ 6 #define CHROME_BROWSER_PROFILE_RESETTER_AUTOMATIC_PROFILE_RESETTER_DELEGATE_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/callback_forward.h" 9 #include "base/callback_forward.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
11 #include "base/memory/weak_ptr.h"
12 #include "chrome/browser/profile_resetter/profile_resetter.h"
11 #include "chrome/browser/search_engines/template_url_service_observer.h" 13 #include "chrome/browser/search_engines/template_url_service_observer.h"
12 #include "content/public/browser/notification_observer.h" 14 #include "content/public/browser/notification_observer.h"
13 #include "content/public/browser/notification_registrar.h" 15 #include "content/public/browser/notification_registrar.h"
14 #include "extensions/common/one_shot_event.h" 16 #include "extensions/common/one_shot_event.h"
15 17
18 class BrandcodeConfigFetcher;
19 class GlobalErrorService;
20 class Profile;
21 class ResettableSettingsSnapshot;
16 class TemplateURLService; 22 class TemplateURLService;
17 23
18 namespace base { 24 namespace base {
19 class DictionaryValue; 25 class DictionaryValue;
20 class ListValue; 26 class ListValue;
21 } 27 }
22 28
23 // Defines the interface for the delegate that will interact with the rest of 29 // Defines the interface for the delegate that will interact with the rest of
24 // the browser on behalf of the AutomaticProfileResetter. 30 // the browser on behalf of the AutomaticProfileResetter.
25 // The primary reason for this separation is to facilitate unit testing. 31 // The primary reason for this separation is to facilitate unit testing.
(...skipping 11 matching lines...) Expand all
37 const base::Closure& ready_callback) const = 0; 43 const base::Closure& ready_callback) const = 0;
38 44
39 // Requests the template URL service to load its database (asynchronously). 45 // Requests the template URL service to load its database (asynchronously).
40 virtual void LoadTemplateURLServiceIfNeeded() = 0; 46 virtual void LoadTemplateURLServiceIfNeeded() = 0;
41 47
42 // Requests |ready_callback| to be posted on the UI thread once the template 48 // Requests |ready_callback| to be posted on the UI thread once the template
43 // URL service has finished loading its database. 49 // URL service has finished loading its database.
44 virtual void RequestCallbackWhenTemplateURLServiceIsLoaded( 50 virtual void RequestCallbackWhenTemplateURLServiceIsLoaded(
45 const base::Closure& ready_callback) const = 0; 51 const base::Closure& ready_callback) const = 0;
46 52
53 // Starts downloading the configuration file that specifies the default
54 // settings for the current brandcode; or establishes that we are running a
55 // vanilla (non-branded) build.
56 virtual void FetchBrandcodedDefaultSettingsIfNeeded() = 0;
57
58 // Requests |ready_callback| to be posted on the UI thread once the brandcoded
59 // default settings have been downloaded, or once it has been established that
60 // we are running a vanilla (non-branded) build.
61 virtual void RequestCallbackWhenBrandcodedDefaultsAreFetched(
62 const base::Closure& ready_callback) const = 0;
63
47 // Returns a list of loaded module name digests. 64 // Returns a list of loaded module name digests.
48 virtual scoped_ptr<base::ListValue> GetLoadedModuleNameDigests() const = 0; 65 virtual scoped_ptr<base::ListValue> GetLoadedModuleNameDigests() const = 0;
49 66
50 // Returns attributes of the search engine currently set as the default (or 67 // Returns attributes of the search engine currently set as the default (or
51 // an empty dictionary if there is none). 68 // an empty dictionary if there is none).
52 // The returned attributes correspond in meaning and format to the user 69 // The returned attributes correspond in meaning and format to the user
53 // preferences stored by TemplateURLService::SaveDefaultSearchProviderToPrefs, 70 // preferences stored by TemplateURLService::SaveDefaultSearchProviderToPrefs,
54 // and will be named after the second path name segment of the respective 71 // and will be named after the second path name segment of the respective
55 // preference (i.e. the part after "default_search_provider."). 72 // preference (i.e. the part after "default_search_provider.").
56 // Note that: 73 // Note that:
57 // 1.) the "enabled" attribute will not be present, as it is not technically 74 // 1.) the "enabled" attribute will not be present, as it is not technically
58 // an attribute of a search provider, 75 // an attribute of a search provider,
59 // 2.) "encodings" will be a list of strings, in contrast to a single string 76 // 2.) "encodings" will be a list of strings, in contrast to a single string
60 // with tokens delimited by semicolons, but the order will be the same. 77 // with tokens delimited by semicolons, but the order will be the same.
61 virtual scoped_ptr<base::DictionaryValue> 78 virtual scoped_ptr<base::DictionaryValue>
62 GetDefaultSearchProviderDetails() const = 0; 79 GetDefaultSearchProviderDetails() const = 0;
63 80
64 // Returns whether or not the default search provider is set by policy. 81 // Returns whether or not the default search provider is set by policy.
65 virtual bool IsDefaultSearchProviderManaged() const = 0; 82 virtual bool IsDefaultSearchProviderManaged() const = 0;
66 83
67 // Returns a list of dictionaries, each containing attributes for each of the 84 // Returns a list of dictionaries, each containing attributes for each of the
68 // pre-populated search engines, in the format described above. 85 // pre-populated search engines, in the format described above.
69 virtual scoped_ptr<base::ListValue> 86 virtual scoped_ptr<base::ListValue>
70 GetPrepopulatedSearchProvidersDetails() const = 0; 87 GetPrepopulatedSearchProvidersDetails() const = 0;
71 88
72 // Triggers showing the one-time profile settings reset prompt. 89 // Triggers showing the one-time profile settings reset prompt, which consists
73 virtual void ShowPrompt() = 0; 90 // of two parts: (1.) the profile reset (pop-up) bubble, and (2.) a menu item
91 // in the wrench menu. Showing the bubble might be delayed if there is another
92 // bubble currently shown, in which case the bubble will be shown the first
93 // time a new browser window is opened.
94 // Returns true unless the reset prompt is not supported on the current
95 // platform, in which case it returns false and does nothing.
96 virtual bool TriggerPrompt() = 0;
97
98 // Triggers the ProfileResetter to reset all supported settings and optionally
99 // |send_feedback|. Will post |completion| on the UI thread once completed.
100 // Brandcoded default settings will be fetched if they are not yet available,
101 // the reset will be performed once the download is complete.
102 // NOTE: Should only be called at most once during the lifetime of the object.
103 virtual void TriggerProfileSettingsReset(bool send_feedback,
104 const base::Closure& completion) = 0;
105
106 // Dismisses the one-time profile settings reset prompt, if it is currently
107 // triggered. Will synchronously destroy the corresponding GlobalError.
108 virtual void DismissPrompt() = 0;
74 }; 109 };
75 110
76 // Implementation for AutomaticProfileResetterDelegate. 111 // Implementation for AutomaticProfileResetterDelegate.
77 // To facilitate unit testing, having the TemplateURLService available is only
78 // required when using search engine related methods.
79 class AutomaticProfileResetterDelegateImpl 112 class AutomaticProfileResetterDelegateImpl
80 : public AutomaticProfileResetterDelegate, 113 : public AutomaticProfileResetterDelegate,
114 public base::SupportsWeakPtr<AutomaticProfileResetterDelegateImpl>,
81 public TemplateURLServiceObserver, 115 public TemplateURLServiceObserver,
82 public content::NotificationObserver { 116 public content::NotificationObserver {
83 public: 117 public:
84 // The |template_url_service| may be NULL in unit tests. Must be non-NULL for
85 // callers who wish to call:
86 // * LoadTemplateURLServiceIfNeeded(),
87 // * GetDefaultSearchProviderDetails(),
88 // * GetPrepopulatedSearchProvidersDetails(), or
89 // * IsDefaultSearchManaged().
90 explicit AutomaticProfileResetterDelegateImpl( 118 explicit AutomaticProfileResetterDelegateImpl(
91 TemplateURLService* template_url_service); 119 Profile* profile,
120 ProfileResetter::ResettableFlags resettable_aspects);
92 virtual ~AutomaticProfileResetterDelegateImpl(); 121 virtual ~AutomaticProfileResetterDelegateImpl();
93 122
123 // Returns the brandcoded default settings; empty defaults if this is not a
124 // branded build; or NULL if FetchBrandcodedDefaultSettingsIfNeeded() has not
125 // yet been called or not yet finished. Exposed only for unit tests.
126 const BrandcodedDefaultSettings* brandcoded_defaults() const {
127 return brandcoded_defaults_.get();
128 }
129
94 // AutomaticProfileResetterDelegate: 130 // AutomaticProfileResetterDelegate:
95 virtual void EnumerateLoadedModulesIfNeeded() OVERRIDE; 131 virtual void EnumerateLoadedModulesIfNeeded() OVERRIDE;
96 virtual void RequestCallbackWhenLoadedModulesAreEnumerated( 132 virtual void RequestCallbackWhenLoadedModulesAreEnumerated(
97 const base::Closure& ready_callback) const OVERRIDE; 133 const base::Closure& ready_callback) const OVERRIDE;
98 virtual void LoadTemplateURLServiceIfNeeded() OVERRIDE; 134 virtual void LoadTemplateURLServiceIfNeeded() OVERRIDE;
99 virtual void RequestCallbackWhenTemplateURLServiceIsLoaded( 135 virtual void RequestCallbackWhenTemplateURLServiceIsLoaded(
100 const base::Closure& ready_callback) const OVERRIDE; 136 const base::Closure& ready_callback) const OVERRIDE;
137 virtual void FetchBrandcodedDefaultSettingsIfNeeded() OVERRIDE;
138 virtual void RequestCallbackWhenBrandcodedDefaultsAreFetched(
139 const base::Closure& ready_callback) const OVERRIDE;
101 virtual scoped_ptr<base::ListValue> 140 virtual scoped_ptr<base::ListValue>
102 GetLoadedModuleNameDigests() const OVERRIDE; 141 GetLoadedModuleNameDigests() const OVERRIDE;
103 virtual scoped_ptr<base::DictionaryValue> 142 virtual scoped_ptr<base::DictionaryValue>
104 GetDefaultSearchProviderDetails() const OVERRIDE; 143 GetDefaultSearchProviderDetails() const OVERRIDE;
105 virtual bool IsDefaultSearchProviderManaged() const OVERRIDE; 144 virtual bool IsDefaultSearchProviderManaged() const OVERRIDE;
106 virtual scoped_ptr<base::ListValue> 145 virtual scoped_ptr<base::ListValue>
107 GetPrepopulatedSearchProvidersDetails() const OVERRIDE; 146 GetPrepopulatedSearchProvidersDetails() const OVERRIDE;
108 virtual void ShowPrompt() OVERRIDE; 147 virtual bool TriggerPrompt() OVERRIDE;
148 virtual void TriggerProfileSettingsReset(
149 bool send_feedback,
150 const base::Closure& completion) OVERRIDE;
151 virtual void DismissPrompt() OVERRIDE;
109 152
110 // TemplateURLServiceObserver: 153 // TemplateURLServiceObserver:
111 virtual void OnTemplateURLServiceChanged() OVERRIDE; 154 virtual void OnTemplateURLServiceChanged() OVERRIDE;
112 155
113 // content::NotificationObserver: 156 // content::NotificationObserver:
114 virtual void Observe(int type, 157 virtual void Observe(int type,
115 const content::NotificationSource& source, 158 const content::NotificationSource& source,
116 const content::NotificationDetails& details) OVERRIDE; 159 const content::NotificationDetails& details) OVERRIDE;
117 160
118 private: 161 private:
162 // Sends a feedback |report|, where |report| is supposed to be result of
163 // ::SerializeSettingsReport(). Virtual, so it can be mocked out for tests.
164 virtual void SendFeedback(const std::string& report) const;
165
166 // Triggers the ProfileResetter to reset |resettable_aspects_| and optionally
167 // |send_feedback|. Will invoke |completion| on the UI thread once completed
168 // The |brandcoded_defaults_| must already be initialized when this is called.
169 void RunProfileSettingsReset(bool send_feedback,
170 const base::Closure& completion);
171
172 // Called by |brandcoded_config_fetcher_| when it finishes downloading the
173 // brandcoded default settings (or the download times out).
174 void OnBrandcodedDefaultsFetched();
175
176 // Called back by the ProfileResetter once resetting the profile settings has
177 // been completed. If |old_settings_snapshot| is non-NULL, will compare it to
178 // the new settings and send the differences to Google for analysis. Finally,
179 // will post |user_callback|.
180 void OnProfileSettingsResetCompleted(
181 const base::Closure& user_callback,
182 scoped_ptr<ResettableSettingsSnapshot> old_settings_snapshot);
183
184 Profile* profile_;
185 GlobalErrorService* global_error_service_;
119 TemplateURLService* template_url_service_; 186 TemplateURLService* template_url_service_;
120 187
188 scoped_ptr<BrandcodeConfigFetcher> brandcoded_config_fetcher_;
189 scoped_ptr<BrandcodedDefaultSettings> brandcoded_defaults_;
190
191 const ProfileResetter::ResettableFlags resettable_aspects_;
192 scoped_ptr<ProfileResetter> profile_resetter_;
193
121 content::NotificationRegistrar registrar_; 194 content::NotificationRegistrar registrar_;
122 195
123 // The list of modules found. Even when |modules_have_been_enumerated_event_| 196 // The list of modules found. Even when |modules_have_been_enumerated_event_|
124 // is signaled, this may still be NULL. 197 // is signaled, this may still be NULL.
125 scoped_ptr<base::ListValue> module_list_; 198 scoped_ptr<base::ListValue> module_list_;
126 199
127 // This event is signaled once module enumeration has been attempted. If 200 // This event is signaled once module enumeration has been attempted. If
128 // during construction, EnumerateModulesModel can supply a non-empty list of 201 // during construction, EnumerateModulesModel can supply a non-empty list of
129 // modules, module enumeration has clearly already happened, so the event will 202 // modules, module enumeration has clearly already happened, so the event will
130 // be signaled immediately; otherwise, when EnumerateLoadedModulesIfNeeded() 203 // be signaled immediately; otherwise, when EnumerateLoadedModulesIfNeeded()
131 // is called, it will ask the model to scan the modules, and then signal the 204 // is called, it will ask the model to scan the modules, and then signal the
132 // event once this process is completed. 205 // event once this process is completed.
133 extensions::OneShotEvent modules_have_been_enumerated_event_; 206 extensions::OneShotEvent modules_have_been_enumerated_event_;
134 207
135 // This event is signaled once the TemplateURLService has loaded. If the 208 // This event is signaled once the TemplateURLService has loaded. If the
136 // TemplateURLService was already loaded prior to the creation of this class, 209 // TemplateURLService was already loaded prior to the creation of this class,
137 // the event will be signaled during construction. 210 // the event will be signaled during construction.
138 extensions::OneShotEvent template_url_service_ready_event_; 211 extensions::OneShotEvent template_url_service_ready_event_;
139 212
213 // This event is signaled once brandcoded default settings have been fetched,
214 // or once it has been established that this is not a branded build.
215 extensions::OneShotEvent brandcoded_defaults_fetched_event_;
216
140 DISALLOW_COPY_AND_ASSIGN(AutomaticProfileResetterDelegateImpl); 217 DISALLOW_COPY_AND_ASSIGN(AutomaticProfileResetterDelegateImpl);
141 }; 218 };
142 219
143 #endif // CHROME_BROWSER_PROFILE_RESETTER_AUTOMATIC_PROFILE_RESETTER_DELEGATE_H _ 220 #endif // CHROME_BROWSER_PROFILE_RESETTER_AUTOMATIC_PROFILE_RESETTER_DELEGATE_H _
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698