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

Unified Diff: chrome_frame/test/chrome_frame_ui_test_utils.cc

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_test_utils.h ('k') | chrome_frame/test/mock_ie_event_sink_actions.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/test/chrome_frame_ui_test_utils.cc
diff --git a/chrome_frame/test/chrome_frame_ui_test_utils.cc b/chrome_frame/test/chrome_frame_ui_test_utils.cc
index 25dd60b9de36323edc128ee3a3a0d39a41137881..1bd443db9f0d85a2d65bd298bc6b5067663a23d9 100644
--- a/chrome_frame/test/chrome_frame_ui_test_utils.cc
+++ b/chrome_frame/test/chrome_frame_ui_test_utils.cc
@@ -658,8 +658,8 @@ void AccEventObserver::OnEventReceived(DWORD event,
LONG object_id,
LONG child_id) {
// Process events in a separate task to stop reentrancy problems.
- DCHECK(MessageLoop::current());
- MessageLoop::current()->PostTask(
+ DCHECK(base::MessageLoop::current());
+ base::MessageLoop::current()->PostTask(
FROM_HERE, base::Bind(&EventHandler::Handle, event_handler_.get(), event,
hwnd, object_id, child_id));
}
« no previous file with comments | « chrome_frame/test/chrome_frame_test_utils.h ('k') | chrome_frame/test/mock_ie_event_sink_actions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698