diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-02 00:06:27 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-02 00:06:27 +0000 |
commit | 74a60d259608b4f85333025f92c33cd51c0037a9 (patch) | |
tree | 6aef45c718bd4a32c2b8df9e1c095734f3649f0d /media | |
parent | a848d1ddc4ea8656e3a6944bc36db61cce6ac561 (diff) | |
download | chromium_src-74a60d259608b4f85333025f92c33cd51c0037a9.zip chromium_src-74a60d259608b4f85333025f92c33cd51c0037a9.tar.gz chromium_src-74a60d259608b4f85333025f92c33cd51c0037a9.tar.bz2 |
media: No need to tag enum types with MEDIA_EXPORT in header files.
R=fischman@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10454098
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@140131 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media')
-rw-r--r-- | media/base/video_decoder_config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/media/base/video_decoder_config.h b/media/base/video_decoder_config.h index 3d4d98c..d0e15a2 100644 --- a/media/base/video_decoder_config.h +++ b/media/base/video_decoder_config.h @@ -14,7 +14,7 @@ namespace media { -enum MEDIA_EXPORT VideoCodec { +enum VideoCodec { // These values are histogrammed over time; do not change their ordinal // values. When deleting a codec replace it with a dummy value; when adding a // codec, do so at the bottom (and update kVideoCodecMax). @@ -35,7 +35,7 @@ enum MEDIA_EXPORT VideoCodec { // Video stream profile. This *must* match PP_VideoDecoder_Profile. // (enforced in webkit/plugins/ppapi/ppb_video_decoder_impl.cc) -enum MEDIA_EXPORT VideoCodecProfile { +enum VideoCodecProfile { // Keep the values in this enum unique, as they imply format (h.264 vs. VP8, // for example), and keep the values for a particular format grouped // together for clarity. |