| Index: webkit/glue/plugins/plugin_string_stream.cc
|
| ===================================================================
|
| --- webkit/glue/plugins/plugin_string_stream.cc (revision 7063)
|
| +++ webkit/glue/plugins/plugin_string_stream.cc (working copy)
|
| @@ -20,7 +20,7 @@
|
| void PluginStringStream::SendToPlugin(const std::string &data,
|
| const std::string &mime_type) {
|
| int length = static_cast<int>(data.length());
|
| - if (Open(mime_type, std::string(), length, 0)) {
|
| + if (Open(mime_type, std::string(), length, 0, false)) {
|
| // TODO - check if it was not fully sent, and figure out a backup plan.
|
| int written = Write(data.c_str(), length, 0);
|
| NPReason reason = written == length ? NPRES_DONE : NPRES_NETWORK_ERR;
|
|
|