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

Unified Diff: chrome/test/data/extensions/api_test/stubs/content_script.js

Issue 7029031: Content settings extension API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 9 years, 6 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
Index: chrome/test/data/extensions/api_test/stubs/content_script.js
diff --git a/chrome/test/data/extensions/api_test/stubs/content_script.js b/chrome/test/data/extensions/api_test/stubs/content_script.js
index 8c8d499e34551c266b05a6979ef5473c1391a5f5..03aa56f8879540c6fd7fcc9fb4211cc07204f89a 100644
--- a/chrome/test/data/extensions/api_test/stubs/content_script.js
+++ b/chrome/test/data/extensions/api_test/stubs/content_script.js
@@ -24,7 +24,7 @@ chrome.extension.sendRequest("getApi", function(apis) {
["functions", "events"].forEach(function(section) {
if (typeof(module[section]) == "undefined")
return;
- module[section].forEach(function(entry) {
+ module[section].forEach(function(entry) {
var path = namespace + "." + entry.name;
if (entry.unprivileged) {
unprivilegedPaths.push(path);

Powered by Google App Engine
This is Rietveld 408576698