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.
5 #ifndef UI_CHROMEOS_NETWORK_NETWORK_CONNECT_H
6 #define UI_CHROMEOS_NETWORK_NETWORK_CONNECT_H
10 #include "base/strings/string16.h"
11 #include "ui/chromeos/ui_chromeos_export.h"
14 class DictionaryValue
;
18 class NetworkTypePattern
;
23 class UI_CHROMEOS_EXPORT NetworkConnect
{
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;
31 // Shows the settings related to network. If |network_id| is not empty,
32 // show the settings for that network.
33 virtual void ShowNetworkSettingsForGuid(const std::string
& network_id
) = 0;
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;
39 // Shows UI to unlock a mobile sim.
40 virtual void ShowMobileSimDialog() = 0;
42 // Shows UI to setup a mobile network.
43 virtual void ShowMobileSetupDialog(const std::string
& service_path
) = 0;
46 virtual ~Delegate() {}
49 // Creates the global NetworkConnect object. |delegate| is owned by the
51 static void Initialize(Delegate
* delegate
);
53 // Destroys the global NetworkConnect object.
54 static void Shutdown();
56 // Returns the global NetworkConnect object if initialized or NULL.
57 static NetworkConnect
* Get();
59 static const char kErrorActivateFailed
[];
61 virtual ~NetworkConnect();
63 // Requests a network connection and handles any errors and notifications.
64 virtual void ConnectToNetwork(const std::string
& service_path
) = 0;
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;
73 // Requests network activation and handles any errors and notifications.
74 virtual void ActivateCellular(const std::string
& service_path
) = 0;
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;
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
& shill_properties
,
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(
91 base::DictionaryValue
* shill_properties
,
94 // Requests a new network configuration to be created from a dictionary of
95 // Shill properties. The profile used is determined by |shared|.
96 virtual void CreateConfiguration(base::DictionaryValue
* shill_properties
,
99 // Returns the localized string for shill error string |error|.
100 virtual base::string16
GetShillErrorString(
101 const std::string
& error
,
102 const std::string
& service_path
) = 0;
104 // Shows the settings for the network specified by |service_path|. If empty,
105 // or no matching network exists, shows the general internet settings page.
106 virtual void ShowNetworkSettingsForPath(const std::string
& service_path
) = 0;
112 DISALLOW_COPY_AND_ASSIGN(NetworkConnect
);
117 #endif // UI_CHROMEOS_NETWORK_NETWORK_CONNECT_H