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
Родитель 78c8d3b945
Коммит 6bef02ab89
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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 {