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

Unified Diff: cloud_print/service/win/setup_listener.cc

Issue 1210013007: clang/win: Fix warnings to prepare for building without -Wno-reorder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clang-unsequenced
Patch Set: Created 5 years, 6 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 | « cloud_print/service/win/service.gyp ('k') | components/browser_watcher/window_hang_monitor_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cloud_print/service/win/setup_listener.cc
diff --git a/cloud_print/service/win/setup_listener.cc b/cloud_print/service/win/setup_listener.cc
index 57c3a15eb26b47af1db161c2b15e0ca5e078f619..67cb85b8797dc98826abc12305cffac1b086db9f 100644
--- a/cloud_print/service/win/setup_listener.cc
+++ b/cloud_print/service/win/setup_listener.cc
@@ -27,10 +27,10 @@ const wchar_t SetupListener::kSetupPipeName[] =
L"\\\\.\\pipe\\CloudPrintServiceSetup";
SetupListener::SetupListener(const base::string16& user)
- : done_event_(new base::WaitableEvent(true, false)),
- ipc_thread_(new base::Thread("ipc_thread")),
+ : is_xps_available_(false),
succeded_(false),
- is_xps_available_(false) {
+ done_event_(new base::WaitableEvent(true, false)),
+ ipc_thread_(new base::Thread("ipc_thread")) {
ipc_thread_->StartWithOptions(
base::Thread::Options(base::MessageLoop::TYPE_IO, 0));
ipc_thread_->message_loop()->PostTask(
« no previous file with comments | « cloud_print/service/win/service.gyp ('k') | components/browser_watcher/window_hang_monitor_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698