blob: d0e3405bf6418d0eb832ee98cadf85ca939d3dd8 [file] [log] [blame]
// 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 <memory>
#include <string>
#include "base/compiler_specific.h"
#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "chrome/browser/profile_resetter/profile_reset_report.pb.h"
#include "chrome/browser/ui/webui/options/options_ui.h"
namespace base {
class DictionaryValue;
class ListValue;
} // namespace base
class BrandcodeConfigFetcher;
class ProfileResetter;
class ResettableSettingsSnapshot;
namespace options {
// Handler for both the 'Reset Profile Settings' overlay page and also the
// corresponding banner that is shown at the top of the options page.
class ResetProfileSettingsHandler
: public OptionsPageUIHandler,
public base::SupportsWeakPtr<ResetProfileSettingsHandler> {
public:
// Hash used by the Chrome Cleanup Tool when launching chrome with the reset
// profile settings URL.
static const char kCctResetSettingsHash[];
ResetProfileSettingsHandler();
~ResetProfileSettingsHandler() override;
// OptionsPageUIHandler implementation.
void GetLocalizedValues(base::DictionaryValue* localized_strings) override;
void InitializeHandler() override;
void InitializePage() override;
// WebUIMessageHandler implementation.
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(
bool send_feedback,
reset_report::ChromeResetReport::ResetRequestOrigin request_origin);
// Called when the confirmation box appears.
void OnShowResetProfileDialog(const base::ListValue* value);
// Called when the confirmation box disappears.
void OnHideResetProfileDialog(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 their consent to upload broken settings to Google for analysis.
void ResetProfile(
bool send_settings,
reset_report::ChromeResetReport::ResetRequestOrigin request_origin);
// Sets new values for the feedback area.
void UpdateFeedbackUI();
std::unique_ptr<ProfileResetter> resetter_;
std::unique_ptr<BrandcodeConfigFetcher> config_fetcher_;
// Snapshot of settings before profile was reseted.
std::unique_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_