summaryrefslogtreecommitdiffstats
path: root/components/wifi/wifi_service_win.cc
diff options
context:
space:
mode:
authorsammc <sammc@chromium.org>2015-07-01 18:25:00 -0700
committerCommit bot <commit-bot@chromium.org>2015-07-02 01:25:35 +0000
commit5648c8598f20bc9756a82cf90cee204db44ea269 (patch)
treec64a9115d6d3dd5e79a6c92c4de1072ccd197316 /components/wifi/wifi_service_win.cc
parent984fbc18b3c734abdef6a36f547f5eb99a2143d4 (diff)
downloadchromium_src-5648c8598f20bc9756a82cf90cee204db44ea269.zip
chromium_src-5648c8598f20bc9756a82cf90cee204db44ea269.tar.gz
chromium_src-5648c8598f20bc9756a82cf90cee204db44ea269.tar.bz2
clang/win: Fix warnings to prepare for building without -Wno-reorder.
This changes constructor initializer list ordering to match field declaration ordering, except for gtest and breakpad, where the warning is disabled. BUG=505304 NOPRESUBMIT=true Review URL: https://codereview.chromium.org/1210013007 Cr-Commit-Position: refs/heads/master@{#337152}
Diffstat (limited to 'components/wifi/wifi_service_win.cc')
-rw-r--r--components/wifi/wifi_service_win.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/components/wifi/wifi_service_win.cc b/components/wifi/wifi_service_win.cc
index 5145fba..661f602 100644
--- a/components/wifi/wifi_service_win.cc
+++ b/components/wifi/wifi_service_win.cc
@@ -491,11 +491,12 @@ WiFiServiceImpl::WiFiServiceImpl()
WlanGetProfile_function_(NULL),
WlanOpenHandle_function_(NULL),
WlanRegisterNotification_function_(NULL),
- WlanSaveTemporaryProfile_function_(NULL),
WlanScan_function_(NULL),
WlanSetProfile_function_(NULL),
+ WlanSaveTemporaryProfile_function_(NULL),
client_(NULL),
- enable_notify_network_changed_(true) {}
+ enable_notify_network_changed_(true) {
+}
WiFiServiceImpl::~WiFiServiceImpl() { UnInitialize(); }