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

Unified Diff: ppapi/proxy/serialized_structs.h

Issue 605593002: PPAPI: Support sending browser-hosted resources synchronously Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix content_browsertests 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
« no previous file with comments | « ppapi/proxy/raw_var_data.cc ('k') | ppapi/tests/test_message_handler.h » ('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 f3e114c09fa4fc318de79bb7cc63c7d71688fa15..5ddeee6af3cbcb4776e0f20da89d7b6e849b9a13 100644
--- a/ppapi/proxy/serialized_structs.h
+++ b/ppapi/proxy/serialized_structs.h
@@ -139,6 +139,16 @@ typedef HANDLE ImageHandle;
typedef base::SharedMemoryHandle ImageHandle;
#endif
+struct CompletedBrowserResourceHosts {
+ CompletedBrowserResourceHosts() : sequence_id(0) {}
+ CompletedBrowserResourceHosts(int sequence_id_param,
+ const std::vector<int>& host_ids_param)
+ : sequence_id(sequence_id_param), host_ids(host_ids_param) {
+ }
+ int sequence_id;
+ std::vector<int> host_ids;
+};
+
} // namespace proxy
} // namespace ppapi
« no previous file with comments | « ppapi/proxy/raw_var_data.cc ('k') | ppapi/tests/test_message_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698