commit | b7c25e1ec39ec11d2156b2918d58f4de7fcd9791 | [log] [tgz] |
---|---|---|
author | zork <[email protected]> | Wed Apr 22 01:13:52 2015 |
committer | Commit bot <[email protected]> | Wed Apr 22 01:14:08 2015 |
tree | be92bd713e17eadfc65f4b24a49593a92983b5a0 | |
parent | 63d36f32e780f052716384851adfabd17edf8639 [diff] [blame] |
Add AddNetwork message to pairing API. BUG=None Review URL: https://codereview.chromium.org/1090483002 Cr-Commit-Position: refs/heads/master@{#326206}
diff --git a/components/pairing/pairing_api.proto b/components/pairing/pairing_api.proto index 0d8e6680..856feae6 100644 --- a/components/pairing/pairing_api.proto +++ b/components/pairing/pairing_api.proto
@@ -86,3 +86,12 @@ optional int32 api_version = 1; optional ErrorParameters parameters = 2; } + +message AddNetworkParameters { + optional string onc_spec = 1; +} + +message AddNetwork { + optional int32 api_version = 1; + optional AddNetworkParameters parameters = 2; +}