1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef EXTENSIONS_BROWSER_API_NETWORKING_PRIVATE_NETWORKING_PRIVATE_API_H_
#define EXTENSIONS_BROWSER_API_NETWORKING_PRIVATE_NETWORKING_PRIVATE_API_H_
#include <memory>
#include <optional>
#include <string>
#include "base/values.h"
#include "extensions/browser/api/networking_private/networking_private_delegate.h"
#include "extensions/browser/extension_function.h"
namespace extensions {
namespace networking_private {
extern const char kErrorAccessToSharedConfig[];
extern const char kErrorInvalidArguments[];
extern const char kErrorInvalidNetworkGuid[];
extern const char kErrorInvalidNetworkOperation[];
extern const char kErrorNetworkUnavailable[];
extern const char kErrorNotSupported[];
extern const char kErrorPolicyControlled[];
extern const char kErrorSimLocked[];
extern const char kErrorUnconfiguredNetwork[];
} // namespace networking_private
// Implements the chrome.networkingPrivate.getProperties method.
class NetworkingPrivateGetPropertiesFunction : public ExtensionFunction {
public:
NetworkingPrivateGetPropertiesFunction() = default;
NetworkingPrivateGetPropertiesFunction(
const NetworkingPrivateGetPropertiesFunction&) = delete;
NetworkingPrivateGetPropertiesFunction& operator=(
const NetworkingPrivateGetPropertiesFunction&) = delete;
DECLARE_EXTENSION_FUNCTION("networkingPrivate.getProperties",
NETWORKINGPRIVATE_GETPROPERTIES)
protected:
~NetworkingPrivateGetPropertiesFunction() override = default;
// ExtensionFunction:
ResponseAction Run() override;
private:
void Result(std::optional<base::Value::Dict> result,
const std::optional<std::string>& error);
};
// Implements the chrome.networkingPrivate.getManagedProperties method.
class NetworkingPrivateGetManagedPropertiesFunction : public ExtensionFunction {
public:
NetworkingPrivateGetManagedPropertiesFunction() = default;
NetworkingPrivateGetManagedPropertiesFunction(
const NetworkingPrivateGetManagedPropertiesFunction&) = delete;
NetworkingPrivateGetManagedPropertiesFunction& operator=(
const NetworkingPrivateGetManagedPropertiesFunction&) = delete;
DECLARE_EXTENSION_FUNCTION("networkingPrivate.getManagedProperties",
NETWORKINGPRIVATE_GETMANAGEDPROPERTIES)
protected:
~NetworkingPrivateGetManagedPropertiesFunction() override = default;
// ExtensionFunction:
ResponseAction Run() override;
private:
void Result(std::optional<base::Value::Dict> result,
const std::optional<std::string>& error);
};
// Implements the chrome.networkingPrivate.getState method.
class NetworkingPrivateGetStateFunction : public ExtensionFunction {
public:
NetworkingPrivateGetStateFunction() = default;
NetworkingPrivateGetStateFunction(const NetworkingPrivateGetStateFunction&) =
delete;
NetworkingPrivateGetStateFunction& operator=(
const NetworkingPrivateGetStateFunction&) = delete;
DECLARE_EXTENSION_FUNCTION("networkingPrivate.getState",
NETWORKINGPRIVATE_GETSTATE)
protected:
~NetworkingPrivateGetStateFunction() override = default;
// ExtensionFunction:
ResponseAction Run() override;
private:
void Success(base::Value::Dict result);
void Failure(const std::string& error);
};
// Implements the chrome.networkingPrivate.setProperties method.
class NetworkingPrivateSetPropertiesFunction : public ExtensionFunction {
public:
NetworkingPrivateSetPropertiesFunction() = default;
NetworkingPrivateSetPropertiesFunction(
const NetworkingPrivateSetPropertiesFunction&) = delete;
NetworkingPrivateSetPropertiesFunction& operator=(
const NetworkingPrivateSetPropertiesFunction&) = delete;
DECLARE_EXTENSION_FUNCTION("networkingPrivate.setProperties",
NETWORKINGPRIVATE_SETPROPERTIES)
protected:
~NetworkingPrivateSetPropertiesFunction() override = default;
// ExtensionFunction:
ResponseAction Run() override;
private:
void Success();
void Failure(const std::string& error);
};
// Implements the chrome.networkingPrivate.createNetwork method.
class NetworkingPrivateCreateNetworkFunction : public ExtensionFunction {
public:
NetworkingPrivateCreateNetworkFunction() = default;
NetworkingPrivateCreateNetworkFunction(
const NetworkingPrivateCreateNetworkFunction&) = delete;
NetworkingPrivateCreateNetworkFunction& operator=(
const NetworkingPrivateCreateNetworkFunction&) = delete;
DECLARE_EXTENSION_FUNCTION("networkingPrivate.createNetwork",
NETWORKINGPRIVATE_CREATENETWORK)
protected:
~NetworkingPrivateCreateNetworkFunction() override = default;
// ExtensionFunction:
ResponseAction Run() override;
private:
void Success(const std::string& guid);
void Failure(const std::string& error);
};
// Implements the chrome.networkingPrivate.createNetwork method.
class NetworkingPrivateForgetNetworkFunction : public ExtensionFunction {
public:
NetworkingPrivateForgetNetworkFunction() = default;
NetworkingPrivateForgetNetworkFunction(
const NetworkingPrivateForgetNetworkFunction&) = delete;
NetworkingPrivateForgetNetworkFunction& operator=(
const NetworkingPrivateForgetNetworkFunction&) = delete;
DECLARE_EXTENSION_FUNCTION("networkingPrivate.forgetNetwork",
NETWORKINGPRIVATE_FORGETNETWORK)
protected:
~NetworkingPrivateForgetNetworkFunction() override = default;
// ExtensionFunction:
ResponseAction Run() override;
private:
void Success();
void Failure(const std::string& error);
};
// Implements the chrome.networkingPrivate.getNetworks method.
class NetworkingPrivateGetNetworksFunction : public ExtensionFunction {
public:
NetworkingPrivateGetNetworksFunction() = default;
NetworkingPrivateGetNetworksFunction(
const NetworkingPrivateGetNetworksFunction&) = delete;
NetworkingPrivateGetNetworksFunction& operator=(
const NetworkingPrivateGetNetworksFunction&) = delete;
DECLARE_EXTENSION_FUNCTION("networkingPrivate.getNetworks",
NETWORKINGPRIVATE_GETNETWORKS)
protected:
~NetworkingPrivateGetNetworksFunction() override = default;
// ExtensionFunction:
ResponseAction Run() override;
private:
void Success(base::Value::List network_list);
void Failure(const std::string& error);
};
// Implements the chrome.networkingPrivate.getVisibleNetworks method.
class NetworkingPrivateGetVisibleNetworksFunction : public ExtensionFunction {
public:
NetworkingPrivateGetVisibleNetworksFunction() = default;
NetworkingPrivateGetVisibleNetworksFunction(
const NetworkingPrivateGetVisibleNetworksFunction&) = delete;
NetworkingPrivateGetVisibleNetworksFunction& operator=(
const NetworkingPrivateGetVisibleNetworksFunction&) = delete;
DECLARE_EXTENSION_FUNCTION("networkingPrivate.getVisibleNetworks",
NETWORKINGPRIVATE_GETVISIBLENETWORKS)
protected:
~NetworkingPrivateGetVisibleNetworksFunction() override = default;
// ExtensionFunction:
ResponseAction Run() override;
private:
void Success(base::Value::List network_list);
void Failure(const std::string& error);
};
// Implements the chrome.networkingPrivate.getEnabledNetworkTypes method.
class NetworkingPrivateGetEnabledNetworkTypesFunction
: public ExtensionFunction {
public:
NetworkingPrivateGetEnabledNetworkTypesFunction() = default;
NetworkingPrivateGetEnabledNetworkTypesFunction(
const NetworkingPrivateGetEnabledNetworkTypesFunction&) = delete;
NetworkingPrivateGetEnabledNetworkTypesFunction& operator=(
const NetworkingPrivateGetEnabledNetworkTypesFunction&) = delete;
DECLARE_EXTENSION_FUNCTION("networkingPrivate.getEnabledNetworkTypes",
NETWORKINGPRIVATE_GETENABLEDNETWORKTYPES)
protected:
~NetworkingPrivateGetEnabledNetworkTypesFunction() override = default;
// ExtensionFunction:
ResponseAction Run() override;
private:
void Result(base::Value::List enabled_networks_onc_types);
};
// Implements the chrome.networkingPrivate.getDeviceStates method.
class NetworkingPrivateGetDeviceStatesFunction : public ExtensionFunction {
public:
NetworkingPrivateGetDeviceStatesFunction() = default;
NetworkingPrivateGetDeviceStatesFunction(
const NetworkingPrivateGetDeviceStatesFunction&) = delete;
NetworkingPrivateGetDeviceStatesFunction& operator=(
const NetworkingPrivateGetDeviceStatesFunction&) = delete;
DECLARE_EXTENSION_FUNCTION("networkingPrivate.getDeviceStates",
NETWORKINGPRIVATE_GETDEVICESTATES)
protected:
~NetworkingPrivateGetDeviceStatesFunction() override = default;
// ExtensionFunction:
ResponseAction Run() override;
private:
void Result(
std::optional<NetworkingPrivateDelegate::DeviceStateList> device_states);
};
// Implements the chrome.networkingPrivate.enableNetworkType method.
class NetworkingPrivateEnableNetworkTypeFunction : public ExtensionFunction {
public:
NetworkingPrivateEnableNetworkTypeFunction() = default;
NetworkingPrivateEnableNetworkTypeFunction(
const NetworkingPrivateEnableNetworkTypeFunction&) = delete;
NetworkingPrivateEnableNetworkTypeFunction& operator=(
const NetworkingPrivateEnableNetworkTypeFunction&) = delete;
DECLARE_EXTENSION_FUNCTION("networkingPrivate.enableNetworkType",
NETWORKINGPRIVATE_ENABLENETWORKTYPE)
protected:
~NetworkingPrivateEnableNetworkTypeFunction() override = default;
// ExtensionFunction:
ResponseAction Run() override;
private:
void Result(bool success);
};
// Implements the chrome.networkingPrivate.disableNetworkType method.
class NetworkingPrivateDisableNetworkTypeFunction : public ExtensionFunction {
public:
NetworkingPrivateDisableNetworkTypeFunction() = default;
NetworkingPrivateDisableNetworkTypeFunction(
const NetworkingPrivateDisableNetworkTypeFunction&) = delete;
NetworkingPrivateDisableNetworkTypeFunction& operator=(
const NetworkingPrivateDisableNetworkTypeFunction&) = delete;
DECLARE_EXTENSION_FUNCTION("networkingPrivate.disableNetworkType",
NETWORKINGPRIVATE_DISABLENETWORKTYPE)
protected:
~NetworkingPrivateDisableNetworkTypeFunction() override = default;
// ExtensionFunction:
ResponseAction Run() override;
private:
void Result(bool success);
};
// Implements the chrome.networkingPrivate.requestNetworkScan method.
class NetworkingPrivateRequestNetworkScanFunction : public ExtensionFunction {
public:
NetworkingPrivateRequestNetworkScanFunction() = default;
NetworkingPrivateRequestNetworkScanFunction(
const NetworkingPrivateRequestNetworkScanFunction&) = delete;
NetworkingPrivateRequestNetworkScanFunction& operator=(
const NetworkingPrivateRequestNetworkScanFunction&) = delete;
DECLARE_EXTENSION_FUNCTION("networkingPrivate.requestNetworkScan",
NETWORKINGPRIVATE_REQUESTNETWORKSCAN)
protected:
~NetworkingPrivateRequestNetworkScanFunction() override = default;
// ExtensionFunction:
ResponseAction Run() override;
private:
void Result(bool success);
};
// Implements the chrome.networkingPrivate.startConnect method.
class NetworkingPrivateStartConnectFunction : public ExtensionFunction {
public:
NetworkingPrivateStartConnectFunction() = default;
NetworkingPrivateStartConnectFunction(
const NetworkingPrivateStartConnectFunction&) = delete;
NetworkingPrivateStartConnectFunction& operator=(
const NetworkingPrivateStartConnectFunction&) = delete;
DECLARE_EXTENSION_FUNCTION("networkingPrivate.startConnect",
NETWORKINGPRIVATE_STARTCONNECT)
protected:
~NetworkingPrivateStartConnectFunction() override = default;
// ExtensionFunction:
ResponseAction Run() override;
private:
void Success();
void Failure(const std::string& guid, const std::string& error);
};
// Implements the chrome.networkingPrivate.startDisconnect method.
class NetworkingPrivateStartDisconnectFunction : public ExtensionFunction {
public:
NetworkingPrivateStartDisconnectFunction() = default;
NetworkingPrivateStartDisconnectFunction(
const NetworkingPrivateStartDisconnectFunction&) = delete;
NetworkingPrivateStartDisconnectFunction& operator=(
const NetworkingPrivateStartDisconnectFunction&) = delete;
DECLARE_EXTENSION_FUNCTION("networkingPrivate.startDisconnect",
NETWORKINGPRIVATE_STARTDISCONNECT)
protected:
~NetworkingPrivateStartDisconnectFunction() override = default;
// ExtensionFunction:
ResponseAction Run() override;
private:
void Success();
void Failure(const std::string& error);
};
// Implements the chrome.networkingPrivate.startActivate method.
class NetworkingPrivateStartActivateFunction : public ExtensionFunction {
public:
NetworkingPrivateStartActivateFunction() = default;
NetworkingPrivateStartActivateFunction(
const NetworkingPrivateStartActivateFunction&) = delete;
NetworkingPrivateStartActivateFunction& operator=(
const NetworkingPrivateStartActivateFunction&) = delete;
DECLARE_EXTENSION_FUNCTION("networkingPrivate.startActivate",
NETWORKINGPRIVATE_STARTACTIVATE)
protected:
~NetworkingPrivateStartActivateFunction() override = default;
// ExtensionFunction:
ResponseAction Run() override;
private:
void Success();
void Failure(const std::string& error);
};
class NetworkingPrivateGetCaptivePortalStatusFunction
: public ExtensionFunction {
public:
NetworkingPrivateGetCaptivePortalStatusFunction() = default;
NetworkingPrivateGetCaptivePortalStatusFunction(
const NetworkingPrivateGetCaptivePortalStatusFunction&) = delete;
NetworkingPrivateGetCaptivePortalStatusFunction& operator=(
const NetworkingPrivateGetCaptivePortalStatusFunction&) = delete;
DECLARE_EXTENSION_FUNCTION("networkingPrivate.getCaptivePortalStatus",
NETWORKINGPRIVATE_GETCAPTIVEPORTALSTATUS)
// ExtensionFunction:
ResponseAction Run() override;
protected:
~NetworkingPrivateGetCaptivePortalStatusFunction() override = default;
private:
void Success(const std::string& result);
void Failure(const std::string& error);
};
class NetworkingPrivateUnlockCellularSimFunction : public ExtensionFunction {
public:
NetworkingPrivateUnlockCellularSimFunction() = default;
NetworkingPrivateUnlockCellularSimFunction(
const NetworkingPrivateUnlockCellularSimFunction&) = delete;
NetworkingPrivateUnlockCellularSimFunction& operator=(
const NetworkingPrivateUnlockCellularSimFunction&) = delete;
DECLARE_EXTENSION_FUNCTION("networkingPrivate.unlockCellularSim",
NETWORKINGPRIVATE_UNLOCKCELLULARSIM)
// ExtensionFunction:
ResponseAction Run() override;
protected:
~NetworkingPrivateUnlockCellularSimFunction() override = default;
private:
void Success();
void Failure(const std::string& error);
};
class NetworkingPrivateSetCellularSimStateFunction : public ExtensionFunction {
public:
NetworkingPrivateSetCellularSimStateFunction() = default;
NetworkingPrivateSetCellularSimStateFunction(
const NetworkingPrivateSetCellularSimStateFunction&) = delete;
NetworkingPrivateSetCellularSimStateFunction& operator=(
const NetworkingPrivateSetCellularSimStateFunction&) = delete;
DECLARE_EXTENSION_FUNCTION("networkingPrivate.setCellularSimState",
NETWORKINGPRIVATE_SETCELLULARSIMSTATE)
// ExtensionFunction:
ResponseAction Run() override;
protected:
~NetworkingPrivateSetCellularSimStateFunction() override = default;
private:
void Success();
void Failure(const std::string& error);
};
class NetworkingPrivateSelectCellularMobileNetworkFunction
: public ExtensionFunction {
public:
NetworkingPrivateSelectCellularMobileNetworkFunction() = default;
NetworkingPrivateSelectCellularMobileNetworkFunction(
const NetworkingPrivateSelectCellularMobileNetworkFunction&) = delete;
NetworkingPrivateSelectCellularMobileNetworkFunction& operator=(
const NetworkingPrivateSelectCellularMobileNetworkFunction&) = delete;
DECLARE_EXTENSION_FUNCTION("networkingPrivate.selectCellularMobileNetwork",
NETWORKINGPRIVATE_SELECTCELLULARMOBILENETWORK)
// ExtensionFunction:
ResponseAction Run() override;
protected:
~NetworkingPrivateSelectCellularMobileNetworkFunction() override = default;
private:
void Success();
void Failure(const std::string& error);
};
class NetworkingPrivateGetGlobalPolicyFunction : public ExtensionFunction {
public:
NetworkingPrivateGetGlobalPolicyFunction() = default;
NetworkingPrivateGetGlobalPolicyFunction(
const NetworkingPrivateGetGlobalPolicyFunction&) = delete;
NetworkingPrivateGetGlobalPolicyFunction& operator=(
const NetworkingPrivateGetGlobalPolicyFunction&) = delete;
DECLARE_EXTENSION_FUNCTION("networkingPrivate.getGlobalPolicy",
NETWORKINGPRIVATE_GETGLOBALPOLICY)
protected:
~NetworkingPrivateGetGlobalPolicyFunction() override = default;
// ExtensionFunction:
ResponseAction Run() override;
private:
void Result(std::optional<base::Value::Dict> global_policies);
};
class NetworkingPrivateGetCertificateListsFunction : public ExtensionFunction {
public:
NetworkingPrivateGetCertificateListsFunction() = default;
NetworkingPrivateGetCertificateListsFunction(
const NetworkingPrivateGetCertificateListsFunction&) = delete;
NetworkingPrivateGetCertificateListsFunction& operator=(
const NetworkingPrivateGetCertificateListsFunction&) = delete;
DECLARE_EXTENSION_FUNCTION("networkingPrivate.getCertificateLists",
NETWORKINGPRIVATE_GETCERTIFICATELISTS)
protected:
~NetworkingPrivateGetCertificateListsFunction() override = default;
// ExtensionFunction:
ResponseAction Run() override;
private:
void Result(base::Value::Dict certificate_list);
};
} // namespace extensions
#endif // EXTENSIONS_BROWSER_API_NETWORKING_PRIVATE_NETWORKING_PRIVATE_API_H_
|