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

Unified Diff: chrome/test/data/extensions/api_test/networking_private/chromeos/test.js

Issue 1019033002: Add an ONC property for the third-party VPN provider extension ID (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/extensions/api_test/networking_private/chromeos/test.js
diff --git a/chrome/test/data/extensions/api_test/networking_private/chromeos/test.js b/chrome/test/data/extensions/api_test/networking_private/chromeos/test.js
index b8cbb0178f69c6dd1cd0dac3da72d7a900fb9812..27c5adf263486ea890390d369aee64805c7447e3 100644
--- a/chrome/test/data/extensions/api_test/networking_private/chromeos/test.js
+++ b/chrome/test/data/extensions/api_test/networking_private/chromeos/test.js
@@ -231,7 +231,7 @@ var availableTests = [
"ConnectionState": "Connected",
"GUID": "stub_wimax_guid",
"Name": "wimax",
- "Source":"User",
+ "Source": "User",
"Type": "WiMAX",
"WiMAX": {
"SignalStrength": 40
@@ -241,8 +241,24 @@ var availableTests = [
"ConnectionState": "Connected",
"GUID": "stub_vpn1_guid",
"Name": "vpn1",
- "Source":"User",
- "Type": "VPN"
+ "Source": "User",
+ "Type": "VPN",
+ "VPN": {
+ "Type":"OpenVPN"
+ }
+ },
+ {
+ "ConnectionState": "Connected",
+ "GUID": "stub_vpn2_guid",
+ "Name": "vpn2",
+ "Source": "User",
+ "Type": "VPN",
+ "VPN": {
+ "Type": "OpenVPN",
pneubeck (no reviews) 2015/03/18 19:04:42 this is wrong. type should be "ThirdPartyVPN"
bartfab (slow) 2015/03/18 19:21:16 Done.
+ "ThirdPartyVPN": {
+ "ExtensionID": "third_party_provider_extension_id"
+ }
+ }
},
{
"Connectable": true,

Powered by Google App Engine
This is Rietveld 408576698