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

Unified Diff: ppapi/proxy/serialized_structs.h

Issue 7623018: Move host resource from the proxy to the shared_impl. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comments addressed Created 9 years, 4 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/shared_impl/host_resource.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 dd83396387671439affd3e6045bf7316dfc2d4bc..dac6540c25f0e564875dfefac9370e4c54b0d4a4 100644
--- a/ppapi/proxy/serialized_structs.h
+++ b/ppapi/proxy/serialized_structs.h
@@ -15,8 +15,8 @@
#include "ppapi/c/pp_instance.h"
#include "ppapi/c/pp_point.h"
#include "ppapi/c/pp_rect.h"
-#include "ppapi/proxy/host_resource.h"
#include "ppapi/proxy/serialized_var.h"
+#include "ppapi/shared_impl/host_resource.h"
struct PP_FontDescription_Dev;
@@ -75,7 +75,7 @@ struct SerializedDirEntry {
struct PPBFileRef_CreateInfo {
PPBFileRef_CreateInfo(); // Initializes to 0.
- HostResource resource;
+ ppapi::HostResource resource;
int file_system_type; // One of PP_FileSystemType values.
SerializedVar path;
SerializedVar name;
@@ -86,7 +86,7 @@ struct PPBFlash_DrawGlyphs_Params {
~PPBFlash_DrawGlyphs_Params();
PP_Instance instance;
- HostResource image_data;
+ ppapi::HostResource image_data;
SerializedFontDescription font_desc;
uint32_t color;
PP_Point position;
@@ -97,7 +97,7 @@ struct PPBFlash_DrawGlyphs_Params {
};
struct PPBAudio_NotifyAudioStreamCreated_Params {
- pp::proxy::HostResource audio_id;
+ ppapi::HostResource audio_id;
int32_t result_code; // Will be != PP_OK on failure
IPC::PlatformFileForTransit socket_handle;
base::SharedMemoryHandle handle;
@@ -106,7 +106,7 @@ struct PPBAudio_NotifyAudioStreamCreated_Params {
struct PPBURLLoader_UpdateProgress_Params {
PP_Instance instance;
- pp::proxy::HostResource resource;
+ ppapi::HostResource resource;
int64_t bytes_sent;
int64_t total_bytes_to_be_sent;
int64_t bytes_received;
@@ -114,7 +114,7 @@ struct PPBURLLoader_UpdateProgress_Params {
};
struct PPPVideoCapture_Buffer {
- pp::proxy::HostResource resource;
+ ppapi::HostResource resource;
uint32_t size;
base::SharedMemoryHandle handle;
};
« no previous file with comments | « ppapi/proxy/resource_creation_proxy.cc ('k') | ppapi/shared_impl/host_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698