OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 // These classes implement the chrome.networkingPrivate JavaScript extension | 5 // These classes implement the chrome.networkingPrivate JavaScript extension |
6 // API. | 6 // API. |
7 | 7 |
8 #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_NETWORKING_PRIVATE_API_H_ | 8 #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_NETWORKING_PRIVATE_API_H_ |
9 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_NETWORKING_PRIVATE_API_H_ | 9 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_NETWORKING_PRIVATE_API_H_ |
10 | 10 |
(...skipping 12 matching lines...) Expand all Loading... |
23 DECLARE_EXTENSION_FUNCTION("networkingPrivate.getProperties", | 23 DECLARE_EXTENSION_FUNCTION("networkingPrivate.getProperties", |
24 NETWORKINGPRIVATE_GETPROPERTIES); | 24 NETWORKINGPRIVATE_GETPROPERTIES); |
25 | 25 |
26 protected: | 26 protected: |
27 virtual ~NetworkingPrivateGetPropertiesFunction(); | 27 virtual ~NetworkingPrivateGetPropertiesFunction(); |
28 | 28 |
29 // AsyncExtensionFunction overrides. | 29 // AsyncExtensionFunction overrides. |
30 virtual bool RunImpl() OVERRIDE; | 30 virtual bool RunImpl() OVERRIDE; |
31 | 31 |
32 private: | 32 private: |
| 33 // Callback if talking to ShillServiceClient directly. |
| 34 // TODO(pneubeck): Remove once the ManagedNetworkConfigurationHandler is |
| 35 // stable. |
33 void ResultCallback(chromeos::DBusMethodCallStatus call_status, | 36 void ResultCallback(chromeos::DBusMethodCallStatus call_status, |
34 const base::DictionaryValue& result); | 37 const base::DictionaryValue& result); |
| 38 |
| 39 // Callbacks if talking to ManagedNetworkConfigurationHandler. |
| 40 void GetPropertiesSuccess(const std::string& service_path, |
| 41 const base::DictionaryValue& result); |
| 42 void GetPropertiesFailed(const std::string& error_name, |
| 43 scoped_ptr<base::DictionaryValue> error_data); |
35 DISALLOW_COPY_AND_ASSIGN(NetworkingPrivateGetPropertiesFunction); | 44 DISALLOW_COPY_AND_ASSIGN(NetworkingPrivateGetPropertiesFunction); |
36 }; | 45 }; |
37 | 46 |
38 // Implements the chrome.networkingPrivate.getVisibleNetworks method. | 47 // Implements the chrome.networkingPrivate.getVisibleNetworks method. |
39 class NetworkingPrivateGetVisibleNetworksFunction | 48 class NetworkingPrivateGetVisibleNetworksFunction |
40 : public AsyncExtensionFunction { | 49 : public AsyncExtensionFunction { |
41 public: | 50 public: |
42 NetworkingPrivateGetVisibleNetworksFunction() {} | 51 NetworkingPrivateGetVisibleNetworksFunction() {} |
43 DECLARE_EXTENSION_FUNCTION("networkingPrivate.getVisibleNetworks", | 52 DECLARE_EXTENSION_FUNCTION("networkingPrivate.getVisibleNetworks", |
44 NETWORKINGPRIVATE_GETVISIBLENETWORKS); | 53 NETWORKINGPRIVATE_GETVISIBLENETWORKS); |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 // disconnect itself succeeded, just that the request did. | 110 // disconnect itself succeeded, just that the request did. |
102 void DisconnectionStartSuccess(); | 111 void DisconnectionStartSuccess(); |
103 | 112 |
104 void DisconnectionStartFailed(const std::string& error_name, | 113 void DisconnectionStartFailed(const std::string& error_name, |
105 const std::string& error_message); | 114 const std::string& error_message); |
106 | 115 |
107 DISALLOW_COPY_AND_ASSIGN(NetworkingPrivateStartDisconnectFunction); | 116 DISALLOW_COPY_AND_ASSIGN(NetworkingPrivateStartDisconnectFunction); |
108 }; | 117 }; |
109 | 118 |
110 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_NETWORKING_PRIVATE_API_H_ | 119 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_NETWORKING_PRIVATE_API_H_ |
OLD | NEW |