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

Unified Diff: device/hid/hid_service_win.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
Index: device/hid/hid_service_win.cc
diff --git a/device/hid/hid_service_win.cc b/device/hid/hid_service_win.cc
index 82fddff500a18affc622d93b88477ef64d60535b..627cc01e79b9d8b826548172f3c3035209318ca8 100644
--- a/device/hid/hid_service_win.cc
+++ b/device/hid/hid_service_win.cc
@@ -38,8 +38,8 @@ void Noop() {
HidServiceWin::HidServiceWin(
scoped_refptr<base::SingleThreadTaskRunner> file_task_runner)
- : device_observer_(this),
- file_task_runner_(file_task_runner),
+ : file_task_runner_(file_task_runner),
+ device_observer_(this),
weak_factory_(this) {
task_runner_ = base::ThreadTaskRunnerHandle::Get();
DCHECK(task_runner_.get());
« no previous file with comments | « device/bluetooth/bluetooth_task_manager_win.cc ('k') | media/audio/win/audio_low_latency_input_win_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698