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

Issue 6899055: PPAPI: Force async callback invocation option. (Closed)

Created:
9 years, 8 months ago by polina
Modified:
9 years, 5 months ago
CC:
chromium-reviews, piman+watch_chromium.org, darin-cc_chromium.org
Visibility:
Public.

Description

Add a flag field to PP_CompletionCallback to control if the callback should always be invoked asynchronously on success or error or skipped if the operation can complete synchronously without blocking. Keep the default behavior as-is until clients update their code. Bump revisions of all interfaces that take callbacks as args. Update browser interface function implementations and C++ layer to force callbacks if sync option is not set. Change ppapi/tests to run tests involving callbacks with both flag options. BUG=79376 TEST=ppapi_tests + bots Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=91205

Patch Set 1 : '' #

Total comments: 9

Patch Set 2 : '' #

Patch Set 3 : '' #

Patch Set 4 : '' #

Patch Set 5 : '' #

Total comments: 50

Patch Set 6 : '' #

Patch Set 7 : '' #

Patch Set 8 : '' #

Total comments: 8

Patch Set 9 : '' #

Patch Set 10 : '' #

Total comments: 2

Patch Set 11 : '' #

Patch Set 12 : '' #

Patch Set 13 : '' #

Unified diffs Side-by-side diffs Delta from patch set Stats (+855 lines, -364 lines) Patch
M chrome/test/nacl_test_injection/buildbot_nacl_integration.py View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -1 line 0 comments Download
M ppapi/c/dev/ppb_directory_reader_dev.h View 1 2 3 4 5 6 7 8 9 10 11 12 3 chunks +3 lines, -4 lines 0 comments Download
M ppapi/c/dev/ppb_file_chooser_dev.h View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +3 lines, -3 lines 0 comments Download
M ppapi/c/dev/ppb_file_io_dev.h View 1 2 3 4 5 6 7 8 9 10 11 12 3 chunks +3 lines, -4 lines 0 comments Download
M ppapi/c/dev/ppb_file_io_trusted_dev.h View 1 2 3 4 5 6 7 8 9 10 11 12 3 chunks +3 lines, -4 lines 0 comments Download
M ppapi/c/dev/ppb_file_ref_dev.h View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +2 lines, -3 lines 0 comments Download
M ppapi/c/dev/ppb_file_system_dev.h View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +2 lines, -3 lines 0 comments Download
M ppapi/c/dev/ppb_graphics_3d_dev.h View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +2 lines, -3 lines 0 comments Download
M ppapi/c/dev/ppb_layer_compositor_dev.h View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +3 lines, -1 line 0 comments Download
M ppapi/c/dev/ppb_surface_3d_dev.h View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +3 lines, -3 lines 0 comments Download
M ppapi/c/dev/ppb_transport_dev.h View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +2 lines, -2 lines 0 comments Download
M ppapi/c/pp_completion_callback.h View 1 2 3 4 5 6 7 8 9 10 11 12 6 chunks +97 lines, -29 lines 0 comments Download
M ppapi/c/ppb_core.h View 1 2 3 4 5 6 7 8 9 10 11 12 3 chunks +3 lines, -4 lines 0 comments Download
M ppapi/c/ppb_file_io.h View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +3 lines, -2 lines 0 comments Download
M ppapi/c/ppb_file_ref.h View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +3 lines, -2 lines 0 comments Download
M ppapi/c/ppb_file_system.h View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +2 lines, -2 lines 0 comments Download
M ppapi/c/ppb_graphics_2d.h View 1 2 3 4 5 6 7 8 9 10 11 12 3 chunks +3 lines, -4 lines 0 comments Download
M ppapi/c/ppb_url_loader.h View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +2 lines, -3 lines 0 comments Download
M ppapi/c/private/ppb_flash_menu.h View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -1 line 0 comments Download
M ppapi/c/private/ppb_flash_net_connector.h View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -1 line 0 comments Download
M ppapi/c/trusted/ppb_audio_trusted.h View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +1 line, -2 lines 0 comments Download
M ppapi/c/trusted/ppb_broker_trusted.h View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -1 line 0 comments Download
M ppapi/c/trusted/ppb_file_io_trusted.h View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +3 lines, -2 lines 0 comments Download
M ppapi/cpp/completion_callback.h View 1 2 3 4 5 6 7 8 9 10 11 12 9 chunks +96 lines, -9 lines 0 comments Download
M ppapi/cpp/dev/directory_reader_dev.cc View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +2 lines, -2 lines 0 comments Download
M ppapi/cpp/dev/file_chooser_dev.cc View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +2 lines, -2 lines 0 comments Download
M ppapi/cpp/dev/file_io_dev.cc View 1 2 3 4 5 6 7 8 9 10 11 12 7 chunks +8 lines, -8 lines 0 comments Download
M ppapi/cpp/dev/file_ref_dev.cc View 1 2 3 4 5 6 7 8 9 10 11 12 6 chunks +6 lines, -6 lines 0 comments Download
M ppapi/cpp/dev/file_system_dev.cc View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +2 lines, -2 lines 0 comments Download
M ppapi/cpp/dev/surface_3d_dev.cc View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +2 lines, -2 lines 0 comments Download
M ppapi/cpp/dev/transport_dev.cc View 1 2 3 4 5 6 7 8 9 10 11 12 4 chunks +4 lines, -4 lines 0 comments Download
M ppapi/cpp/dev/video_decoder_dev.cc View 1 2 3 4 5 6 7 8 9 10 11 12 4 chunks +5 lines, -10 lines 0 comments Download
M ppapi/cpp/file_io.cc View 1 2 3 4 5 6 7 8 9 10 11 12 6 chunks +7 lines, -7 lines 0 comments Download
M ppapi/cpp/file_ref.cc View 1 2 3 4 5 6 7 8 9 10 11 12 5 chunks +5 lines, -5 lines 0 comments Download
M ppapi/cpp/file_system.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -1 line 0 comments Download
M ppapi/cpp/graphics_2d.cc View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +2 lines, -2 lines 0 comments Download
M ppapi/cpp/paint_manager.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -1 line 0 comments Download
M ppapi/cpp/private/flash_menu.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -1 line 0 comments Download
M ppapi/cpp/private/flash_net_connector.cc View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +2 lines, -2 lines 0 comments Download
M ppapi/cpp/url_loader.h View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -1 line 0 comments Download
M ppapi/cpp/url_loader.cc View 1 2 3 4 5 6 7 8 9 10 11 12 4 chunks +5 lines, -5 lines 0 comments Download
M ppapi/example/example.cc View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +2 lines, -2 lines 0 comments Download
M ppapi/ppapi_shared.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +2 lines, -0 lines 0 comments Download
M ppapi/proxy/ppb_audio_proxy.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -1 line 0 comments Download
M ppapi/proxy/ppb_broker_proxy.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -1 line 0 comments Download
M ppapi/proxy/ppb_file_chooser_proxy.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -1 line 0 comments Download
M ppapi/proxy/ppb_file_system_proxy.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -1 line 0 comments Download
M ppapi/proxy/ppb_flash_menu_proxy.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -1 line 0 comments Download
ppapi/proxy/ppb_flash_net_connector_proxy.cc View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +2 lines, -2 lines 0 comments Download
M ppapi/proxy/ppb_graphics_2d_proxy.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -1 line 0 comments Download
M ppapi/proxy/ppb_surface_3d_proxy.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -1 line 0 comments Download
M ppapi/proxy/ppb_url_loader_proxy.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -1 line 0 comments Download
M ppapi/tests/arch_dependent_sizes_32.h View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -1 line 0 comments Download
M ppapi/tests/arch_dependent_sizes_64.h View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -1 line 0 comments Download
M ppapi/tests/test_case.h View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +16 lines, -1 line 0 comments Download
M ppapi/tests/test_case.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +2 lines, -1 line 0 comments Download
M ppapi/tests/test_directory_reader.cc View 1 2 3 4 5 6 7 8 9 10 11 12 6 chunks +13 lines, -1 line 0 comments Download
M ppapi/tests/test_file_io.cc View 1 2 3 4 5 6 7 8 9 10 11 12 29 chunks +79 lines, -13 lines 0 comments Download
M ppapi/tests/test_file_ref.cc View 1 2 3 4 5 6 7 8 9 10 11 12 25 chunks +103 lines, -30 lines 0 comments Download
M ppapi/tests/test_file_system.cc View 1 2 3 4 5 6 7 8 9 10 11 12 3 chunks +18 lines, -11 lines 0 comments Download
M ppapi/tests/test_graphics_2d.cc View 1 2 3 4 5 6 7 8 9 10 11 12 4 chunks +32 lines, -18 lines 0 comments Download
ppapi/tests/test_transport.cc View 1 2 3 4 5 6 7 8 9 10 11 12 4 chunks +14 lines, -7 lines 0 comments Download
M ppapi/tests/test_url_loader.cc View 1 2 3 4 5 6 7 8 9 10 11 12 12 chunks +41 lines, -17 lines 0 comments Download
M ppapi/tests/test_utils.h View 1 2 3 4 5 6 7 8 9 10 11 12 3 chunks +3 lines, -1 line 0 comments Download
M ppapi/tests/test_utils.cc View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +14 lines, -1 line 0 comments Download
A ppapi/thunk/common.h View 1 1 chunk +21 lines, -0 lines 0 comments Download
A ppapi/thunk/common.cc View 1 2 3 4 1 chunk +30 lines, -0 lines 0 comments Download
M ppapi/thunk/ppb_audio_trusted_thunk.cc View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +6 lines, -4 lines 0 comments Download
M ppapi/thunk/ppb_broker_thunk.cc View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +5 lines, -3 lines 0 comments Download
M ppapi/thunk/ppb_directory_reader_thunk.cc View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +5 lines, -3 lines 0 comments Download
M ppapi/thunk/ppb_file_chooser_thunk.cc View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +5 lines, -3 lines 0 comments Download
ppapi/thunk/ppb_file_io_thunk.cc View 1 2 3 4 5 6 7 8 9 10 11 12 7 chunks +26 lines, -15 lines 0 comments Download
M ppapi/thunk/ppb_file_io_trusted_thunk.cc View 1 2 3 4 5 6 7 8 9 10 11 12 3 chunks +8 lines, -5 lines 0 comments Download
ppapi/thunk/ppb_file_ref_thunk.cc View 1 2 3 4 5 6 7 8 9 10 11 12 4 chunks +15 lines, -9 lines 0 comments Download
M ppapi/thunk/ppb_file_system_thunk.cc View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +5 lines, -3 lines 0 comments Download
ppapi/thunk/ppb_flash_menu_thunk.cc View 1 2 3 4 5 6 7 8 9 10 11 12 3 chunks +5 lines, -4 lines 0 comments Download
M ppapi/thunk/ppb_flash_net_connector_thunk.cc View 1 2 3 4 5 6 7 8 9 10 11 12 4 chunks +11 lines, -7 lines 0 comments Download
M ppapi/thunk/ppb_graphics_2d_thunk.cc View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +4 lines, -2 lines 0 comments Download
M ppapi/thunk/ppb_graphics_3d_thunk.cc View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +5 lines, -3 lines 0 comments Download
M ppapi/thunk/ppb_layer_compositor_thunk.cc View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +3 lines, -2 lines 0 comments Download
M ppapi/thunk/ppb_surface_3d_thunk.cc View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +5 lines, -3 lines 0 comments Download
M ppapi/thunk/ppb_transport_thunk.cc View 1 2 3 4 5 6 7 8 9 10 11 12 3 chunks +14 lines, -9 lines 0 comments Download
M ppapi/thunk/ppb_url_loader_thunk.cc View 1 2 3 4 5 6 7 8 9 10 11 12 3 chunks +15 lines, -9 lines 0 comments Download
M ppapi/thunk/ppb_video_decoder_thunk.cc View 1 2 3 4 5 6 7 8 9 10 11 12 4 chunks +15 lines, -9 lines 0 comments Download
M remoting/client/plugin/pepper_port_allocator_session.cc View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +2 lines, -2 lines 0 comments Download

