Chromium Code Reviews| Index: Source/platform/AsyncMethodRunner.h |
| diff --git a/Source/platform/AsyncMethodRunner.h b/Source/platform/AsyncMethodRunner.h |
| index da86ed3ca3d7e8b14faab4d356a4a03d6e7ac8bf..b61b5df5627e2f492890df0a76596d7bfdd4436e 100644 |
| --- a/Source/platform/AsyncMethodRunner.h |
| +++ b/Source/platform/AsyncMethodRunner.h |
| @@ -65,7 +65,7 @@ public: |
| } |
| if (!m_timer.isActive()) |
| - m_timer.startOneShot(0); |
| + m_timer.startOneShot(0, FROM_HERE); |
|
abarth-chromium
2014/03/09 22:19:10
This one isn't very useful :)
|
| } |
| // If it's scheduled to run the method, cancel it and remember to schedule |
| @@ -93,7 +93,7 @@ public: |
| return; |
| m_runWhenResumed = false; |
| - m_timer.startOneShot(0); |
| + m_timer.startOneShot(0, FROM_HERE); |
| } |
| void stop() |