| OLD | NEW |
| 1 # To be used with | 1 # To be used with |
| 2 # sel_universal_ppapi_replay_prolog.stdin | 2 # sel_universal_ppapi_replay_prolog.stdin |
| 3 # define a bunch of variables for readability | 3 # define a bunch of variables for readability |
| 4 | 4 |
| 5 # NOTE: this test exercises the request.SetStreamToFile(false) case |
| 6 |
| 5 set_variable MODULE i(4444) | 7 set_variable MODULE i(4444) |
| 6 set_variable INSTANCE i(5555) | 8 set_variable INSTANCE i(5555) |
| 7 | 9 |
| 8 # Tags used by pepper/srpc to marshall js parameters | 10 # Tags used by pepper/srpc to marshall js parameters |
| 9 set_variable JS_STR 4:5 | 11 set_variable JS_STR 4:5 |
| 10 set_variable JS_INT 4:2 | 12 set_variable JS_INT 4:2 |
| 11 | 13 |
| 12 # NOTE: the strings below must not contain unescaped spaces or commas | 14 # NOTE: the strings below must not contain unescaped spaces or commas |
| 13 | 15 |
| 14 set_variable FILE_DATA1 C(6,hello\x20) | 16 set_variable FILE_DATA1 C(6,hello\x20) |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 rpc RunCompletionCallback i(3) ${FILE_SIZE2} ${FILE_DATA2} * | 79 rpc RunCompletionCallback i(3) ${FILE_SIZE2} ${FILE_DATA2} * |
| 78 | 80 |
| 79 echo | 81 echo |
| 80 echo "*** async ReaderResponseBody Callback (eof - 0 bytes)" | 82 echo "*** async ReaderResponseBody Callback (eof - 0 bytes)" |
| 81 replay 1 PPB_Messaging_PostMessage:iC: ${INSTANCE} ${COMPLETE} * | 83 replay 1 PPB_Messaging_PostMessage:iC: ${INSTANCE} ${COMPLETE} * |
| 82 rpc RunCompletionCallback i(4) i(0) C(0,) * | 84 rpc RunCompletionCallback i(4) i(0) C(0,) * |
| 83 | 85 |
| 84 echo | 86 echo |
| 85 echo "*** DONE" | 87 echo "*** DONE" |
| 86 rpc PPP_ShutdownModule * | 88 rpc PPP_ShutdownModule * |
| OLD | NEW |