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

Unified Diff: chrome_frame/test/chrome_frame_test_utils.h

Issue 10019015: Update uses of TimeDelta in chrome_frame/*. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebase onto master. Created 8 years, 8 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: chrome_frame/test/chrome_frame_test_utils.h
diff --git a/chrome_frame/test/chrome_frame_test_utils.h b/chrome_frame/test/chrome_frame_test_utils.h
index 89111887a0fa8f90fff64cf53f6c3799283ac552..c6edbbb11def6e52a442791261c5971f31a2a2f3 100644
--- a/chrome_frame/test/chrome_frame_test_utils.h
+++ b/chrome_frame/test/chrome_frame_test_utils.h
@@ -205,7 +205,8 @@ class TimedMsgLoop {
void PostDelayedTask(const tracked_objects::Location& from_here,
const base::Closure& task, int64 delay_ms) {
robertshield 2012/04/18 02:23:09 IMO for consistency, should modify this method to
- loop_.PostDelayedTask(from_here, task, delay_ms);
+ loop_.PostDelayedTask(
+ from_here, task, base::TimeDelta::FromMilliseconds(delay_ms));
}
void Quit() {

Powered by Google App Engine
This is Rietveld 408576698