| OLD | NEW |
| 1 /* Copyright (c) 2006-2009 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 | 5 |
| 6 #ifndef _NP_EXTENSIONS_H_ | 6 #ifndef _NP_EXTENSIONS_H_ |
| 7 #define _NP_EXTENSIONS_H_ | 7 #define _NP_EXTENSIONS_H_ |
| 8 | 8 |
| 9 // Use the shorter include path here so that this file can be used in non- | 9 // Use the shorter include path here so that this file can be used in non- |
| 10 // Chromium projects, such as the Native Client SDK. | 10 // Chromium projects, such as the Native Client SDK. |
| 11 #include "npapi.h" | 11 #include "npapi.h" |
| (...skipping 1058 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1070 | 1070 |
| 1071 typedef struct _NPPExtensions { | 1071 typedef struct _NPPExtensions { |
| 1072 NPPGetPrintExtensionsPtr getPrintExtensions; | 1072 NPPGetPrintExtensionsPtr getPrintExtensions; |
| 1073 NPPGetFindExtensionsPtr getFindExtensions; | 1073 NPPGetFindExtensionsPtr getFindExtensions; |
| 1074 NPPZoomPtr zoom; | 1074 NPPZoomPtr zoom; |
| 1075 NPPWidgetPropertyChangedPtr widgetPropertyChanged; | 1075 NPPWidgetPropertyChangedPtr widgetPropertyChanged; |
| 1076 NPPGetSelectionPtr getSelection; | 1076 NPPGetSelectionPtr getSelection; |
| 1077 } NPPExtensions; | 1077 } NPPExtensions; |
| 1078 | 1078 |
| 1079 #endif /* _NP_EXTENSIONS_H_ */ | 1079 #endif /* _NP_EXTENSIONS_H_ */ |
| OLD | NEW |