diff options
author | nfullagar@google.com <nfullagar@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-14 20:00:59 +0000 |
---|---|---|
committer | nfullagar@google.com <nfullagar@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-14 20:00:59 +0000 |
commit | 87f6f61cb49abfa1363fbe7c5ab406e1cf27c2f2 (patch) | |
tree | 1640baf94ed02f515e752365564fa23f30275926 /third_party | |
parent | 71675dc7c08391291930adf99d27423ca1ffeb2b (diff) | |
download | chromium_src-87f6f61cb49abfa1363fbe7c5ab406e1cf27c2f2.zip chromium_src-87f6f61cb49abfa1363fbe7c5ab406e1cf27c2f2.tar.gz chromium_src-87f6f61cb49abfa1363fbe7c5ab406e1cf27c2f2.tar.bz2 |
remove last comma from enum lists (required to build on NaCl with stricter compiler)
Review URL: http://codereview.chromium.org/2090005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47302 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/npapi/bindings/npapi_extensions.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/third_party/npapi/bindings/npapi_extensions.h b/third_party/npapi/bindings/npapi_extensions.h index cbdd855..28edbe9 100644 --- a/third_party/npapi/bindings/npapi_extensions.h +++ b/third_party/npapi/bindings/npapi_extensions.h @@ -375,7 +375,7 @@ enum { /* Error status of context. Non-zero means error. Shared by all devices, */ /* though error values are device specific. */ - NPAttrib_Error = 0x80000000, + NPAttrib_Error = 0x80000000 }; /* generic device interface */ @@ -431,7 +431,7 @@ typedef void (*NPSelectedFindResultChangedPtr)( typedef int32 NPWidgetID; typedef enum { - NPWidgetTypeScrollbar = 0, + NPWidgetTypeScrollbar = 0 } NPWidgetType; typedef struct _NPScrollbarCreateParams { @@ -466,7 +466,7 @@ typedef enum { // Set only. variable is bool* (true for forward, false for backward). NPWidgetPropertyScrollbarScrollByDocument = 8, // Set only. variable is int32* (positive forward, negative backward). - NPWidgetPropertyScrollbarScrollByPixels = 9, + NPWidgetPropertyScrollbarScrollByPixels = 9 } NPWidgetProperty; // Creates a widget. If it returns NPERR_NO_ERROR then id will contain a unique @@ -709,7 +709,7 @@ enum { NP3DAttrib_GetOffset, /* Last processed token. Out only. */ - NP3DAttrib_Token, + NP3DAttrib_Token }; /* 3D callbacks */ @@ -735,7 +735,7 @@ enum { /* Values for NPConfig3DInAttrib_MultisampleResolve */ enum { NP3DMultisampleResolve_Default = 0x309A, - NP3DMultisampleResolve_Box = 0x309B, + NP3DMultisampleResolve_Box = 0x309B }; /* End 3D specific API */ |