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 #include "ppapi/proxy/ppb_testing_proxy.h" | 5 #include "ppapi/proxy/ppb_testing_proxy.h" |
6 | 6 |
| 7 #include <stddef.h> |
| 8 |
7 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
8 #include "ppapi/c/private/ppb_testing_private.h" | 10 #include "ppapi/c/private/ppb_testing_private.h" |
9 #include "ppapi/proxy/enter_proxy.h" | 11 #include "ppapi/proxy/enter_proxy.h" |
10 #include "ppapi/proxy/plugin_dispatcher.h" | 12 #include "ppapi/proxy/plugin_dispatcher.h" |
11 #include "ppapi/proxy/ppapi_messages.h" | 13 #include "ppapi/proxy/ppapi_messages.h" |
12 #include "ppapi/shared_impl/ppapi_globals.h" | 14 #include "ppapi/shared_impl/ppapi_globals.h" |
13 #include "ppapi/shared_impl/proxy_lock.h" | 15 #include "ppapi/shared_impl/proxy_lock.h" |
14 #include "ppapi/shared_impl/resource.h" | 16 #include "ppapi/shared_impl/resource.h" |
15 #include "ppapi/shared_impl/resource_tracker.h" | 17 #include "ppapi/shared_impl/resource_tracker.h" |
16 #include "ppapi/thunk/enter.h" | 18 #include "ppapi/thunk/enter.h" |
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
251 input_event_impl->pp_resource()); | 253 input_event_impl->pp_resource()); |
252 } | 254 } |
253 | 255 |
254 void PPB_Testing_Proxy::OnMsgSetMinimumArrayBufferSizeForShmem( | 256 void PPB_Testing_Proxy::OnMsgSetMinimumArrayBufferSizeForShmem( |
255 uint32_t threshold) { | 257 uint32_t threshold) { |
256 RawVarDataGraph::SetMinimumArrayBufferSizeForShmemForTest(threshold); | 258 RawVarDataGraph::SetMinimumArrayBufferSizeForShmemForTest(threshold); |
257 } | 259 } |
258 | 260 |
259 } // namespace proxy | 261 } // namespace proxy |
260 } // namespace ppapi | 262 } // namespace ppapi |
OLD | NEW |