summaryrefslogtreecommitdiffstats
path: root/base/message_loop.h
diff options
context:
space:
mode:
authortedvessenes@gmail.com <tedvessenes@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-01 21:33:00 +0000
committertedvessenes@gmail.com <tedvessenes@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-01 21:33:00 +0000
commitbb8074e9927ffb769a3683e9aa11f899a4506fbe (patch)
tree1cea8268708d35fc7dc43a423dd60e28ed54b54d /base/message_loop.h
parent12382874042ef4a748011b0fb482af5e91b83a03 (diff)
downloadchromium_src-bb8074e9927ffb769a3683e9aa11f899a4506fbe.zip
chromium_src-bb8074e9927ffb769a3683e9aa11f899a4506fbe.tar.gz
chromium_src-bb8074e9927ffb769a3683e9aa11f899a4506fbe.tar.bz2
Remove old PostDelayedTask interfaces that use int ms instead of TimeDelta.
BUG=108171 Review URL: https://chromiumcodereview.appspot.com/9703053 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@140102 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/message_loop.h')
-rw-r--r--base/message_loop.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/base/message_loop.h b/base/message_loop.h
index d78b58a..a92ff7e 100644
--- a/base/message_loop.h
+++ b/base/message_loop.h
@@ -165,10 +165,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);
@@ -178,10 +174,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);
@@ -449,7 +441,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.