| 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 <stddef.h> |
| 6 #include <stdint.h> |
| 5 #include <stdlib.h> | 7 #include <stdlib.h> |
| 6 #include <string.h> | 8 #include <string.h> |
| 7 | 9 |
| 8 #include <map> | 10 #include <map> |
| 9 #include <vector> | 11 #include <vector> |
| 10 | 12 |
| 11 #include "ppapi/c/dev/ppb_video_capture_dev.h" | 13 #include "ppapi/c/dev/ppb_video_capture_dev.h" |
| 12 #include "ppapi/c/pp_errors.h" | 14 #include "ppapi/c/pp_errors.h" |
| 13 #include "ppapi/c/ppb_opengles2.h" | 15 #include "ppapi/c/ppb_opengles2.h" |
| 16 #include "ppapi/cpp/completion_callback.h" |
| 14 #include "ppapi/cpp/dev/buffer_dev.h" | 17 #include "ppapi/cpp/dev/buffer_dev.h" |
| 15 #include "ppapi/cpp/dev/device_ref_dev.h" | 18 #include "ppapi/cpp/dev/device_ref_dev.h" |
| 19 #include "ppapi/cpp/dev/video_capture_client_dev.h" |
| 16 #include "ppapi/cpp/dev/video_capture_dev.h" | 20 #include "ppapi/cpp/dev/video_capture_dev.h" |
| 17 #include "ppapi/cpp/dev/video_capture_client_dev.h" | 21 #include "ppapi/cpp/graphics_3d.h" |
| 18 #include "ppapi/cpp/completion_callback.h" | |
| 19 #include "ppapi/cpp/graphics_3d_client.h" | 22 #include "ppapi/cpp/graphics_3d_client.h" |
| 20 #include "ppapi/cpp/graphics_3d.h" | |
| 21 #include "ppapi/cpp/instance.h" | 23 #include "ppapi/cpp/instance.h" |
| 22 #include "ppapi/cpp/module.h" | 24 #include "ppapi/cpp/module.h" |
| 23 #include "ppapi/cpp/rect.h" | 25 #include "ppapi/cpp/rect.h" |
| 24 #include "ppapi/cpp/var.h" | 26 #include "ppapi/cpp/var.h" |
| 25 #include "ppapi/lib/gl/include/GLES2/gl2.h" | 27 #include "ppapi/lib/gl/include/GLES2/gl2.h" |
| 26 #include "ppapi/utility/completion_callback_factory.h" | 28 #include "ppapi/utility/completion_callback_factory.h" |
| 27 | 29 |
| 28 // When compiling natively on Windows, PostMessage can be #define-d to | 30 // When compiling natively on Windows, PostMessage can be #define-d to |
| 29 // something else. | 31 // something else. |
| 30 #ifdef PostMessage | 32 #ifdef PostMessage |
| (...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 495 } | 497 } |
| 496 | 498 |
| 497 } // anonymous namespace | 499 } // anonymous namespace |
| 498 | 500 |
| 499 namespace pp { | 501 namespace pp { |
| 500 // Factory function for your specialization of the Module object. | 502 // Factory function for your specialization of the Module object. |
| 501 Module* CreateModule() { | 503 Module* CreateModule() { |
| 502 return new VCDemoModule(); | 504 return new VCDemoModule(); |
| 503 } | 505 } |
| 504 } // namespace pp | 506 } // namespace pp |
| OLD | NEW |