| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 <stdint.h> |
| 5 #include <string.h> | 6 #include <string.h> |
| 6 | 7 |
| 7 #include "native_client/src/include/nacl_macros.h" | 8 #include "native_client/src/include/nacl_macros.h" |
| 8 #include "native_client/src/shared/platform/nacl_check.h" | 9 #include "native_client/src/shared/platform/nacl_check.h" |
| 9 | 10 |
| 10 #include "ppapi/c/pp_bool.h" | 11 #include "ppapi/c/pp_bool.h" |
| 11 #include "ppapi/c/pp_errors.h" | 12 #include "ppapi/c/pp_errors.h" |
| 12 #include "ppapi/c/pp_input_event.h" | 13 #include "ppapi/c/pp_input_event.h" |
| 13 #include "ppapi/c/ppb_instance.h" | 14 #include "ppapi/c/ppb_instance.h" |
| 14 #include "ppapi/c/ppb_url_loader.h" | 15 #include "ppapi/c/ppb_url_loader.h" |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 | 136 |
| 136 | 137 |
| 137 void SetupTests() { | 138 void SetupTests() { |
| 138 RegisterTest("TestHandleDocumentLoad", TestHandleDocumentLoad); | 139 RegisterTest("TestHandleDocumentLoad", TestHandleDocumentLoad); |
| 139 RegisterTest("TestIsFullFrame", TestIsFullFrame); | 140 RegisterTest("TestIsFullFrame", TestIsFullFrame); |
| 140 } | 141 } |
| 141 | 142 |
| 142 void SetupPluginInterfaces() { | 143 void SetupPluginInterfaces() { |
| 143 RegisterPluginInterface(PPP_INSTANCE_INTERFACE, &ppp_instance_interface); | 144 RegisterPluginInterface(PPP_INSTANCE_INTERFACE, &ppp_instance_interface); |
| 144 } | 145 } |
| OLD | NEW |