| Index: chrome/browser/prefs/command_line_pref_store.cc
|
| diff --git a/chrome/browser/prefs/command_line_pref_store.cc b/chrome/browser/prefs/command_line_pref_store.cc
|
| index ae3d50f1a30ac3e8ddc4d2ed085636232f61f545..f838e3db6ae40e2413aa649a0214c1d52cd18814 100644
|
| --- a/chrome/browser/prefs/command_line_pref_store.cc
|
| +++ b/chrome/browser/prefs/command_line_pref_store.cc
|
| @@ -115,8 +115,8 @@ void CommandLinePrefStore::ApplySimpleSwitches() {
|
| << " can not be converted to integer, ignoring!";
|
| continue;
|
| }
|
| - base::Value* value = base::Value::CreateIntegerValue(int_value);
|
| - SetValue(integer_switch_map_[i].preference_path, value);
|
| + SetValue(integer_switch_map_[i].preference_path,
|
| + new base::FundamentalValue(int_value));
|
| }
|
| }
|
|
|
|
|