| 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 ASH_SYSTEM_CHROMEOS_NETWORK_NETWORK_CONNECT_H | |
| 6 #define ASH_SYSTEM_CHROMEOS_NETWORK_NETWORK_CONNECT_H | |
| 7 | |
| 8 #include <string> | |
| 9 | |
| 10 #include "ash/ash_export.h" | |
| 11 #include "base/strings/string16.h" | |
| 12 | |
| 13 namespace base { | |
| 14 class DictionaryValue; | |
| 15 } | |
| 16 | |
| 17 namespace chromeos { | |
| 18 class NetworkTypePattern; | |
| 19 } | |
| 20 | |
| 21 namespace ash { | |
| 22 | |
| 23 class ASH_EXPORT NetworkConnect { | |
| 24 public: | |
| 25 class Delegate { | |
| 26 public: | |
| 27 // Shows UI to configure or activate the network specified by |network_id|, | |
| 28 // which may include showing Payment or Portal UI when appropriate. | |
| 29 virtual void ShowNetworkConfigure(const std::string& network_id) = 0; | |
| 30 | |
| 31 // Shows the settings related to network. If |network_id| is not empty, | |
| 32 // show the settings for that network. | |
| 33 virtual void ShowNetworkSettings(const std::string& network_id) = 0; | |
| 34 | |
| 35 // Shows UI to enroll the network specified by |network_id| if appropriate | |
| 36 // and returns true, otherwise returns false. | |
| 37 virtual bool ShowEnrollNetwork(const std::string& network_id) = 0; | |
| 38 | |
| 39 // Shows UI to unlock a mobile sim. | |
| 40 virtual void ShowMobileSimDialog() = 0; | |
| 41 | |
| 42 // Shows UI to setup a mobile network. | |
| 43 virtual void ShowMobileSetupDialog(const std::string& service_path) = 0; | |
| 44 | |
| 45 protected: | |
| 46 virtual ~Delegate() {} | |
| 47 }; | |
| 48 | |
| 49 // Creates the global NetworkConnect object. |delegate| is owned by the | |
| 50 // caller. | |
| 51 static void Initialize(Delegate* delegate); | |
| 52 | |
| 53 // Destroys the global NetworkConnect object. | |
| 54 static void Shutdown(); | |
| 55 | |
| 56 // Returns the global NetworkConnect object if initialized or NULL. | |
| 57 static NetworkConnect* Get(); | |
| 58 | |
| 59 static const char kErrorActivateFailed[]; | |
| 60 | |
| 61 virtual ~NetworkConnect(); | |
| 62 | |
| 63 // Requests a network connection and handles any errors and notifications. | |
| 64 virtual void ConnectToNetwork(const std::string& service_path) = 0; | |
| 65 | |
| 66 // Enables or disables a network technology. If |technology| refers to | |
| 67 // cellular and the device cannot be enabled due to a SIM lock, this function | |
| 68 // will launch the SIM unlock dialog. | |
| 69 virtual void SetTechnologyEnabled( | |
| 70 const chromeos::NetworkTypePattern& technology, | |
| 71 bool enabled_state) = 0; | |
| 72 | |
| 73 // Requests network activation and handles any errors and notifications. | |
| 74 virtual void ActivateCellular(const std::string& service_path) = 0; | |
| 75 | |
| 76 // Determines whether or not a network requires a connection to activate or | |
| 77 // setup and either shows a notification or opens the mobile setup dialog. | |
| 78 virtual void ShowMobileSetup(const std::string& service_path) = 0; | |
| 79 | |
| 80 // Configures a network with a dictionary of Shill properties, then sends a | |
| 81 // connect request. The profile is set according to 'shared' if allowed. | |
| 82 virtual void ConfigureNetworkAndConnect( | |
| 83 const std::string& service_path, | |
| 84 const base::DictionaryValue& properties, | |
| 85 bool shared) = 0; | |
| 86 | |
| 87 // Requests a new network configuration to be created from a dictionary of | |
| 88 // Shill properties and sends a connect request if the configuration succeeds. | |
| 89 // The profile used is determined by |shared|. | |
| 90 virtual void CreateConfigurationAndConnect(base::DictionaryValue* properties, | |
| 91 bool shared) = 0; | |
| 92 | |
| 93 // Requests a new network configuration to be created from a dictionary of | |
| 94 // Shill properties. The profile used is determined by |shared|. | |
| 95 virtual void CreateConfiguration(base::DictionaryValue* properties, | |
| 96 bool shared) = 0; | |
| 97 | |
| 98 // Returns the localized string for shill error string |error|. | |
| 99 virtual base::string16 GetErrorString(const std::string& error, | |
| 100 const std::string& service_path) = 0; | |
| 101 | |
| 102 // Shows the settings for the network specified by |service_path|. If empty, | |
| 103 // or no matching network exists, shows the general internet settings page. | |
| 104 virtual void ShowNetworkSettings(const std::string& service_path) = 0; | |
| 105 | |
| 106 protected: | |
| 107 NetworkConnect(); | |
| 108 | |
| 109 private: | |
| 110 DISALLOW_COPY_AND_ASSIGN(NetworkConnect); | |
| 111 }; | |
| 112 | |
| 113 } // ash | |
| 114 | |
| 115 #endif // ASH_SYSTEM_CHROMEOS_NETWORK_NETWORK_CONNECT_H | |
| OLD | NEW |