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

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

Issue 3076029: Allow chrome for cros to be started with a username / password (Closed)
Patch Set: Only declare StubLogin on cros builds Created 10 years, 4 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 | « chrome/browser/chromeos/cros/update_library.cc ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/geolocation/wifi_data_provider_chromeos.cc
diff --git a/chrome/browser/geolocation/wifi_data_provider_chromeos.cc b/chrome/browser/geolocation/wifi_data_provider_chromeos.cc
index bb1d936eb09beb150f7cf3172b0c8b23749f14b7..a13d2f77552407a5de3cd70b39e9cf06f6f538c5 100644
--- a/chrome/browser/geolocation/wifi_data_provider_chromeos.cc
+++ b/chrome/browser/geolocation/wifi_data_provider_chromeos.cc
@@ -7,6 +7,7 @@
#include "chrome/browser/geolocation/wifi_data_provider_chromeos.h"
#include "base/utf_string_conversions.h"
+#include "chrome/browser/chromeos/cros/cros_library.h"
#include "chrome/browser/chromeos/cros/network_library.h"
namespace {
@@ -85,7 +86,7 @@ WifiDataProviderCommon::WlanApiInterface*
WifiDataProviderCommon::WlanApiInterface*
WifiDataProviderChromeOs::NewWlanApi() {
if (network_library_ == NULL) {
- network_library_.reset(new chromeos::NetworkLibraryImpl());
+ network_library_.reset(chromeos::CrosLibrary::Get()->GetNetworkLibrary());
// TODO(joth): Check net_lib loaded ok, if not return NULL.
}
return NewWlanApi(network_library_.get());
« no previous file with comments | « chrome/browser/chromeos/cros/update_library.cc ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698