Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Unified Diff: ppapi/tests/test_post_message.cc

Issue 9187071: Lift the 64K message size limit for postMessage to/from NativeClient. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_url_response_info.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/tests/test_post_message.cc
===================================================================
--- ppapi/tests/test_post_message.cc (revision 117568)
+++ ppapi/tests/test_post_message.cc (working copy)
@@ -251,9 +251,9 @@
WaitForMessages();
ASSERT_TRUE(ClearListeners());
- // TODO(dmichael): Add testing of longer array buffers when crbug.com/106266
- // is fixed.
- uint32_t sizes[] = { 0, 100, 1000 };
+ // TODO(sehr,dmichael): Add testing of longer array buffers when
+ // crbug.com/110086 is fixed.
+ uint32_t sizes[] = { 0, 100, 1000, 10000, 100000 };
for (size_t i = 0; i < sizeof(sizes)/sizeof(sizes[i]); ++i) {
std::ostringstream size_stream;
size_stream << sizes[i];
@@ -484,4 +484,3 @@
PASS();
}
-
« no previous file with comments | « ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_url_response_info.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698