Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(239)

Side by Side Diff: chromeos/test/data/network/invalid_settings_with_repairs.json

Issue 2818593003: [CrOS Tether] Add tether network properties (battery percentage, carrier, and signal strength) to t… (Closed)
Patch Set: Ran git cl format. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chromeos/network/tether_constants.cc ('k') | chromeos/test/data/network/shill_tether.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "global-disabled-technologies": { 2 "global-disabled-technologies": {
3 "DisableNetworkTypes": ["WiMAX"] 3 "DisableNetworkTypes": ["WiMAX"]
4 }, 4 },
5 "duplicate-network-guid": { 5 "duplicate-network-guid": {
6 "NetworkConfigurations": [ 6 "NetworkConfigurations": [
7 { 7 {
8 "GUID": "1", 8 "GUID": "1",
9 "Type": "WiFi", 9 "Type": "WiFi",
10 "Name": "My WiFi Network", 10 "Name": "My WiFi Network",
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 "Host": "host", 392 "Host": "host",
393 "Type": "OpenVPN", 393 "Type": "OpenVPN",
394 "OpenVPN": { 394 "OpenVPN": {
395 "ClientCertType": "None", 395 "ClientCertType": "None",
396 "VerifyX509": { 396 "VerifyX509": {
397 "Type": "unknown type" 397 "Type": "unknown type"
398 } 398 }
399 } 399 }
400 } 400 }
401 }, 401 },
402 "tether-missing-battery-percentage": {
403 "GUID": "guid",
404 "Name": "name",
405 "Type": "Tether",
406 "Tether": {
407 "Carrier": "Project Fi",
408 "SignalStrength": 75
409 }
410 },
411 "tether-negative-battery": {
412 "GUID": "guid",
413 "Name": "name",
414 "Type": "Tether",
415 "Tether": {
416 "BatteryPercentage": -1,
417 "Carrier": "Project Fi",
418 "SignalStrength": 75
419 }
420 },
421 "tether-battery-over-100": {
422 "GUID": "guid",
423 "Name": "name",
424 "Type": "Tether",
425 "Tether": {
426 "BatteryPercentage": 101,
427 "Carrier": "Project Fi",
428 "SignalStrength": 75
429 }
430 },
431 "tether-missing-carrier": {
432 "GUID": "guid",
433 "Name": "name",
434 "Type": "Tether",
435 "Tether": {
436 "BatteryPercentage": 85,
437 "SignalStrength": 75
438 }
439 },
440 "tether-missing-signal-strength": {
441 "GUID": "guid",
442 "Name": "name",
443 "Type": "Tether",
444 "Tether": {
445 "BatteryPercentage": 85,
446 "Carrier": "Project Fi"
447 }
448 },
449 "tether-negative-signal-strength": {
450 "GUID": "guid",
451 "Name": "name",
452 "Type": "Tether",
453 "Tether": {
454 "BatteryPercentage": 85,
455 "Carrier": "Project Fi",
456 "SignalStrength": -1
457 }
458 },
459 "tether-signal-strength-over-100": {
460 "GUID": "guid",
461 "Name": "name",
462 "Type": "Tether",
463 "Tether": {
464 "BatteryPercentage": 85,
465 "Carrier": "Project Fi",
466 "SignalStrength": 101
467 }
468 },
402 "third-party-vpn-missing-extension-id": { 469 "third-party-vpn-missing-extension-id": {
403 "GUID": "guid", 470 "GUID": "guid",
404 "Name": "third-party VPN", 471 "Name": "third-party VPN",
405 "Type": "VPN", 472 "Type": "VPN",
406 "VPN": { 473 "VPN": {
407 "Type": "ThirdPartyVPN", 474 "Type": "ThirdPartyVPN",
408 "ThirdPartyVPN": { } 475 "ThirdPartyVPN": { }
409 } 476 }
410 }, 477 },
411 "toplevel-empty": { 478 "toplevel-empty": {
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
534 "SSID": "ssid-wpa", 601 "SSID": "ssid-wpa",
535 "UnknownField1": "Value1", 602 "UnknownField1": "Value1",
536 "Security": "WPA-PSK" } 603 "Security": "WPA-PSK" }
537 } 604 }
538 ], 605 ],
539 "Certificates": [], 606 "Certificates": [],
540 "Type": "UnencryptedConfiguration", 607 "Type": "UnencryptedConfiguration",
541 "UnknownField3": [], 608 "UnknownField3": [],
542 } 609 }
543 } 610 }
OLDNEW
« no previous file with comments | « chromeos/network/tether_constants.cc ('k') | chromeos/test/data/network/shill_tether.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698