| Index: chrome/browser/extensions/extension_prefs.cc
|
| diff --git a/chrome/browser/extensions/extension_prefs.cc b/chrome/browser/extensions/extension_prefs.cc
|
| index da1bd259c0c37a5a8384b661f5b1167f10c5d75c..3f6bb88dfc3597c1eccd1079af12ee52dd871425 100644
|
| --- a/chrome/browser/extensions/extension_prefs.cc
|
| +++ b/chrome/browser/extensions/extension_prefs.cc
|
| @@ -239,8 +239,7 @@ void ExtensionPrefs::MakePathsAbsolute(DictionaryValue* dict) {
|
| DictionaryValue* ExtensionPrefs::CopyCurrentExtensions() {
|
| const DictionaryValue* extensions = prefs_->GetDictionary(kExtensionsPref);
|
| if (extensions) {
|
| - DictionaryValue* copy =
|
| - static_cast<DictionaryValue*>(extensions->DeepCopy());
|
| + DictionaryValue* copy = extensions->DeepCopy();
|
| MakePathsAbsolute(copy);
|
| return copy;
|
| }
|
|
|