| Index: webkit/plugins/npapi/plugin_list_mac.mm
|
| diff --git a/webkit/plugins/npapi/plugin_list_mac.mm b/webkit/plugins/npapi/plugin_list_mac.mm
|
| index 049fe4de8005c2fcf9455ffefcee57e1d147e784..fabe646553c855c79eff8f5b4a3550af0b3f33c1 100644
|
| --- a/webkit/plugins/npapi/plugin_list_mac.mm
|
| +++ b/webkit/plugins/npapi/plugin_list_mac.mm
|
| @@ -98,8 +98,9 @@ bool PluginList::ShouldLoadPlugin(const WebPluginInfo& info,
|
| // (we're loading plugins hierarchically from Library folders, so plugins we
|
| // encounter earlier must override plugins we encounter later)
|
| for (size_t i = 0; i < plugins->size(); ++i) {
|
| - if ((*plugins)[i].path.BaseName() == info.path.BaseName()) {
|
| - return false; // We already have a loaded plugin higher in the hierarchy.
|
| + if (plugins->at(i).path.BaseName() == info.path.BaseName()) {
|
| + // We already have a loaded plugin higher in the hierarchy.
|
| + return false;
|
| }
|
| }
|
|
|
|
|