Index: Source/devtools/front_end/ExtensionServer.js |
diff --git a/Source/devtools/front_end/ExtensionServer.js b/Source/devtools/front_end/ExtensionServer.js |
index b0f0a2fb7ea5eb238cd9de15626e20e84a04245e..15a668c3cb01c5d7dd21572bf987259796e46d44 100644 |
--- a/Source/devtools/front_end/ExtensionServer.js |
+++ b/Source/devtools/front_end/ExtensionServer.js |
@@ -325,7 +325,8 @@ WebInspector.ExtensionServer.prototype = { |
var injectedScript; |
if (options.injectedScript) |
injectedScript = "(function(){" + options.injectedScript + "})()"; |
- PageAgent.reload(!!options.ignoreCache, injectedScript); |
+ var preprocessingScript = options.preprocessingScript; |
+ PageAgent.reload(!!options.ignoreCache, injectedScript, preprocessingScript); |
return this._status.OK(); |
}, |