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

Side by Side Diff: chrome/browser/chromeos/cros/network_library_impl_base.h

Issue 11887008: Deprecate ShillNetworkClient and add GeolocationHandler (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix unittest Created 7 years, 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_BASE_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_BASE_H_
6 #define CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_BASE_H_ 6 #define CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_BASE_H_
7 7
8 #include <list> 8 #include <list>
9 #include <set> 9 #include <set>
10 10
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 // virtual ChangeRequiredPin implemented in derived classes. 187 // virtual ChangeRequiredPin implemented in derived classes.
188 // virtual EnterPin implemented in derived classes. 188 // virtual EnterPin implemented in derived classes.
189 // virtual UnblockPin implemented in derived classes. 189 // virtual UnblockPin implemented in derived classes.
190 190
191 // virtual RequestCellularScan implemented in derived classes. 191 // virtual RequestCellularScan implemented in derived classes.
192 // virtual RequestCellularRegister implemented in derived classes. 192 // virtual RequestCellularRegister implemented in derived classes.
193 // virtual SetCellularDataRoamingAllowed implemented in derived classes. 193 // virtual SetCellularDataRoamingAllowed implemented in derived classes.
194 // virtual SetCarrier implemented in derived classes. 194 // virtual SetCarrier implemented in derived classes.
195 // virtual IsCellularAlwaysInRoaming implemented in derived classes. 195 // virtual IsCellularAlwaysInRoaming implemented in derived classes.
196 // virtual RequestNetworkScan implemented in derived classes. 196 // virtual RequestNetworkScan implemented in derived classes.
197 // virtual GetWifiAccessPoints implemented in derived classes.
198 197
199 virtual bool HasProfileType(NetworkProfileType type) const OVERRIDE; 198 virtual bool HasProfileType(NetworkProfileType type) const OVERRIDE;
200 virtual bool CanConnectToNetwork(const Network* network) const OVERRIDE; 199 virtual bool CanConnectToNetwork(const Network* network) const OVERRIDE;
201 200
202 // Connect to an existing network. 201 // Connect to an existing network.
203 virtual void ConnectToWifiNetwork(WifiNetwork* wifi) OVERRIDE; 202 virtual void ConnectToWifiNetwork(WifiNetwork* wifi) OVERRIDE;
204 virtual void ConnectToWifiNetwork(WifiNetwork* wifi, bool shared) OVERRIDE; 203 virtual void ConnectToWifiNetwork(WifiNetwork* wifi, bool shared) OVERRIDE;
205 virtual void ConnectToWimaxNetwork(WimaxNetwork* wimax) OVERRIDE; 204 virtual void ConnectToWimaxNetwork(WimaxNetwork* wimax) OVERRIDE;
206 virtual void ConnectToWimaxNetwork(WimaxNetwork* wimax, bool shared) OVERRIDE; 205 virtual void ConnectToWimaxNetwork(WimaxNetwork* wimax, bool shared) OVERRIDE;
207 virtual void ConnectToCellularNetwork(CellularNetwork* cellular) OVERRIDE; 206 virtual void ConnectToCellularNetwork(CellularNetwork* cellular) OVERRIDE;
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
487 // stray networks that shill still has on file, but are not known on the 486 // stray networks that shill still has on file, but are not known on the
488 // Chrome side. 487 // Chrome side.
489 NetworkSourceMap network_source_map_; 488 NetworkSourceMap network_source_map_;
490 489
491 DISALLOW_COPY_AND_ASSIGN(NetworkLibraryImplBase); 490 DISALLOW_COPY_AND_ASSIGN(NetworkLibraryImplBase);
492 }; 491 };
493 492
494 } // namespace chromeos 493 } // namespace chromeos
495 494
496 #endif // CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_BASE_H_ 495 #endif // CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_BASE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698