| Index: chrome/browser/extensions/extension_sorting.cc
|
| diff --git a/chrome/browser/extensions/extension_sorting.cc b/chrome/browser/extensions/extension_sorting.cc
|
| index 1af664016967990b99bdc57465f3227b3e67aa85..fa17dacd6c6856f5815e19b85d67583c5cc3f4ac 100644
|
| --- a/chrome/browser/extensions/extension_sorting.cc
|
| +++ b/chrome/browser/extensions/extension_sorting.cc
|
| @@ -306,7 +306,7 @@ void ExtensionSorting::SetAppLaunchOrdinal(
|
| AddOrdinalMapping(extension_id, page_ordinal, new_app_launch_ordinal);
|
|
|
| Value* new_value = new_app_launch_ordinal.IsValid() ?
|
| - Value::CreateStringValue(new_app_launch_ordinal.ToInternalValue()) :
|
| + new base::StringValue(new_app_launch_ordinal.ToInternalValue()) :
|
| NULL;
|
|
|
| extension_scoped_prefs_->UpdateExtensionPref(
|
| @@ -385,7 +385,7 @@ void ExtensionSorting::SetPageOrdinal(
|
| AddOrdinalMapping(extension_id, new_page_ordinal, app_launch_ordinal);
|
|
|
| Value* new_value = new_page_ordinal.IsValid() ?
|
| - Value::CreateStringValue(new_page_ordinal.ToInternalValue()) :
|
| + new base::StringValue(new_page_ordinal.ToInternalValue()) :
|
| NULL;
|
|
|
| extension_scoped_prefs_->UpdateExtensionPref(
|
|
|