diff options
author | sehr@google.com <sehr@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-10 20:07:10 +0000 |
---|---|---|
committer | sehr@google.com <sehr@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-10 20:07:10 +0000 |
commit | db04b32c478de76769e115220546e6568cdf33ca (patch) | |
tree | 876fd3f9d5345d52750faabc65e30f8f5d17283b /ppapi/tests | |
parent | 91854cd80ca6305413c9afc05c395c60ac51a854 (diff) | |
download | chromium_src-db04b32c478de76769e115220546e6568cdf33ca.zip chromium_src-db04b32c478de76769e115220546e6568cdf33ca.tar.gz chromium_src-db04b32c478de76769e115220546e6568cdf33ca.tar.bz2 |
Revert 117055 - Lift the 64K limit on SRPCs done in the proxy.
This CL makes all in-arguments unlimited in size, while retaining the 64K limit
on out-arguments for now.
BUG= http://code.google.com/p/chromium/issues/detail?id=106266
TEST=none
Review URL: http://codereview.chromium.org/9141001
TBR=sehr@google.com
Review URL: http://codereview.chromium.org/9147043
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@117085 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/tests')
-rw-r--r-- | ppapi/tests/test_post_message.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ppapi/tests/test_post_message.cc b/ppapi/tests/test_post_message.cc index c6bbfd2..5054a6a 100644 --- a/ppapi/tests/test_post_message.cc +++ b/ppapi/tests/test_post_message.cc @@ -253,7 +253,7 @@ std::string TestPostMessage::TestSendingArrayBuffer() { // TODO(dmichael): Add testing of longer array buffers when crbug.com/106266 // is fixed. - uint32_t sizes[] = { 0, 100, 1000, 10000, 100000, 1000000 }; + uint32_t sizes[] = { 0, 100, 1000 }; for (size_t i = 0; i < sizeof(sizes)/sizeof(sizes[i]); ++i) { std::ostringstream size_stream; size_stream << sizes[i]; @@ -484,3 +484,4 @@ std::string TestPostMessage::TestNonMainThread() { PASS(); } + |