Bug 563361 - Increase the maximum chunk size for delivering stream data to a plugin so that poorly-written Flash which assume stuff about streams don't break, r=bent

This commit is contained in:
Benjamin Smedberg 2010-07-08 16:28:04 -07:00
parent 9c471dc851
commit 4ccd9d4996

View File

@ -7,7 +7,7 @@
// How much data are we willing to send across the wire
// in one chunk?
static const int32_t kSendDataChunk = 0x1000;
static const int32_t kSendDataChunk = 0x4000;
namespace mozilla {
namespace plugins {