Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef EXTENSIONS_RENDERER_SCRIPT_INJECTOR_H_ | 5 #ifndef EXTENSIONS_RENDERER_SCRIPT_INJECTOR_H_ |
| 6 #define EXTENSIONS_RENDERER_SCRIPT_INJECTOR_H_ | 6 #define EXTENSIONS_RENDERER_SCRIPT_INJECTOR_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 44 virtual bool ShouldExecuteInMainWorld() const = 0; | 44 virtual bool ShouldExecuteInMainWorld() const = 0; |
| 45 | 45 |
| 46 // Returns true if the script is running inside a user gesture. | 46 // Returns true if the script is running inside a user gesture. |
| 47 virtual bool IsUserGesture() const = 0; | 47 virtual bool IsUserGesture() const = 0; |
| 48 | 48 |
| 49 // Returns true if the script expects results. | 49 // Returns true if the script expects results. |
| 50 virtual bool ExpectsResults() const = 0; | 50 virtual bool ExpectsResults() const = 0; |
| 51 | 51 |
| 52 // Returns true if the script should inject JS source at the given | 52 // Returns true if the script should inject JS source at the given |
| 53 // |run_location|. | 53 // |run_location|. |
| 54 virtual bool ShouldInjectJs(UserScript::RunLocation run_location) const = 0; | 54 virtual bool ShouldInjectJs(UserScript::RunLocation run_location, |
| 55 ScriptsRunInfo* scripts_run_info) const = 0; | |
|
Devlin
2016/08/03 23:34:44
Let's take this as an opportunity to slightly redu
catmullings
2016/08/09 23:13:41
Done.
| |
| 55 | 56 |
| 56 // Returns true if the script should inject CSS at the given |run_location|. | 57 // Returns true if the script should inject CSS at the given |run_location|. |
| 57 virtual bool ShouldInjectCss(UserScript::RunLocation run_location) const = 0; | 58 virtual bool ShouldInjectCss(UserScript::RunLocation run_location, |
| 59 ScriptsRunInfo* scripts_run_info) const = 0; | |
| 58 | 60 |
| 59 // Returns true if the script should execute on the given |frame|. | 61 // Returns true if the script should execute on the given |frame|. |
| 60 virtual PermissionsData::AccessType CanExecuteOnFrame( | 62 virtual PermissionsData::AccessType CanExecuteOnFrame( |
| 61 const InjectionHost* injection_host, | 63 const InjectionHost* injection_host, |
| 62 blink::WebLocalFrame* web_frame, | 64 blink::WebLocalFrame* web_frame, |
| 63 int tab_id) const = 0; | 65 int tab_id) const = 0; |
| 64 | 66 |
| 65 // Returns the javascript sources to inject at the given |run_location|. | 67 // Returns the javascript sources to inject at the given |run_location|. |
| 66 // Only called if ShouldInjectJs() is true. | 68 // Only called if ShouldInjectJs() is true. |
| 67 virtual std::vector<blink::WebScriptSource> GetJsSources( | 69 virtual std::vector<blink::WebScriptSource> GetJsSources( |
| 68 UserScript::RunLocation run_location) const = 0; | 70 UserScript::RunLocation run_location, |
| 71 ScriptsRunInfo* scripts_run_info) const = 0; | |
| 69 | 72 |
| 70 // Returns the css to inject at the given |run_location|. | 73 // Returns the css to inject at the given |run_location|. |
| 71 // Only called if ShouldInjectCss() is true. | 74 // Only called if ShouldInjectCss() is true. |
| 72 virtual std::vector<std::string> GetCssSources( | 75 virtual std::vector<std::string> GetCssSources( |
| 73 UserScript::RunLocation run_location) const = 0; | 76 UserScript::RunLocation run_location, |
| 77 ScriptsRunInfo* scripts_run_info) const = 0; | |
| 74 | 78 |
| 75 // Fill scriptrs run info based on information about injection. | 79 // Fill scriptrs run info based on information about injection. |
| 76 virtual void GetRunInfo( | 80 virtual void GetRunInfo( |
| 77 ScriptsRunInfo* scripts_run_info, | 81 ScriptsRunInfo* scripts_run_info, |
| 78 UserScript::RunLocation run_location) const = 0; | 82 UserScript::RunLocation run_location) const = 0; |
| 79 | 83 |
| 80 // Notifies the script that injection has completed, with a possibly-populated | 84 // Notifies the script that injection has completed, with a possibly-populated |
| 81 // list of results (depending on whether or not ExpectsResults() was true). | 85 // list of results (depending on whether or not ExpectsResults() was true). |
| 82 // |render_frame| contains the render frame, or null if the frame was | 86 // |render_frame| contains the render frame, or null if the frame was |
| 83 // invalidated. | 87 // invalidated. |
| 84 virtual void OnInjectionComplete( | 88 virtual void OnInjectionComplete( |
| 85 std::unique_ptr<base::Value> execution_result, | 89 std::unique_ptr<base::Value> execution_result, |
| 86 UserScript::RunLocation run_location, | 90 UserScript::RunLocation run_location, |
| 87 content::RenderFrame* render_frame) = 0; | 91 content::RenderFrame* render_frame) = 0; |
| 88 | 92 |
| 89 // Notifies the script that injection will never occur. | 93 // Notifies the script that injection will never occur. |
| 90 // |render_frame| contains the render frame, or null if the frame was | 94 // |render_frame| contains the render frame, or null if the frame was |
| 91 // invalidated. | 95 // invalidated. |
| 92 virtual void OnWillNotInject(InjectFailureReason reason, | 96 virtual void OnWillNotInject(InjectFailureReason reason, |
| 93 content::RenderFrame* render_frame) = 0; | 97 content::RenderFrame* render_frame) = 0; |
| 94 }; | 98 }; |
| 95 | 99 |
| 96 } // namespace extensions | 100 } // namespace extensions |
| 97 | 101 |
| 98 #endif // EXTENSIONS_RENDERER_SCRIPT_INJECTOR_H_ | 102 #endif // EXTENSIONS_RENDERER_SCRIPT_INJECTOR_H_ |
| OLD | NEW |