| Index: ppapi/proxy/serialized_structs.h
|
| diff --git a/ppapi/proxy/serialized_structs.h b/ppapi/proxy/serialized_structs.h
|
| index efefadebefe40b05fc3b1c66e7ac5fb833702d82..320293fc494a4e5989f4a7f245182bb33340bd32 100644
|
| --- a/ppapi/proxy/serialized_structs.h
|
| +++ b/ppapi/proxy/serialized_structs.h
|
| @@ -95,6 +95,23 @@ struct PPAPI_PROXY_EXPORT SerializedTrueTypeFontDesc {
|
| PP_TrueTypeFontCharset_Dev charset;
|
| };
|
|
|
| +struct PPAPI_PROXY_EXPORT SerializedVpnProviderParameters {
|
| + SerializedVpnProviderParameters();
|
| + ~SerializedVpnProviderParameters();
|
| +
|
| + // Mandatory
|
| + std::string address;
|
| + std::string subnet;
|
| + std::vector<std::string> exclusion_list;
|
| + std::vector<std::string> inclusion_list;
|
| + std::vector<std::string> dns_servers;
|
| +
|
| + // Optional
|
| + int32_t mtu;
|
| + std::string broadcast_address;
|
| + std::vector<std::string> domain_search;
|
| +};
|
| +
|
| struct SerializedDirEntry {
|
| std::string name;
|
| bool is_dir;
|
|
|