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

Unified Diff: cloud_print/gcp20/prototype/gcp20_device.cc

Issue 136683004: Removes MessageLoop::TYPE_XXX where possible (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: resolve merge Created 6 years, 11 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: cloud_print/gcp20/prototype/gcp20_device.cc
diff --git a/cloud_print/gcp20/prototype/gcp20_device.cc b/cloud_print/gcp20/prototype/gcp20_device.cc
index 57972a37e7e5a4a03bcb7a1c5b2dfcfeb6985de6..74040bd0b65b57ebac4e78966a95f577de2ab60e 100644
--- a/cloud_print/gcp20/prototype/gcp20_device.cc
+++ b/cloud_print/gcp20/prototype/gcp20_device.cc
@@ -90,7 +90,7 @@ int main(int argc, char* argv[]) {
signal(SIGINT, OnAbort); // Handle Ctrl+C signal.
- base::MessageLoop loop(base::MessageLoop::TYPE_IO);
+ base::MessageLoopForIO loop;
g_message_loop = &loop;
g_message_loop->PostTask(FROM_HERE, base::Bind(&StartPrinter, &printer));
base::RunLoop runner;
« no previous file with comments | « chrome/renderer/media/chrome_webrtc_log_message_delegate_unittest.cc ('k') | cloud_print/service/service_state.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698