| 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 <cmath> | 5 #include <cmath> |
| 6 #include <stdarg.h> | 6 #include <stdarg.h> |
| 7 #include <stdio.h> | 7 #include <stdio.h> |
| 8 | 8 |
| 9 #include "ppapi/c/dev/ppb_console_dev.h" | |
| 10 #include "ppapi/c/ppb_gamepad.h" | 9 #include "ppapi/c/ppb_gamepad.h" |
| 11 #include "ppapi/c/ppb_input_event.h" | 10 #include "ppapi/c/ppb_input_event.h" |
| 12 #include "ppapi/cpp/completion_callback.h" | 11 #include "ppapi/cpp/completion_callback.h" |
| 13 #include "ppapi/cpp/graphics_2d.h" | 12 #include "ppapi/cpp/graphics_2d.h" |
| 14 #include "ppapi/cpp/image_data.h" | 13 #include "ppapi/cpp/image_data.h" |
| 15 #include "ppapi/cpp/input_event.h" | 14 #include "ppapi/cpp/input_event.h" |
| 16 #include "ppapi/cpp/instance.h" | 15 #include "ppapi/cpp/instance.h" |
| 17 #include "ppapi/cpp/logging.h" | 16 #include "ppapi/cpp/logging.h" |
| 18 #include "ppapi/cpp/module.h" | 17 #include "ppapi/cpp/module.h" |
| 19 #include "ppapi/cpp/rect.h" | 18 #include "ppapi/cpp/rect.h" |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 | 140 |
| 142 namespace pp { | 141 namespace pp { |
| 143 | 142 |
| 144 // Factory function for your specialization of the Module object. | 143 // Factory function for your specialization of the Module object. |
| 145 Module* CreateModule() { | 144 Module* CreateModule() { |
| 146 return new MyModule(); | 145 return new MyModule(); |
| 147 } | 146 } |
| 148 | 147 |
| 149 } // namespace pp | 148 } // namespace pp |
| 150 | 149 |
| OLD | NEW |