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

Unified Diff: chrome/browser/bookmarks/bookmark_html_writer_unittest.cc

Issue 14113053: chrome: Use base::MessageLoop. (Part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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/browser/bookmarks/bookmark_html_writer_unittest.cc
diff --git a/chrome/browser/bookmarks/bookmark_html_writer_unittest.cc b/chrome/browser/bookmarks/bookmark_html_writer_unittest.cc
index f99071840713a62c286c84ea3e32468502c1dbae..ea33ef43206ec4282c58d2feae022fb2e020cd2f 100644
--- a/chrome/browser/bookmarks/bookmark_html_writer_unittest.cc
+++ b/chrome/browser/bookmarks/bookmark_html_writer_unittest.cc
@@ -126,7 +126,7 @@ class BookmarkHTMLWriterTest : public testing::Test {
// Class that will notify message loop when file is written.
class BookmarksObserver : public BookmarksExportObserver {
public:
- explicit BookmarksObserver(MessageLoop* loop) : loop_(loop) {
+ explicit BookmarksObserver(base::MessageLoop* loop) : loop_(loop) {
DCHECK(loop);
}
@@ -135,14 +135,14 @@ class BookmarksObserver : public BookmarksExportObserver {
}
private:
- MessageLoop* loop_;
+ base::MessageLoop* loop_;
DISALLOW_COPY_AND_ASSIGN(BookmarksObserver);
};
// Tests bookmark_html_writer by populating a BookmarkModel, writing it out by
// way of bookmark_html_writer, then using the importer to read it back in.
TEST_F(BookmarkHTMLWriterTest, Test) {
- MessageLoop message_loop;
+ base::MessageLoop message_loop;
content::TestBrowserThread fake_ui_thread(BrowserThread::UI, &message_loop);
content::TestBrowserThread fake_file_thread(BrowserThread::FILE,
&message_loop);

Powered by Google App Engine
This is Rietveld 408576698