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

Unified Diff: content/public/browser/browser_thread.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
Index: content/public/browser/browser_thread.h
diff --git a/content/public/browser/browser_thread.h b/content/public/browser/browser_thread.h
index 91875921ed143e55095712654a627699415e1ed0..7a46967f6e47ee8a6f9363b58e83e46a0622cdee 100644
--- a/content/public/browser/browser_thread.h
+++ b/content/public/browser/browser_thread.h
@@ -109,10 +109,6 @@ class CONTENT_EXPORT BrowserThread {
static bool PostDelayedTask(ID identifier,
const tracked_objects::Location& from_here,
const base::Closure& task,
- int64 delay_ms);
- static bool PostDelayedTask(ID identifier,
- const tracked_objects::Location& from_here,
- const base::Closure& task,
base::TimeDelta delay);
static bool PostNonNestableTask(ID identifier,
const tracked_objects::Location& from_here,
@@ -121,11 +117,6 @@ class CONTENT_EXPORT BrowserThread {
ID identifier,
const tracked_objects::Location& from_here,
const base::Closure& task,
- int64 delay_ms);
- static bool PostNonNestableDelayedTask(
- ID identifier,
- const tracked_objects::Location& from_here,
- const base::Closure& task,
base::TimeDelta delay);
static bool PostTaskAndReply(

Powered by Google App Engine
This is Rietveld 408576698