Commit 5c1a81e6 authored by eugenebut's avatar eugenebut Committed by Commit bot

[ios] Declare missing i variable in plugin_placeholder.js.

BUG=487804

Review-Url: https://codereview.chromium.org/2346703002
Cr-Commit-Position: refs/heads/master@{#419246}
parent 03a7397b
...@@ -128,7 +128,7 @@ __gCrWeb['plugin'] = {}; ...@@ -128,7 +128,7 @@ __gCrWeb['plugin'] = {};
* @param {string} message The message to show in the placeholder. * @param {string} message The message to show in the placeholder.
*/ */
__gCrWeb['plugin']['addPluginPlaceholders'] = function(message) { __gCrWeb['plugin']['addPluginPlaceholders'] = function(message) {
var plugins = __gCrWeb['placeholderTargetPlugins']; var i, plugins = __gCrWeb['placeholderTargetPlugins'];
for (i = 0; i < plugins.length; i++) { for (i = 0; i < plugins.length; i++) {
var plugin = plugins[i]; var plugin = plugins[i];
if (!__gCrWeb['plugin'].isSignificantPlugin_(plugin)) { if (!__gCrWeb['plugin'].isSignificantPlugin_(plugin)) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment