Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1005)

Unified Diff: third_party/npapi/bindings/npapi.h

Issue 1007443004: Plugin Power Saver: Replace all "plug-in" with "plugin" for consistency. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove terms and native_client_sdk changes. Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/libusb/src/libusb/os/darwin_usb.c ('k') | third_party/npapi/bindings/npfunctions.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/npapi/bindings/npapi.h
diff --git a/third_party/npapi/bindings/npapi.h b/third_party/npapi/bindings/npapi.h
index aec11da23ed314d5c45f8b5ba92719fce2113f44..8d424507da8cf0d718858863e97959831eeffc1a 100644
--- a/third_party/npapi/bindings/npapi.h
+++ b/third_party/npapi/bindings/npapi.h
@@ -197,11 +197,11 @@ typedef char* NPMIMEType;
#endif /* __LP64__ */
/*
- * NPP is a plug-in's opaque instance handle
+ * NPP is a plugin's opaque instance handle
*/
typedef struct _NPP
{
- void* pdata; /* plug-in private data */
+ void* pdata; /* plugin private data */
void* ndata; /* netscape private data */
} NPP_t;
@@ -209,7 +209,7 @@ typedef NPP_t* NPP;
typedef struct _NPStream
{
- void* pdata; /* plug-in private data */
+ void* pdata; /* plugin private data */
void* ndata; /* netscape private data */
const char* url;
uint32_t end;
@@ -387,7 +387,7 @@ typedef enum {
/* Browsers can retrieve a native ATK accessibility plug ID via this variable. */
NPPVpluginNativeAccessibleAtkPlugId = 19,
- /* Checks to see if the plug-in would like the browser to load the "src" attribute. */
+ /* Checks to see if the plugin would like the browser to load the "src" attribute. */
NPPVpluginCancelSrcStream = 20,
NPPVsupportsAdvancedKeyHandling = 21,
@@ -399,7 +399,7 @@ typedef enum {
, NPPVpluginDrawingModel = 1000
/* Used for negotiating event models */
, NPPVpluginEventModel = 1001
- /* In the NPDrawingModelCoreAnimation drawing model, the browser asks the plug-in for a Core Animation layer. */
+ /* In the NPDrawingModelCoreAnimation drawing model, the browser asks the plugin for a Core Animation layer. */
, NPPVpluginCoreAnimationLayer = 1003
#endif
« no previous file with comments | « third_party/libusb/src/libusb/os/darwin_usb.c ('k') | third_party/npapi/bindings/npfunctions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698