| 30 | namespace webdriver { |
| 31 | |
| 32 | Script::Script(IHTMLDocument2* document, |
| 33 | std::string script_source, |
| 34 | unsigned long argument_count) { |
| 35 | std::wstring wide_script = StringUtilities::ToWString(script_source); |
| 36 | this->Initialize(document, wide_script, argument_count); |
| 37 | } |
| 38 | |
| 39 | Script::Script(IHTMLDocument2* document, |
| 40 | std::wstring script_source, |
nothing calls this directly
no test coverage detected