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

Side by Side Diff: chrome/browser/chromeos/cros/network_library.cc

Issue 4818002: Fix favorite and auto_connect property usage. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/chromeos/cros/network_library.h" 5 #include "chrome/browser/chromeos/cros/network_library.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <map> 8 #include <map>
9 9
10 #include "app/l10n_util.h" 10 #include "app/l10n_util.h"
(...skipping 1233 matching lines...) Expand 10 before | Expand all | Expand 10 after
1244 } 1244 }
1245 1245
1246 // Create placeholder network for ethernet even if the service is not 1246 // Create placeholder network for ethernet even if the service is not
1247 // detected at this moment. 1247 // detected at this moment.
1248 if (!(*ethernet)) 1248 if (!(*ethernet))
1249 (*ethernet) = new EthernetNetwork(); 1249 (*ethernet) = new EthernetNetwork();
1250 1250
1251 DVLOG(1) << "Remembered networks:"; 1251 DVLOG(1) << "Remembered networks:";
1252 for (int i = 0; i < system->remembered_service_size; i++) { 1252 for (int i = 0; i < system->remembered_service_size; i++) {
1253 const ServiceInfo* service = system->GetRememberedServiceInfo(i); 1253 const ServiceInfo* service = system->GetRememberedServiceInfo(i);
1254 // Only services marked as auto_connect are considered remembered 1254 // Only services marked as favorite are considered remembered networks.
1255 // networks.
1256 // TODO(chocobo): Don't add to remembered service if currently available. 1255 // TODO(chocobo): Don't add to remembered service if currently available.
1257 if (service->auto_connect) { 1256 if (service->favorite) {
1258 DVLOG(1) << " (" << service->type << ") " << service->name 1257 DVLOG(1) << " (" << service->type << ") " << service->name
1259 << " mode=" << service->mode 1258 << " mode=" << service->mode
1260 << " sec=" << service->security 1259 << " sec=" << service->security
1261 << " pass=" << service->passphrase 1260 << " pass=" << service->passphrase
1262 << " id=" << service->identity 1261 << " id=" << service->identity
1263 << " certpath=" << service->cert_path 1262 << " certpath=" << service->cert_path
1263 << " fav=" << service->favorite
1264 << " auto=" << service->auto_connect; 1264 << " auto=" << service->auto_connect;
1265 if (service->type == TYPE_WIFI) { 1265 if (service->type == TYPE_WIFI) {
1266 remembered_wifi_networks->push_back(new WifiNetwork(service)); 1266 remembered_wifi_networks->push_back(new WifiNetwork(service));
1267 } 1267 }
1268 } 1268 }
1269 } 1269 }
1270 } 1270 }
1271 1271
1272 void Init() { 1272 void Init() {
1273 // First, get the currently available networks. This data is cached 1273 // First, get the currently available networks. This data is cached
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after
1716 return new NetworkLibraryStubImpl(); 1716 return new NetworkLibraryStubImpl();
1717 else 1717 else
1718 return new NetworkLibraryImpl(); 1718 return new NetworkLibraryImpl();
1719 } 1719 }
1720 1720
1721 } // namespace chromeos 1721 } // namespace chromeos
1722 1722
1723 // Allows InvokeLater without adding refcounting. This class is a Singleton and 1723 // Allows InvokeLater without adding refcounting. This class is a Singleton and
1724 // won't be deleted until it's last InvokeLater is run. 1724 // won't be deleted until it's last InvokeLater is run.
1725 DISABLE_RUNNABLE_METHOD_REFCOUNT(chromeos::NetworkLibraryImpl); 1725 DISABLE_RUNNABLE_METHOD_REFCOUNT(chromeos::NetworkLibraryImpl);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698