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

Unified Diff: chrome/browser/ui/webui/favicon_source_unittest.cc

Issue 14307023: chrome: Use base::MessageLoop. (Part 2) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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
Index: chrome/browser/ui/webui/favicon_source_unittest.cc
diff --git a/chrome/browser/ui/webui/favicon_source_unittest.cc b/chrome/browser/ui/webui/favicon_source_unittest.cc
index e47861ea7de9a0b8826d11770028e27bfc360562..5a854ac5fdf0af9aaf93191d73872a43591f3321 100644
--- a/chrome/browser/ui/webui/favicon_source_unittest.cc
+++ b/chrome/browser/ui/webui/favicon_source_unittest.cc
@@ -16,9 +16,9 @@
class FaviconSourceTest : public testing::Test {
public:
FaviconSourceTest()
- : loop_(MessageLoop::TYPE_UI),
- ui_thread_(content::BrowserThread::UI, MessageLoop::current()),
- io_thread_(content::BrowserThread::IO, MessageLoop::current()),
+ : loop_(base::MessageLoop::TYPE_UI),
+ ui_thread_(content::BrowserThread::UI, base::MessageLoop::current()),
+ io_thread_(content::BrowserThread::IO, base::MessageLoop::current()),
profile_(new TestingProfile()),
favicon_source_(
new FaviconSource(profile_.get(), FaviconSource::ANY)) {
@@ -55,7 +55,7 @@ class FaviconSourceTest : public testing::Test {
FaviconSource* favicon_source() const { return favicon_source_.get(); }
private:
- MessageLoop loop_;
+ base::MessageLoop loop_;
content::TestBrowserThread ui_thread_;
content::TestBrowserThread io_thread_;
scoped_ptr<TestingProfile> profile_;
« no previous file with comments | « chrome/browser/ui/webui/downloads_dom_handler_browsertest.cc ('k') | chrome/browser/ui/webui/fileicon_source_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698