| Index: chrome/browser/ui/webui/options/chromeos/core_chromeos_options_handler.cc
|
| diff --git a/chrome/browser/ui/webui/options/chromeos/core_chromeos_options_handler.cc b/chrome/browser/ui/webui/options/chromeos/core_chromeos_options_handler.cc
|
| index 295b834849a0fab0b711d9183b00e6b794d5f952..b761d69dc859dc9095284500ecfbdbc8f69e97c7 100644
|
| --- a/chrome/browser/ui/webui/options/chromeos/core_chromeos_options_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/chromeos/core_chromeos_options_handler.cc
|
| @@ -26,7 +26,7 @@ Value* CoreChromeOSOptionsHandler::FetchPref(const std::string& pref_name) {
|
|
|
| Value* pref_value = NULL;
|
| CrosSettings::Get()->Get(pref_name, &pref_value);
|
| - return pref_value ? pref_value : Value::CreateNullValue();
|
| + return pref_value ? pref_value : base::NullValue();
|
| }
|
|
|
| void CoreChromeOSOptionsHandler::ObservePref(const std::string& pref_name) {
|
|
|