OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2011 The Chromium Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 #include "native_client/src/shared/ppapi_proxy/plugin_ppb_graphics_3d.h" | 7 #include "native_client/src/shared/ppapi_proxy/plugin_ppb_graphics_3d.h" |
8 | 8 |
9 #include "gpu/command_buffer/client/gles2_implementation.h" | 9 #include "gpu/command_buffer/client/gles2_implementation.h" |
10 #include "native_client/src/shared/ppapi_proxy/command_buffer_nacl.h" | 10 #include "native_client/src/shared/ppapi_proxy/command_buffer_nacl.h" |
11 #include "native_client/src/shared/ppapi_proxy/object_serialize.h" | 11 #include "native_client/src/shared/ppapi_proxy/object_serialize.h" |
12 #include "native_client/src/shared/ppapi_proxy/plugin_callback.h" | 12 #include "native_client/src/shared/ppapi_proxy/plugin_callback.h" |
13 #include "native_client/src/shared/ppapi_proxy/plugin_globals.h" | 13 #include "native_client/src/shared/ppapi_proxy/plugin_globals.h" |
14 #include "native_client/src/shared/ppapi_proxy/plugin_instance_data.h" | 14 #include "native_client/src/shared/ppapi_proxy/plugin_instance_data.h" |
15 #include "native_client/src/shared/ppapi_proxy/plugin_ppb_core.h" | 15 #include "native_client/src/shared/ppapi_proxy/plugin_ppb_core.h" |
16 #include "native_client/src/shared/ppapi_proxy/plugin_ppb_var.h" | |
17 #include "native_client/src/shared/ppapi_proxy/utility.h" | 16 #include "native_client/src/shared/ppapi_proxy/utility.h" |
18 #include "native_client/src/shared/srpc/nacl_srpc.h" | 17 #include "native_client/src/shared/srpc/nacl_srpc.h" |
19 #include "ppapi/c/pp_completion_callback.h" | 18 #include "ppapi/c/pp_completion_callback.h" |
20 #include "ppapi/c/pp_errors.h" | 19 #include "ppapi/c/pp_errors.h" |
21 #include "ppapi/c/pp_rect.h" | 20 #include "ppapi/c/pp_rect.h" |
22 #include "ppapi/c/pp_var.h" | 21 #include "ppapi/c/pp_var.h" |
23 #include "srpcgen/ppb_rpc.h" | 22 #include "srpcgen/ppb_rpc.h" |
24 | 23 |
25 namespace ppapi_proxy { | 24 namespace ppapi_proxy { |
26 | 25 |
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
269 &SetAttribs, | 268 &SetAttribs, |
270 &GetError, | 269 &GetError, |
271 &ResizeBuffers, | 270 &ResizeBuffers, |
272 &SwapBuffs, | 271 &SwapBuffs, |
273 }; | 272 }; |
274 return &intf; | 273 return &intf; |
275 } | 274 } |
276 | 275 |
277 } // namespace ppapi_proxy | 276 } // namespace ppapi_proxy |
278 | 277 |
OLD | NEW |