| Index: chrome/browser/ui/webui/options/chromeos/language_options_util.cc
|
| diff --git a/chrome/browser/ui/webui/options/chromeos/language_options_util.cc b/chrome/browser/ui/webui/options/chromeos/language_options_util.cc
|
| index e8e996fc1cc28a55cfc0752cc19f62f31ce038b9..7604fbadbfb986ffacec89192d07e9b8ad639148 100644
|
| --- a/chrome/browser/ui/webui/options/chromeos/language_options_util.cc
|
| +++ b/chrome/browser/ui/webui/options/chromeos/language_options_util.cc
|
| @@ -8,12 +8,12 @@ namespace chromeos {
|
| namespace options {
|
|
|
| // See comments in .h.
|
| -Value* CreateValue(const char* in_value) {
|
| - return Value::CreateStringValue(in_value);
|
| +base::Value* CreateValue(const char* in_value) {
|
| + return new base::StringValue(in_value);
|
| }
|
|
|
| -Value* CreateValue(int in_value) {
|
| - return Value::CreateIntegerValue(in_value);
|
| +base::Value* CreateValue(int in_value) {
|
| + return new base::FundamentalValue(in_value);
|
| }
|
|
|
| } // namespace options
|
|
|