| 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 */ | |
| 5 | 4 |
| 6 //----------------------------------------------------------------------------- | 5 //----------------------------------------------------------------------------- |
| 7 // The spinning Cube | 6 // The spinning Cube |
| 8 //----------------------------------------------------------------------------- | 7 //----------------------------------------------------------------------------- |
| 9 | 8 |
| 10 #define _USE_MATH_DEFINES 1 | 9 #define _USE_MATH_DEFINES 1 |
| 11 #include <limits.h> | 10 #include <limits.h> |
| 12 #include <math.h> | 11 #include <math.h> |
| 13 #include <stdarg.h> | 12 #include <stdarg.h> |
| 14 #include <stddef.h> | 13 #include <stddef.h> |
| (...skipping 593 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 608 }; | 607 }; |
| 609 return &instance_interface; | 608 return &instance_interface; |
| 610 } | 609 } |
| 611 return NULL; | 610 return NULL; |
| 612 } | 611 } |
| 613 | 612 |
| 614 /** | 613 /** |
| 615 * Called before the plugin module is unloaded. | 614 * Called before the plugin module is unloaded. |
| 616 */ | 615 */ |
| 617 PP_EXPORT void PPP_ShutdownModule() {} | 616 PP_EXPORT void PPP_ShutdownModule() {} |
| OLD | NEW |