Index: base/message_loop.h |
diff --git a/base/message_loop.h b/base/message_loop.h |
index 355d58b62b46a907c078332779dc1e795639e8eb..0d0a667d4623511c415bf4c3ee38a45df669036f 100644 |
--- a/base/message_loop.h |
+++ b/base/message_loop.h |
@@ -168,10 +168,6 @@ class BASE_EXPORT MessageLoop : public base::MessagePump::Delegate { |
void PostDelayedTask( |
const tracked_objects::Location& from_here, |
- const base::Closure& task, int64 delay_ms); |
- |
- void PostDelayedTask( |
- const tracked_objects::Location& from_here, |
const base::Closure& task, |
base::TimeDelta delay); |
@@ -181,10 +177,6 @@ class BASE_EXPORT MessageLoop : public base::MessagePump::Delegate { |
void PostNonNestableDelayedTask( |
const tracked_objects::Location& from_here, |
- const base::Closure& task, int64 delay_ms); |
- |
- void PostNonNestableDelayedTask( |
- const tracked_objects::Location& from_here, |
const base::Closure& task, |
base::TimeDelta delay); |
@@ -452,7 +444,7 @@ class BASE_EXPORT MessageLoop : public base::MessagePump::Delegate { |
bool DeletePendingTasks(); |
// Calculates the time at which a PendingTask should run. |
- base::TimeTicks CalculateDelayedRuntime(int64 delay_ms); |
+ base::TimeTicks CalculateDelayedRuntime(base::TimeDelta delay); |
// Start recording histogram info about events and action IF it was enabled |
// and IF the statistics recorder can accept a registration of our histogram. |