diff options
author | nfullagar@google.com <nfullagar@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-14 19:48:01 +0000 |
---|---|---|
committer | nfullagar@google.com <nfullagar@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-14 19:48:01 +0000 |
commit | 981268b70dab10093c3ca08fabe1d2ecb56744cc (patch) | |
tree | acc3dea39c284e7871635fbb5a9bb66a23279cac /third_party/npapi | |
parent | 8687ee1cccd767f8a7309f0e39e2ee33cd8dea8c (diff) | |
download | chromium_src-981268b70dab10093c3ca08fabe1d2ecb56744cc.zip chromium_src-981268b70dab10093c3ca08fabe1d2ecb56744cc.tar.gz chromium_src-981268b70dab10093c3ca08fabe1d2ecb56744cc.tar.bz2 |
Remove trailing comma to make enum compile for native client
Review URL: http://codereview.chromium.org/1551030
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@44518 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/npapi')
-rw-r--r-- | third_party/npapi/bindings/npapi_extensions.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/npapi/bindings/npapi_extensions.h b/third_party/npapi/bindings/npapi_extensions.h index f8c05f4..ba231dc 100644 --- a/third_party/npapi/bindings/npapi_extensions.h +++ b/third_party/npapi/bindings/npapi_extensions.h @@ -242,7 +242,7 @@ typedef void (*NPSelectedFindResultChangedPtr)( typedef enum { NPChooseFile_Open = 1, NPChooseFile_OpenMultiple = 2, - NPChooseFile_Save = 3, + NPChooseFile_Save = 3 } NPChooseFileMode; typedef void (*NPChooseFileCallback)(const char** filePaths, uint32 pathCount, |