| Index: extensions/browser/verified_contents.cc
|
| diff --git a/extensions/browser/verified_contents.cc b/extensions/browser/verified_contents.cc
|
| index 9fdae10b9e59587d5f28cb70b3453f965c3444fa..b8acb9cba8c6db68c17fe1afab7068a965d7b32f 100644
|
| --- a/extensions/browser/verified_contents.cc
|
| +++ b/extensions/browser/verified_contents.cc
|
| @@ -44,8 +44,8 @@ const char kWebstoreKId[] = "webstore";
|
| // Helper function to iterate over a list of dictionaries, returning the
|
| // dictionary that has |key| -> |value| in it, if any, or NULL.
|
| DictionaryValue* FindDictionaryWithValue(const ListValue* list,
|
| - std::string key,
|
| - std::string value) {
|
| + const std::string& key,
|
| + const std::string& value) {
|
| for (const auto& i : *list) {
|
| DictionaryValue* dictionary;
|
| if (!i->GetAsDictionary(&dictionary))
|
|
|