OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include "ppapi/proxy/nacl_message_scanner.h" | 5 #include "ppapi/proxy/nacl_message_scanner.h" |
6 | 6 |
| 7 #include <stddef.h> |
| 8 |
7 #include <utility> | 9 #include <utility> |
8 #include <vector> | 10 #include <vector> |
9 | 11 |
10 #include "base/bind.h" | 12 #include "base/bind.h" |
| 13 #include "build/build_config.h" |
11 #include "ipc/ipc_message.h" | 14 #include "ipc/ipc_message.h" |
12 #include "ipc/ipc_message_macros.h" | 15 #include "ipc/ipc_message_macros.h" |
13 #include "ppapi/proxy/ppapi_messages.h" | 16 #include "ppapi/proxy/ppapi_messages.h" |
14 #include "ppapi/proxy/resource_message_params.h" | 17 #include "ppapi/proxy/resource_message_params.h" |
15 #include "ppapi/proxy/serialized_handle.h" | 18 #include "ppapi/proxy/serialized_handle.h" |
16 #include "ppapi/proxy/serialized_var.h" | 19 #include "ppapi/proxy/serialized_var.h" |
17 | 20 |
18 class NaClDescImcShm; | 21 class NaClDescImcShm; |
19 | 22 |
20 namespace IPC { | 23 namespace IPC { |
(...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
521 fio_it->second->SetMaxWrittenOffset(offset_it->second); | 524 fio_it->second->SetMaxWrittenOffset(offset_it->second); |
522 } | 525 } |
523 } | 526 } |
524 break; | 527 break; |
525 } | 528 } |
526 } | 529 } |
527 } | 530 } |
528 | 531 |
529 } // namespace proxy | 532 } // namespace proxy |
530 } // namespace ppapi | 533 } // namespace ppapi |
OLD | NEW |