diff options
Diffstat (limited to 'chrome/renderer/user_script_slave.cc')
-rw-r--r-- | chrome/renderer/user_script_slave.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/renderer/user_script_slave.cc b/chrome/renderer/user_script_slave.cc index 2ebd68f..7f7ad31 100644 --- a/chrome/renderer/user_script_slave.cc +++ b/chrome/renderer/user_script_slave.cc @@ -130,7 +130,7 @@ bool UserScriptSlave::InjectScripts(WebFrame* frame, for (size_t j = 0; j < script->css_scripts().size(); ++j) { UserScript::File& file = script->css_scripts()[j]; frame->insertStyleText( - WebString::fromUTF8(file.GetContent().as_string())); + WebString::fromUTF8(file.GetContent().as_string()), WebString()); } } if (script->run_location() == location) { |