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

Unified Diff: chrome/browser/chromeos/cros/network_library.h

Issue 7736014: [cros] Process proper notification in SIM dialog. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: js focus fix Created 9 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 | « no previous file | chrome/browser/chromeos/cros/network_library.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/cros/network_library.h
diff --git a/chrome/browser/chromeos/cros/network_library.h b/chrome/browser/chromeos/cros/network_library.h
index 63f4f55aea51518ec4d4722ed5bcb8fb32f765f3..b4a978715a9ce9c3b2679e158ca19609d499e007 100644
--- a/chrome/browser/chromeos/cros/network_library.h
+++ b/chrome/browser/chromeos/cros/network_library.h
@@ -1271,14 +1271,17 @@ class NetworkLibrary {
class NetworkDeviceObserver {
public:
- // Called when the state of a single device has changed,
- // for example SIMLock state for cellular.
+ // Called when the state of a single device has changed.
virtual void OnNetworkDeviceChanged(NetworkLibrary* cros,
const NetworkDevice* device) {}
// Called when |device| got notification about new networks available.
virtual void OnNetworkDeviceFoundNetworks(NetworkLibrary* cros,
const NetworkDevice* device) {}
+
+ // Called when |device| got notification about SIM lock change.
+ virtual void OnNetworkDeviceSimLockChanged(NetworkLibrary* cros,
+ const NetworkDevice* device) {}
protected:
~NetworkDeviceObserver() {}
};
« no previous file with comments | « no previous file | chrome/browser/chromeos/cros/network_library.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698