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 <stdint.h> |
| 9 |
8 #include <string> | 10 #include <string> |
9 #include <vector> | 11 #include <vector> |
10 | 12 |
11 #include "base/logging.h" | 13 #include "base/logging.h" |
12 #include "base/memory/shared_memory.h" | 14 #include "base/memory/shared_memory.h" |
13 #include "build/build_config.h" | 15 #include "build/build_config.h" |
14 #include "ppapi/c/dev/ppb_truetype_font_dev.h" | 16 #include "ppapi/c/dev/ppb_truetype_font_dev.h" |
15 #include "ppapi/c/pp_bool.h" | 17 #include "ppapi/c/pp_bool.h" |
16 #include "ppapi/c/pp_codecs.h" | 18 #include "ppapi/c/pp_codecs.h" |
17 #include "ppapi/c/pp_instance.h" | 19 #include "ppapi/c/pp_instance.h" |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 #if defined(OS_WIN) | 137 #if defined(OS_WIN) |
136 typedef HANDLE ImageHandle; | 138 typedef HANDLE ImageHandle; |
137 #else | 139 #else |
138 typedef base::SharedMemoryHandle ImageHandle; | 140 typedef base::SharedMemoryHandle ImageHandle; |
139 #endif | 141 #endif |
140 | 142 |
141 } // namespace proxy | 143 } // namespace proxy |
142 } // namespace ppapi | 144 } // namespace ppapi |
143 | 145 |
144 #endif // PPAPI_PROXY_SERIALIZED_STRUCTS_H_ | 146 #endif // PPAPI_PROXY_SERIALIZED_STRUCTS_H_ |
OLD | NEW |