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

Unified Diff: chrome_frame/test/mock_ie_event_sink_actions.h

Issue 15935013: chrome_frame: Use base::MessageLoop. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix license Created 7 years, 7 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 | « chrome_frame/test/chrome_frame_ui_test_utils.cc ('k') | chrome_frame/test/net/fake_external_tab.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 3c6b3318d9442b06da5d3f1be21d1e7380b03d32..5c4dcabd99d2d33371dc4a82040c4bc0cb089465 100644
--- a/chrome_frame/test/mock_ie_event_sink_actions.h
+++ b/chrome_frame/test/mock_ie_event_sink_actions.h
@@ -307,8 +307,8 @@ ACTION(DoCloseWindow) {
}
ACTION_P(DelayDoCloseWindow, delay) {
- DCHECK(MessageLoop::current());
- MessageLoop::current()->PostDelayedTask(
+ DCHECK(base::MessageLoop::current());
+ base::MessageLoop::current()->PostDelayedTask(
FROM_HERE, base::Bind(DoCloseWindowNow, arg0),
base::TimeDelta::FromMilliseconds(delay));
}
« no previous file with comments | « chrome_frame/test/chrome_frame_ui_test_utils.cc ('k') | chrome_frame/test/net/fake_external_tab.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698