Commit b0574964 authored by earthdok's avatar earthdok Committed by Commit bot

Fix uninitialized member in WifiDataProviderChromeOs.

BUG=439159
TBR=timvolodine@chromium.org

Review URL: https://codereview.chromium.org/781113002

Cr-Commit-Position: refs/heads/master@{#307060}
parent 4cdb1559
...@@ -24,7 +24,8 @@ const int kNoWifiPollingIntervalMilliseconds = 20 * 1000; // 20s ...@@ -24,7 +24,8 @@ const int kNoWifiPollingIntervalMilliseconds = 20 * 1000; // 20s
} // namespace } // namespace
WifiDataProviderChromeOs::WifiDataProviderChromeOs() : started_(false) { WifiDataProviderChromeOs::WifiDataProviderChromeOs()
: started_(false), is_first_scan_complete_(false) {
} }
WifiDataProviderChromeOs::~WifiDataProviderChromeOs() { WifiDataProviderChromeOs::~WifiDataProviderChromeOs() {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment