| Index: chrome/browser/ui/webui/settings/reset_settings_handler.h
|
| diff --git a/chrome/browser/ui/webui/settings/reset_settings_handler.h b/chrome/browser/ui/webui/settings/reset_settings_handler.h
|
| index fefcea6389f28ca076a35bae5091070ff8ab68d0..ae71801c84f72578ab1181438ad2083275787f88 100644
|
| --- a/chrome/browser/ui/webui/settings/reset_settings_handler.h
|
| +++ b/chrome/browser/ui/webui/settings/reset_settings_handler.h
|
| @@ -53,6 +53,12 @@ class ResetSettingsHandler : public SettingsPageUIHandler {
|
| void HandleResetProfileSettings(const base::ListValue* args);
|
|
|
| private:
|
| + // Retrieves the settings that will be reported, called from Javascript.
|
| + void HandleGetReportedSettings(const base::ListValue* args);
|
| +
|
| + // Called once the settings that will be reported have been retrieved.
|
| + void OnGetReportedSettingsDone(std::string callback_id);
|
| +
|
| // Called when the reset profile dialog is shown.
|
| void OnShowResetProfileDialog(const base::ListValue* args);
|
|
|
| @@ -73,9 +79,6 @@ class ResetSettingsHandler : public SettingsPageUIHandler {
|
| void OnResetProfileSettingsDone(std::string callback_id,
|
| bool send_feedback);
|
|
|
| - // Sets new values for the feedback area.
|
| - void UpdateFeedbackUI();
|
| -
|
| #if defined(OS_CHROMEOS)
|
| // Will be called when powerwash dialog is shown.
|
| void OnShowPowerwashDialog(const base::ListValue* args);
|
|
|