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

Unified Diff: chrome_frame/test/mock_ie_event_sink_actions.h

Issue 10019015: Update uses of TimeDelta in chrome_frame/*. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: 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/mock_ie_event_sink_actions.h
diff --git a/chrome_frame/test/mock_ie_event_sink_actions.h b/chrome_frame/test/mock_ie_event_sink_actions.h
index 10af3fdba39a852abc82be5ba29468e964e365e0..9e3e0e1440975e67f6b6100745d378c85f05010a 100644
--- a/chrome_frame/test/mock_ie_event_sink_actions.h
+++ b/chrome_frame/test/mock_ie_event_sink_actions.h
@@ -310,7 +310,8 @@ ACTION(DoCloseWindow) {
ACTION_P(DelayDoCloseWindow, delay) {
DCHECK(MessageLoop::current());
MessageLoop::current()->PostDelayedTask(
- FROM_HERE, base::Bind(DoCloseWindowNow, arg0), delay);
+ FROM_HERE, base::Bind(DoCloseWindowNow, arg0),
+ base::TimeDelta::FromMilliseconds(delay));
ananta 2012/04/13 17:50:21 Please verify whether the tests specify this timeo
}
ACTION(KillChromeFrameProcesses) {

Powered by Google App Engine
This is Rietveld 408576698