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

Unified Diff: ppapi/proxy/serialized_structs.h

Issue 1307173009: rebased ppapi vpnProvider (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkcr
Patch Set: fix compile Created 5 years, 3 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
« no previous file with comments | « ppapi/proxy/resource_creation_proxy.cc ('k') | ppapi/proxy/serialized_structs.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « ppapi/proxy/resource_creation_proxy.cc ('k') | ppapi/proxy/serialized_structs.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698