| 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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 &SetAttribs, | 271 &SetAttribs, |
| 273 &GetError, | 272 &GetError, |
| 274 &ResizeBuffers, | 273 &ResizeBuffers, |
| 275 &SwapBuffs, | 274 &SwapBuffs, |
| 276 }; | 275 }; |
| 277 return &intf; | 276 return &intf; |
| 278 } | 277 } |
| 279 | 278 |
| 280 } // namespace ppapi_proxy | 279 } // namespace ppapi_proxy |
| 281 | 280 |
| OLD | NEW |