Index: webkit/dom_storage/dom_storage_task_runner.h |
diff --git a/webkit/dom_storage/dom_storage_task_runner.h b/webkit/dom_storage/dom_storage_task_runner.h |
index 2ec216985b25303ac5805dd0e46d99ae75ba4324..1e864b523f45a56b4dbaae87dda3ed2eb650216a 100644 |
--- a/webkit/dom_storage/dom_storage_task_runner.h |
+++ b/webkit/dom_storage/dom_storage_task_runner.h |
@@ -34,27 +34,16 @@ class DomStorageTaskRunner : public base::SequencedTaskRunner { |
const base::Closure& task, |
base::TimeDelta delay) OVERRIDE; |
- // DEPRECATED: Only here because base::TaskRunner requires it, implemented |
- // by calling the virtual PostDelayedTask(..., TimeDelta) variant. |
- virtual bool PostDelayedTask( |
- const tracked_objects::Location& from_here, |
- const base::Closure& task, |
- int64 delay_ms) OVERRIDE; |
- |
// Only here because base::TaskRunner requires it, the return |
// value is hard coded to true. |
virtual bool RunsTasksOnCurrentThread() const OVERRIDE; |
// SequencedTaskRunner overrides, these are implemented in |
- // terms of PostDelayedTask and the latter is similarly deprecated. |
+ // terms of PostDelayedTask |
Sergey Ulanov
2012/03/15 19:58:50
nit: add period at then end of the sentence
|
virtual bool PostNonNestableDelayedTask( |
const tracked_objects::Location& from_here, |
const base::Closure& task, |
base::TimeDelta delay) OVERRIDE; |
- virtual bool PostNonNestableDelayedTask( |
- const tracked_objects::Location& from_here, |
- const base::Closure& task, |
- int64 delay_ms) OVERRIDE; |
protected: |
const scoped_refptr<base::MessageLoopProxy> message_loop_; |