| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef UI_CHROMEOS_NETWORK_NETWORK_STATE_NOTIFIER_H_ | |
| 6 #define UI_CHROMEOS_NETWORK_NETWORK_STATE_NOTIFIER_H_ | |
| 7 | |
| 8 #include <set> | |
| 9 | |
| 10 #include "base/basictypes.h" | |
| 11 #include "base/compiler_specific.h" | |
| 12 #include "base/memory/scoped_ptr.h" | |
| 13 #include "base/memory/weak_ptr.h" | |
| 14 #include "base/time/time.h" | |
| 15 #include "chromeos/network/network_state_handler_observer.h" | |
| 16 #include "ui/chromeos/ui_chromeos_export.h" | |
| 17 | |
| 18 namespace base { | |
| 19 class DictionaryValue; | |
| 20 } | |
| 21 | |
| 22 namespace chromeos { | |
| 23 class NetworkState; | |
| 24 } | |
| 25 | |
| 26 namespace ui { | |
| 27 | |
| 28 class NetworkConnect; | |
| 29 | |
| 30 // This class has two purposes: | |
| 31 // 1. ShowNetworkConnectError() gets called after any user initiated connect | |
| 32 // failure. This will handle displaying an error notification. | |
| 33 // TODO(stevenjb): convert this class to use the new MessageCenter | |
| 34 // notification system. | |
| 35 // 2. It observes NetworkState changes to generate notifications when a | |
| 36 // Cellular network is out of credits. | |
| 37 class UI_CHROMEOS_EXPORT NetworkStateNotifier : | |
| 38 public chromeos::NetworkStateHandlerObserver { | |
| 39 public: | |
| 40 explicit NetworkStateNotifier(NetworkConnect* network_connect); | |
| 41 virtual ~NetworkStateNotifier(); | |
| 42 | |
| 43 // NetworkStateHandlerObserver | |
| 44 virtual void DefaultNetworkChanged( | |
| 45 const chromeos::NetworkState* network) override; | |
| 46 virtual void NetworkPropertiesUpdated( | |
| 47 const chromeos::NetworkState* network) override; | |
| 48 | |
| 49 // Show a connection error notification. If |error_name| matches an error | |
| 50 // defined in NetworkConnectionHandler for connect, configure, or activation | |
| 51 // failed, then the associated message is shown; otherwise use the last_error | |
| 52 // value for the network or a Shill property if available. | |
| 53 void ShowNetworkConnectError(const std::string& error_name, | |
| 54 const std::string& service_path); | |
| 55 | |
| 56 // Show a mobile activation error notification. | |
| 57 void ShowMobileActivationError(const std::string& service_path); | |
| 58 | |
| 59 // Removes any existing connect notifications. | |
| 60 void RemoveConnectNotification(); | |
| 61 | |
| 62 static const char kNotifierNetwork[]; | |
| 63 static const char kNotifierNetworkError[]; | |
| 64 static const char kNetworkConnectNotificationId[]; | |
| 65 static const char kNetworkActivateNotificationId[]; | |
| 66 static const char kNetworkOutOfCreditsNotificationId[]; | |
| 67 | |
| 68 private: | |
| 69 void ConnectErrorPropertiesSucceeded( | |
| 70 const std::string& error_name, | |
| 71 const std::string& service_path, | |
| 72 const base::DictionaryValue& shill_properties); | |
| 73 void ConnectErrorPropertiesFailed( | |
| 74 const std::string& error_name, | |
| 75 const std::string& service_path, | |
| 76 const std::string& shill_connect_error, | |
| 77 scoped_ptr<base::DictionaryValue> shill_error_data); | |
| 78 void ShowConnectErrorNotification( | |
| 79 const std::string& error_name, | |
| 80 const std::string& service_path, | |
| 81 const base::DictionaryValue& shill_properties); | |
| 82 | |
| 83 // Returns true if the default network changed. | |
| 84 bool UpdateDefaultNetwork(const chromeos::NetworkState* network); | |
| 85 | |
| 86 // Helper methods to update state and check for notifications. | |
| 87 void UpdateCellularOutOfCredits(const chromeos::NetworkState* cellular); | |
| 88 void UpdateCellularActivating(const chromeos::NetworkState* cellular); | |
| 89 | |
| 90 // Invokes network_connect_->ShowNetworkSettings from a callback. | |
| 91 void ShowNetworkSettings(const std::string& service_path); | |
| 92 | |
| 93 NetworkConnect* network_connect_; // unowned | |
| 94 std::string last_default_network_; | |
| 95 bool did_show_out_of_credits_; | |
| 96 base::Time out_of_credits_notify_time_; | |
| 97 std::set<std::string> cellular_activating_; | |
| 98 base::WeakPtrFactory<NetworkStateNotifier> weak_ptr_factory_; | |
| 99 | |
| 100 DISALLOW_COPY_AND_ASSIGN(NetworkStateNotifier); | |
| 101 }; | |
| 102 | |
| 103 } // namespace ui | |
| 104 | |
| 105 #endif // UI_CHROMEOS_NETWORK_NETWORK_STATE_NOTIFIER_H_ | |
| OLD | NEW |