Messages

Total messages: 33 (0 generated)
polina
Here is the prototype of the feature with URLLoader only for now.
9 years, 8 months ago (2011-04-25 07:37:50 UTC) #1
darin (slow to review)
http://codereview.chromium.org/6899055/diff/3005/ppapi/c/pp_completion_callback.h File ppapi/c/pp_completion_callback.h (right): http://codereview.chromium.org/6899055/diff/3005/ppapi/c/pp_completion_callback.h#newcode70 ppapi/c/pp_completion_callback.h:70: PP_COMPLETIONCALLBACK_FLAG_NOFORCEASYNC = 1 << 0 // or SYNCOK? it ...
9 years, 8 months ago (2011-04-25 18:31:06 UTC) #2
darin (slow to review)
9 years, 8 months ago (2011-04-25 18:31:54 UTC) #3
polina
http://codereview.chromium.org/6899055/diff/3005/ppapi/c/pp_completion_callback.h File ppapi/c/pp_completion_callback.h (right): http://codereview.chromium.org/6899055/diff/3005/ppapi/c/pp_completion_callback.h#newcode70 ppapi/c/pp_completion_callback.h:70: PP_COMPLETIONCALLBACK_FLAG_NOFORCEASYNC = 1 << 0 // or SYNCOK? On ...
9 years, 8 months ago (2011-04-25 19:44:44 UTC) #4
brettw
http://codereview.chromium.org/6899055/diff/3005/ppapi/c/pp_completion_callback.h File ppapi/c/pp_completion_callback.h (right): http://codereview.chromium.org/6899055/diff/3005/ppapi/c/pp_completion_callback.h#newcode70 ppapi/c/pp_completion_callback.h:70: PP_COMPLETIONCALLBACK_FLAG_NOFORCEASYNC = 1 << 0 // or SYNCOK? I ...
9 years, 8 months ago (2011-04-25 19:55:46 UTC) #5
darin (slow to review)
On Mon, Apr 25, 2011 at 12:55 PM, <brettw@chromium.org> wrote: > > > http://codereview.chromium.org/6899055/diff/3005/ppapi/c/pp_completion_callback.h > ...
9 years, 8 months ago (2011-04-25 21:07:12 UTC) #6
darin (slow to review)
On Mon, Apr 25, 2011 at 12:44 PM, <polina@google.com> wrote: > > > http://codereview.chromium.org/6899055/diff/3005/ppapi/c/pp_completion_callback.h > ...
9 years, 8 months ago (2011-04-25 21:10:11 UTC) #7
brettw
On 2011/04/25 21:07:12, darin wrote: > On Mon, Apr 25, 2011 at 12:55 PM, <mailto:brettw@chromium.org> ...
9 years, 8 months ago (2011-04-25 21:17:41 UTC) #8
darin (slow to review)
On Mon, Apr 25, 2011 at 2:17 PM, <brettw@chromium.org> wrote: > On 2011/04/25 21:07:12, darin ...
9 years, 8 months ago (2011-04-25 22:27:54 UTC) #9
polina
On Mon, Apr 25, 2011 at 3:27 PM, Darin Fisher <darin@chromium.org> wrote: > On Mon, ...
9 years, 8 months ago (2011-04-26 00:01:25 UTC) #10
darin (slow to review)
On Mon, Apr 25, 2011 at 5:01 PM, Polina Sokolova <polina@google.com> wrote: > On Mon, ...
9 years, 8 months ago (2011-04-26 15:50:37 UTC) #11
polina
On Tue, Apr 26, 2011 at 8:50 AM, Darin Fisher <darin@chromium.org> wrote: > > > ...
9 years, 8 months ago (2011-04-26 18:19:40 UTC) #12
polina
I have uploaded all impl files and corresponding tests that are similar in structure to ...
9 years, 7 months ago (2011-05-28 03:22:35 UTC) #13
polina
On 2011/05/28 03:22:35, polina wrote: > I have uploaded all impl files and corresponding tests ...
9 years, 6 months ago (2011-06-03 03:01:47 UTC) #14
polina
9 years, 6 months ago (2011-06-07 07:12:25 UTC) #15
piman
stuff in ppapi/proxy will need to be changed as well. http://codereview.chromium.org/6899055/diff/44001/ppapi/c/pp_completion_callback.h File ppapi/c/pp_completion_callback.h (right): http://codereview.chromium.org/6899055/diff/44001/ppapi/c/pp_completion_callback.h#newcode91 ...
9 years, 6 months ago (2011-06-07 17:32:14 UTC) #16
polina
http://codereview.chromium.org/6899055/diff/44001/ppapi/c/pp_completion_callback.h File ppapi/c/pp_completion_callback.h (right): http://codereview.chromium.org/6899055/diff/44001/ppapi/c/pp_completion_callback.h#newcode91 ppapi/c/pp_completion_callback.h:91: int32_t flags; On 2011/06/07 17:32:14, piman wrote: > Because ...
9 years, 6 months ago (2011-06-09 23:53:51 UTC) #17
polina
What did you mean by "stuff in ppapi/proxy will need to be changed as well"? ...
9 years, 6 months ago (2011-06-09 23:55:21 UTC) #18
piman
http://codereview.chromium.org/6899055/diff/44001/ppapi/c/pp_completion_callback.h File ppapi/c/pp_completion_callback.h (right): http://codereview.chromium.org/6899055/diff/44001/ppapi/c/pp_completion_callback.h#newcode123 ppapi/c/pp_completion_callback.h:123: cc.flags = PP_COMPLETIONCALLBACK_FLAG_NONE; On 2011/06/09 23:53:51, polina wrote: > ...
9 years, 6 months ago (2011-06-10 00:51:19 UTC) #19
piman
On Thu, Jun 9, 2011 at 4:55 PM, <polina@google.com> wrote: > What did you mean ...
9 years, 6 months ago (2011-06-10 00:57:24 UTC) #20
polina
http://codereview.chromium.org/6899055/diff/44001/ppapi/c/pp_completion_callback.h File ppapi/c/pp_completion_callback.h (right): http://codereview.chromium.org/6899055/diff/44001/ppapi/c/pp_completion_callback.h#newcode123 ppapi/c/pp_completion_callback.h:123: cc.flags = PP_COMPLETIONCALLBACK_FLAG_NONE; On 2011/06/10 00:51:20, piman wrote: > ...
9 years, 6 months ago (2011-06-10 19:33:18 UTC) #21
piman
On Fri, Jun 10, 2011 at 12:33 PM, <polina@google.com> wrote: > > http://codereview.chromium.**org/6899055/diff/44001/ppapi/** > c/pp_completion_callback.h<http://codereview.chromium.org/6899055/diff/44001/ppapi/c/pp_completion_callback.h> ...
9 years, 6 months ago (2011-06-10 19:49:02 UTC) #22
polina
On 2011/06/10 19:49:02, piman wrote: > On Fri, Jun 10, 2011 at 12:33 PM, <mailto:polina@google.com> ...
9 years, 6 months ago (2011-06-21 21:55:39 UTC) #23
polina
Last message is looking messy in my Inbox. So just in case: PTAL
9 years, 6 months ago (2011-06-21 22:05:08 UTC) #24
piman
LGTM, thanks !
9 years, 6 months ago (2011-06-21 22:40:45 UTC) #25
brettw
LGTM, just some nits, don't need to wait for another pass from me. http://codereview.chromium.org/6899055/diff/70001/ppapi/c/pp_completion_callback.h File ...
9 years, 6 months ago (2011-06-21 22:56:41 UTC) #26
polina
Thanks for the super speedy replies! Waiting for the trybots to finish and then committing. ...
9 years, 6 months ago (2011-06-21 23:40:01 UTC) #27
brettw
http://codereview.chromium.org/6899055/diff/78029/ppapi/tests/test_utils.cc File ppapi/tests/test_utils.cc (right): http://codereview.chromium.org/6899055/diff/78029/ppapi/tests/test_utils.cc#newcode40 ppapi/tests/test_utils.cc:40: : result_(PP_OK_COMPLETIONPENDING), You forgot to initialize have_result. This caused ...
9 years, 6 months ago (2011-06-27 23:59:03 UTC) #28
polina
http://codereview.chromium.org/6899055/diff/78029/ppapi/tests/test_utils.cc File ppapi/tests/test_utils.cc (right): http://codereview.chromium.org/6899055/diff/78029/ppapi/tests/test_utils.cc#newcode40 ppapi/tests/test_utils.cc:40: : result_(PP_OK_COMPLETIONPENDING), On 2011/06/27 23:59:03, brettw wrote: > You ...
9 years, 6 months ago (2011-06-28 00:11:26 UTC) #29
brettw
On Mon, Jun 27, 2011 at 5:11 PM, <polina@google.com> wrote: > > http://codereview.chromium.org/6899055/diff/78029/ppapi/tests/test_utils.cc > File ...
9 years, 5 months ago (2011-06-29 15:41:09 UTC) #30
polina
Last trybot run had no timeouts on Linux or Windows. Only Transport timed out on ...
9 years, 5 months ago (2011-06-29 20:16:44 UTC) #31
brettw
On Wed, Jun 29, 2011 at 1:16 PM, Polina Sokolova <polina@google.com> wrote: > Last trybot ...
9 years, 5 months ago (2011-06-29 20:21:42 UTC) #32
polina
9 years, 5 months ago (2011-06-30 21:43:44 UTC) #33
On 2011/06/29 20:21:42, brettw wrote:
> On Wed, Jun 29, 2011 at 1:16 PM, Polina Sokolova <mailto:polina@google.com>
wrote:
> > Last trybot run had no timeouts on Linux or Windows. Only Transport timed
> > out on Mac.
> > I will do a couple more runs today to get more deterministic results.
> > I am also happy to change some tests to only be sync and async.
> 
> Yeah, transport was already kind of slow, so I can imagine that making
> it twice as slow could go over the timeout. Let's just make that
> either sync or async and not worry about it.
> 
> Brett

Committed revision 91205.

Powered by Google App Engine
This is Rietveld 408576698