| Index: remoting/base/scoped_thread_proxy.cc
|
| diff --git a/remoting/base/scoped_thread_proxy.cc b/remoting/base/scoped_thread_proxy.cc
|
| index d1dcc2618b8a41f8ab99970ce699a235e2422da6..5c51159319ff9a479a661401ed853c4c19d904ab 100644
|
| --- a/remoting/base/scoped_thread_proxy.cc
|
| +++ b/remoting/base/scoped_thread_proxy.cc
|
| @@ -24,9 +24,9 @@ class ScopedThreadProxy::Core : public base::RefCountedThreadSafe<Core> {
|
| void PostDelayedTask(
|
| const tracked_objects::Location& from_here,
|
| const base::Closure& closure,
|
| - int64 delay_ms) {
|
| + base::TimeDelta delay) {
|
| if (!canceled_) {
|
| - message_loop_->PostDelayedTask(from_here, Wrap(closure), delay_ms);
|
| + message_loop_->PostDelayedTask(from_here, Wrap(closure), delay);
|
| }
|
| }
|
|
|
| @@ -75,8 +75,8 @@ void ScopedThreadProxy::PostTask(const tracked_objects::Location& from_here,
|
| void ScopedThreadProxy::PostDelayedTask(
|
| const tracked_objects::Location& from_here,
|
| const base::Closure& closure,
|
| - int64 delay_ms) {
|
| - core_->PostDelayedTask(from_here, closure, delay_ms);
|
| + base::TimeDelta delay) {
|
| + core_->PostDelayedTask(from_here, closure, delay);
|
| }
|
|
|
| void ScopedThreadProxy::Detach() {
|
|
|