OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef PPAPI_PROXY_SERIALIZED_STRUCTS_H_ | 5 #ifndef PPAPI_PROXY_SERIALIZED_STRUCTS_H_ |
6 #define PPAPI_PROXY_SERIALIZED_STRUCTS_H_ | 6 #define PPAPI_PROXY_SERIALIZED_STRUCTS_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/logging.h" | 11 #include "base/logging.h" |
12 #include "base/shared_memory.h" | 12 #include "base/memory/shared_memory.h" |
13 #include "build/build_config.h" | 13 #include "build/build_config.h" |
14 #include "ppapi/c/dev/ppb_truetype_font_dev.h" | 14 #include "ppapi/c/dev/ppb_truetype_font_dev.h" |
15 #include "ppapi/c/pp_bool.h" | 15 #include "ppapi/c/pp_bool.h" |
16 #include "ppapi/c/pp_instance.h" | 16 #include "ppapi/c/pp_instance.h" |
17 #include "ppapi/c/pp_point.h" | 17 #include "ppapi/c/pp_point.h" |
18 #include "ppapi/c/pp_rect.h" | 18 #include "ppapi/c/pp_rect.h" |
19 #include "ppapi/proxy/ppapi_proxy_export.h" | 19 #include "ppapi/proxy/ppapi_proxy_export.h" |
20 #include "ppapi/shared_impl/host_resource.h" | 20 #include "ppapi/shared_impl/host_resource.h" |
21 | 21 |
22 class Pickle; | 22 class Pickle; |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 // On legacy X Windows this is a SysV shared memory key. | 124 // On legacy X Windows this is a SysV shared memory key. |
125 typedef int ImageHandle; | 125 typedef int ImageHandle; |
126 #else | 126 #else |
127 typedef base::SharedMemoryHandle ImageHandle; | 127 typedef base::SharedMemoryHandle ImageHandle; |
128 #endif | 128 #endif |
129 | 129 |
130 } // namespace proxy | 130 } // namespace proxy |
131 } // namespace ppapi | 131 } // namespace ppapi |
132 | 132 |
133 #endif // PPAPI_PROXY_SERIALIZED_STRUCTS_H_ | 133 #endif // PPAPI_PROXY_SERIALIZED_STRUCTS_H_ |
OLD | NEW |