| 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 95c99036237d9faa254959a7d02b542832c7b70c..8542906c2946874ca592102944d28e1fd07b9931 100644
|
| --- a/chrome/browser/ui/webui/options/core_options_handler.h
|
| +++ b/chrome/browser/ui/webui/options/core_options_handler.h
|
| @@ -47,14 +47,14 @@ class CoreOptionsHandler : public OptionsPageUIHandler {
|
| protected:
|
| // Fetches a pref value of given |pref_name|.
|
| // Note that caller owns the returned Value.
|
| - virtual Value* FetchPref(const std::string& pref_name);
|
| + virtual base::Value* FetchPref(const std::string& pref_name);
|
|
|
| // Observes a pref of given |pref_name|.
|
| virtual void ObservePref(const std::string& pref_name);
|
|
|
| // Sets a pref |value| to given |pref_name|.
|
| virtual void SetPref(const std::string& pref_name,
|
| - const Value* value,
|
| + const base::Value* value,
|
| const std::string& metric);
|
|
|
| // Clears pref value for given |pref_name|.
|
| @@ -64,7 +64,7 @@ class CoreOptionsHandler : public OptionsPageUIHandler {
|
| virtual void StopObservingPref(const std::string& path);
|
|
|
| // Records a user metric action for the given value.
|
| - void ProcessUserMetric(const Value* value,
|
| + void ProcessUserMetric(const base::Value* value,
|
| const std::string& metric);
|
|
|
| // Notifies registered JS callbacks on change in |pref_name| preference.
|
|
|