From b2946f19202e8532d202510c396a6c5f8dd748af Mon Sep 17 00:00:00 2001 From: Benjamin Smedberg Date: Thu, 8 Jul 2010 16:28:04 -0700 Subject: [PATCH] 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 --- dom/plugins/BrowserStreamParent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dom/plugins/BrowserStreamParent.cpp b/dom/plugins/BrowserStreamParent.cpp index 90d96720677..38ff60b677b 100644 --- a/dom/plugins/BrowserStreamParent.cpp +++ b/dom/plugins/BrowserStreamParent.cpp @@ -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 {