Index: extensions/renderer/script_injection.h |
diff --git a/extensions/renderer/script_injection.h b/extensions/renderer/script_injection.h |
index 7b501f40e1da0bd0240760647cfd708a6616071c..5d2c671d70a0a248d47a451d33c133175aa209c9 100644 |
--- a/extensions/renderer/script_injection.h |
+++ b/extensions/renderer/script_injection.h |
@@ -98,14 +98,16 @@ class ScriptInjection { |
InjectionResult Inject(ScriptsRunInfo* scripts_run_info); |
// Inject any JS scripts into the frame for the injection. |
- void InjectJs(); |
+ void InjectJs(std::set<std::string>* executing_scripts, |
+ size_t* num_injected_js_scripts); |
// Called when JS injection for the given frame has been completed. |
void OnJsInjectionCompleted( |
const blink::WebVector<v8::Local<v8::Value> >& results); |
// Inject any CSS source into the frame for the injection. |
- void InjectCss(); |
+ void InjectCss(std::set<std::string>* injected_stylesheets, |
+ size_t* num_injected_stylesheets); |
// Notify that we will not inject, and mark it as acknowledged. |
void NotifyWillNotInject(ScriptInjector::InjectFailureReason reason); |