| Index: chrome/browser/ui/webui/options/content_settings_handler.cc
|
| diff --git a/chrome/browser/ui/webui/options/content_settings_handler.cc b/chrome/browser/ui/webui/options/content_settings_handler.cc
|
| index fafee9bd98bfc1ee8140e732495ffbef6cff14aa..97bd95c0bbb04c32745d0b65cc8ea151747cf359 100644
|
| --- a/chrome/browser/ui/webui/options/content_settings_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/content_settings_handler.cc
|
| @@ -1140,7 +1140,7 @@ void ContentSettingsHandler::UpdateZoomLevelsExceptionsView() {
|
| exception->SetString(
|
| site_settings::kSource, site_settings::kPreferencesSource);
|
| // Append the new entry to the list and map.
|
| - zoom_levels_exceptions.Append(exception.release());
|
| + zoom_levels_exceptions.Append(std::move(exception));
|
| }
|
|
|
| base::StringValue type_string(kZoomContentType);
|
|
|