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

Unified Diff: ppapi/proxy/serialized_structs.h

Issue 730603002: PPAPI: Refactor renderer side of browser host creation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sequence_id->sequence_num Created 6 years, 1 month 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
« ppapi/proxy/ppapi_messages.h ('K') | « ppapi/proxy/ppapi_messages.h ('k') | no next file » | 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 f3e114c09fa4fc318de79bb7cc63c7d71688fa15..3d6206876ff73c4db124806398936e55dc4873c4 100644
--- a/ppapi/proxy/serialized_structs.h
+++ b/ppapi/proxy/serialized_structs.h
@@ -139,6 +139,18 @@ typedef HANDLE ImageHandle;
typedef base::SharedMemoryHandle ImageHandle;
#endif
+// CompletedBrowserResourceHosts contains information about the browser-side
+// hosts for resources that the renderer asked the browser to create.
+struct CompletedBrowserResourceHosts {
+ CompletedBrowserResourceHosts() : sequence_num(0) {}
+ CompletedBrowserResourceHosts(int sequence_num_param,
+ const std::vector<int>& host_ids_param)
+ : sequence_num(sequence_num_param), host_ids(host_ids_param) {
+ }
+ int sequence_num;
+ std::vector<int> host_ids;
+};
+
} // namespace proxy
} // namespace ppapi
« ppapi/proxy/ppapi_messages.h ('K') | « ppapi/proxy/ppapi_messages.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698