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

Unified Diff: content/browser/geolocation/wifi_data_provider_chromeos.cc

Issue 781113002: Fix uninitialized member in WifiDataProviderChromeOs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/geolocation/wifi_data_provider_chromeos.cc
diff --git a/content/browser/geolocation/wifi_data_provider_chromeos.cc b/content/browser/geolocation/wifi_data_provider_chromeos.cc
index 2b5c218c24b1b0ef257d575b90ca0b951a8445b4..18d84bad10904de93ce1c8f21d7b2aa8e5444b4e 100644
--- a/content/browser/geolocation/wifi_data_provider_chromeos.cc
+++ b/content/browser/geolocation/wifi_data_provider_chromeos.cc
@@ -24,7 +24,8 @@ const int kNoWifiPollingIntervalMilliseconds = 20 * 1000; // 20s
} // namespace
-WifiDataProviderChromeOs::WifiDataProviderChromeOs() : started_(false) {
+WifiDataProviderChromeOs::WifiDataProviderChromeOs()
+ : started_(false), is_first_scan_complete_(false) {
}
WifiDataProviderChromeOs::~WifiDataProviderChromeOs() {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698