| Index: extensions/renderer/script_injection.h
|
| diff --git a/extensions/renderer/script_injection.h b/extensions/renderer/script_injection.h
|
| index 7b501f40e1da0bd0240760647cfd708a6616071c..1ad02019ef407071a26e2447da7ff437e3c11c97 100644
|
| --- a/extensions/renderer/script_injection.h
|
| +++ b/extensions/renderer/script_injection.h
|
| @@ -98,14 +98,17 @@ class ScriptInjection {
|
| InjectionResult Inject(ScriptsRunInfo* scripts_run_info);
|
|
|
| // Inject any JS scripts into the frame for the injection.
|
| - void InjectJs();
|
| + void InjectJs(std::map<std::string, 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::map<std::string, std::set<std::string>>* executing_scripts,
|
| + size_t* num_injected_css_scripts);
|
|
|
| // Notify that we will not inject, and mark it as acknowledged.
|
| void NotifyWillNotInject(ScriptInjector::InjectFailureReason reason);
|
|
|