OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #ifndef CHROME_FRAME_CHROME_FRAME_NPAPI_ENTRYPOINTS_H_ | 5 #ifndef CHROME_FRAME_CHROME_FRAME_NPAPI_ENTRYPOINTS_H_ |
6 #define CHROME_FRAME_CHROME_FRAME_NPAPI_ENTRYPOINTS_H_ | 6 #define CHROME_FRAME_CHROME_FRAME_NPAPI_ENTRYPOINTS_H_ |
7 | 7 |
8 #include "chrome_frame/np_browser_functions.h" | 8 #include "chrome_frame/np_browser_functions.h" |
9 | 9 |
10 namespace chrome_frame { | 10 namespace chrome_frame { |
(...skipping 15 matching lines...) Expand all Loading... |
26 NPError NPP_SetValue(NPP instance, NPNVariable variable, void* value); | 26 NPError NPP_SetValue(NPP instance, NPNVariable variable, void* value); |
27 | 27 |
28 int32 NPP_WriteReady(NPP instance, NPStream* stream); | 28 int32 NPP_WriteReady(NPP instance, NPStream* stream); |
29 | 29 |
30 int32 NPP_Write(NPP instance, NPStream* stream, int32 offset, int32 len, | 30 int32 NPP_Write(NPP instance, NPStream* stream, int32 offset, int32 len, |
31 void* buffer); | 31 void* buffer); |
32 void NPP_URLNotify(NPP instance, const char* url, NPReason reason, | 32 void NPP_URLNotify(NPP instance, const char* url, NPReason reason, |
33 void* notifyData); | 33 void* notifyData); |
34 | 34 |
35 void NPP_Print(NPP instance, NPPrint* print_info); | 35 void NPP_Print(NPP instance, NPPrint* print_info); |
36 | 36 void NPP_URLRedirectNotify(NPP instance, const char* url, int status, |
| 37 void* notify_data); |
37 } // namespace chrome_frame | 38 } // namespace chrome_frame |
38 | 39 |
39 #endif // CHROME_FRAME_CHROME_FRAME_NPAPI_ENTRYPOINTS_H_ | 40 #endif // CHROME_FRAME_CHROME_FRAME_NPAPI_ENTRYPOINTS_H_ |
OLD | NEW |