Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1071)

Unified Diff: webkit/dom_storage/dom_storage_task_runner.h

Issue 9703053: Remove old Sleep and PostDelayedTask interfaces that use int ms instead of TimeDelta. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Remove old PDT interface in webkit/dom_storage. Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/host/it2me_host_user_interface.cc ('k') | webkit/dom_storage/dom_storage_task_runner.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_;
« no previous file with comments | « remoting/host/it2me_host_user_interface.cc ('k') | webkit/dom_storage/dom_storage_task_runner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698