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

Unified Diff: third_party/mojo/src/mojo/public/cpp/environment/tests/async_wait_unittest.cc

Issue 1358163006: Adds some code to help isolate where crash is happening (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: moar Created 5 years, 3 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 | « third_party/mojo/src/mojo/public/cpp/environment/lib/default_async_waiter.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/mojo/src/mojo/public/cpp/environment/tests/async_wait_unittest.cc
diff --git a/third_party/mojo/src/mojo/public/cpp/environment/tests/async_wait_unittest.cc b/third_party/mojo/src/mojo/public/cpp/environment/tests/async_wait_unittest.cc
index 83c5ca05bc7456a11b4edb469918b4de9c931173..63766b88707f247447f47a6a59cdd220bf205537 100644
--- a/third_party/mojo/src/mojo/public/cpp/environment/tests/async_wait_unittest.cc
+++ b/third_party/mojo/src/mojo/public/cpp/environment/tests/async_wait_unittest.cc
@@ -42,11 +42,8 @@ MojoAsyncWaitID CallAsyncWait(const Handle& handle,
MojoHandleSignals signals,
TestAsyncWaitCallback* callback) {
return Environment::GetDefaultAsyncWaiter()->AsyncWait(
- handle.value(),
- signals,
- MOJO_DEADLINE_INDEFINITE,
- &TestAsyncWaitCallback::OnHandleReady,
- callback);
+ 0, handle.value(), signals, MOJO_DEADLINE_INDEFINITE,
+ &TestAsyncWaitCallback::OnHandleReady, callback);
}
void CallCancelWait(MojoAsyncWaitID wait_id) {
« no previous file with comments | « third_party/mojo/src/mojo/public/cpp/environment/lib/default_async_waiter.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698