| Index: chrome/browser/ui/webui/options/core_options_handler.h
|
| diff --git a/chrome/browser/ui/webui/options/core_options_handler.h b/chrome/browser/ui/webui/options/core_options_handler.h
|
| index 36a235530a8d072fe90d2b309e0c0e02c5125a76..9aa5f4fcb7366b39bbe3ec2069f3f7fca9caa15c 100644
|
| --- a/chrome/browser/ui/webui/options/core_options_handler.h
|
| +++ b/chrome/browser/ui/webui/options/core_options_handler.h
|
| @@ -10,6 +10,7 @@
|
| #include <string>
|
|
|
| #include "base/values.h"
|
| +#include "chrome/browser/plugin_data_remover_helper.h"
|
| #include "chrome/browser/prefs/pref_change_registrar.h"
|
| #include "chrome/browser/ui/webui/options/options_ui.h"
|
|
|
| @@ -21,6 +22,7 @@ class CoreOptionsHandler : public OptionsPageUIHandler {
|
| virtual ~CoreOptionsHandler();
|
|
|
| // OptionsPageUIHandler implementation.
|
| + virtual void Initialize();
|
| virtual void GetLocalizedValues(DictionaryValue* localized_strings);
|
| virtual void Uninitialize();
|
|
|
| @@ -102,11 +104,17 @@ class CoreOptionsHandler : public OptionsPageUIHandler {
|
| // is an array that contains a single item, the name of the metric identifier.
|
| void HandleUserMetricsAction(const ListValue* args);
|
|
|
| + void UpdateClearPluginLSOData();
|
| +
|
| void NotifyPrefChanged(const std::string* pref_name);
|
|
|
| OptionsPageUIHandlerHost* handlers_host_;
|
| PrefChangeRegistrar registrar_;
|
|
|
| + // Used for asynchronously updating the preference stating whether clearing
|
| + // LSO data is supported.
|
| + PluginDataRemoverHelper clear_plugin_lso_data_enabled_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(CoreOptionsHandler);
|
| };
|
|
|
|
|