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

Unified Diff: chrome/browser/google_apis/test_server/http_server_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/google_apis/test_server/http_server_unittest.cc
diff --git a/chrome/browser/google_apis/test_server/http_server_unittest.cc b/chrome/browser/google_apis/test_server/http_server_unittest.cc
index 48e58837eefa6000690eaf776527ccb7070d1c49..e9505f6548cbc2e8171dfa6b70e57ecb41593181 100644
--- a/chrome/browser/google_apis/test_server/http_server_unittest.cc
+++ b/chrome/browser/google_apis/test_server/http_server_unittest.cc
@@ -51,7 +51,7 @@ class HttpServerTest : public testing::Test,
virtual void SetUp() OVERRIDE {
base::Thread::Options thread_options;
- thread_options.message_loop_type = MessageLoop::TYPE_IO;
+ thread_options.message_loop_type = base::MessageLoop::TYPE_IO;
ASSERT_TRUE(io_thread_.StartWithOptions(thread_options));
request_context_getter_ = new net::TestURLRequestContextGetter(
@@ -105,7 +105,7 @@ class HttpServerTest : public testing::Test,
int num_responses_expected_;
std::string request_relative_url_;
base::Thread io_thread_;
- MessageLoop message_loop_;
+ base::MessageLoop message_loop_;
scoped_refptr<net::TestURLRequestContextGetter> request_context_getter_;
scoped_ptr<HttpServer> server_;
};

Powered by Google App Engine
This is Rietveld 408576698