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

Unified Diff: chrome_frame/delete_chrome_history.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/delete_chrome_history.h ('k') | chrome_frame/test/chrome_frame_automation_mock.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/delete_chrome_history.cc
diff --git a/chrome_frame/delete_chrome_history.cc b/chrome_frame/delete_chrome_history.cc
index 27498062885c92f4b39b1d3a47aa3c5b8ca8b727..0d1fa3874e241996ffe0b1efee467a76b791ea07 100644
--- a/chrome_frame/delete_chrome_history.cc
+++ b/chrome_frame/delete_chrome_history.cc
@@ -91,8 +91,8 @@ STDMETHODIMP DeleteChromeHistory::DeleteBrowsingHistory(DWORD flags) {
remove_mask_ |= BrowsingDataRemover::REMOVE_HISTORY;
loop_.PostDelayedTask(FROM_HERE,
- MessageLoop::QuitClosure(), base::TimeDelta::FromMinutes(10));
- loop_.MessageLoop::Run();
+ base::MessageLoop::QuitClosure(), base::TimeDelta::FromMinutes(10));
+ loop_.base::MessageLoop::Run();
return S_OK;
}
« no previous file with comments | « chrome_frame/delete_chrome_history.h ('k') | chrome_frame/test/chrome_frame_automation_mock.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698