Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(463)

Unified Diff: ios/web/web_state/js/resources/plugin_placeholder.js

Issue 2346703002: [ios] Declare missing i variable in plugin_placeholder.js. (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/web/web_state/js/resources/plugin_placeholder.js
diff --git a/ios/web/web_state/js/resources/plugin_placeholder.js b/ios/web/web_state/js/resources/plugin_placeholder.js
index c8fcbab597b1d8f63f94f84f711ea729577d07a6..5588f5075832671581c718e56d50d9b4821647a4 100644
--- a/ios/web/web_state/js/resources/plugin_placeholder.js
+++ b/ios/web/web_state/js/resources/plugin_placeholder.js
@@ -128,7 +128,7 @@ __gCrWeb['plugin'] = {};
* @param {string} message The message to show in the placeholder.
*/
__gCrWeb['plugin']['addPluginPlaceholders'] = function(message) {
- var plugins = __gCrWeb['placeholderTargetPlugins'];
+ var i, plugins = __gCrWeb['placeholderTargetPlugins'];
for (i = 0; i < plugins.length; i++) {
var plugin = plugins[i];
if (!__gCrWeb['plugin'].isSignificantPlugin_(plugin)) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698