| Index: content/browser/browser_thread_impl.cc
|
| diff --git a/content/browser/browser_thread_impl.cc b/content/browser/browser_thread_impl.cc
|
| index 297bb30d7cbbcc660439f6b19738ae13eea039b1..13ab5a520ccbc2d53bb95ef27b3d72bdf261e5bb 100644
|
| --- a/content/browser/browser_thread_impl.cc
|
| +++ b/content/browser/browser_thread_impl.cc
|
| @@ -186,11 +186,6 @@ class BrowserThreadMessageLoopProxy : public base::MessageLoopProxy {
|
| // MessageLoopProxy implementation.
|
| virtual bool PostDelayedTask(
|
| const tracked_objects::Location& from_here,
|
| - const base::Closure& task, int64 delay_ms) OVERRIDE {
|
| - return BrowserThread::PostDelayedTask(id_, from_here, task, delay_ms);
|
| - }
|
| - virtual bool PostDelayedTask(
|
| - const tracked_objects::Location& from_here,
|
| const base::Closure& task, base::TimeDelta delay) OVERRIDE {
|
| return BrowserThread::PostDelayedTask(id_, from_here, task, delay);
|
| }
|
| @@ -198,13 +193,6 @@ class BrowserThreadMessageLoopProxy : public base::MessageLoopProxy {
|
| virtual bool PostNonNestableDelayedTask(
|
| const tracked_objects::Location& from_here,
|
| const base::Closure& task,
|
| - int64 delay_ms) OVERRIDE {
|
| - return BrowserThread::PostNonNestableDelayedTask(id_, from_here, task,
|
| - delay_ms);
|
| - }
|
| - virtual bool PostNonNestableDelayedTask(
|
| - const tracked_objects::Location& from_here,
|
| - const base::Closure& task,
|
| base::TimeDelta delay) OVERRIDE {
|
| return BrowserThread::PostNonNestableDelayedTask(id_, from_here, task,
|
| delay);
|
| @@ -301,19 +289,6 @@ bool BrowserThread::PostTask(ID identifier,
|
| bool BrowserThread::PostDelayedTask(ID identifier,
|
| const tracked_objects::Location& from_here,
|
| const base::Closure& task,
|
| - int64 delay_ms) {
|
| - return BrowserThreadImpl::PostTaskHelper(
|
| - identifier,
|
| - from_here,
|
| - task,
|
| - base::TimeDelta::FromMilliseconds(delay_ms),
|
| - true);
|
| -}
|
| -
|
| -// static
|
| -bool BrowserThread::PostDelayedTask(ID identifier,
|
| - const tracked_objects::Location& from_here,
|
| - const base::Closure& task,
|
| base::TimeDelta delay) {
|
| return BrowserThreadImpl::PostTaskHelper(
|
| identifier, from_here, task, delay, true);
|
| @@ -333,20 +308,6 @@ bool BrowserThread::PostNonNestableDelayedTask(
|
| ID identifier,
|
| const tracked_objects::Location& from_here,
|
| const base::Closure& task,
|
| - int64 delay_ms) {
|
| - return BrowserThreadImpl::PostTaskHelper(
|
| - identifier,
|
| - from_here,
|
| - task,
|
| - base::TimeDelta::FromMilliseconds(delay_ms),
|
| - false);
|
| -}
|
| -
|
| -// static
|
| -bool BrowserThread::PostNonNestableDelayedTask(
|
| - ID identifier,
|
| - const tracked_objects::Location& from_here,
|
| - const base::Closure& task,
|
| base::TimeDelta delay) {
|
| return BrowserThreadImpl::PostTaskHelper(
|
| identifier, from_here, task, delay, false);
|
|
|