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

Unified Diff: media/base/mac/corevideo_glue.h

Issue 2529493002: mac: Remove more media/base/mac glue unneeded now that we target 10.9 (Closed)
Patch Set: . Created 4 years, 1 month 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 | « media/base/mac/coremedia_glue.mm ('k') | media/base/mac/video_frame_mac.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/mac/corevideo_glue.h
diff --git a/media/base/mac/corevideo_glue.h b/media/base/mac/corevideo_glue.h
deleted file mode 100644
index 302953de2166424759737b55f36ecd8a8b034b50..0000000000000000000000000000000000000000
--- a/media/base/mac/corevideo_glue.h
+++ /dev/null
@@ -1,33 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef MEDIA_BASE_MAC_COREVIDEO_GLUE_H_
-#define MEDIA_BASE_MAC_COREVIDEO_GLUE_H_
-
-#include "base/macros.h"
-#include "media/base/media_export.h"
-
-// Although CoreVideo exists in 10.6, not all of its types and functions were
-// introduced in that release. Clients can use this class to access types,
-// constants and functions not available in 10.6.
-class MEDIA_EXPORT CoreVideoGlue {
- public:
- // Originally from CVPixelBuffer.h
- enum {
- kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange = '420v',
- };
- typedef struct CVPlanarPixelBufferInfo_YCbCrPlanar
- CVPlanarPixelBufferInfo_YCbCrPlanar;
- struct CVPlanarPixelBufferInfo_YCbCrBiPlanar {
- CVPlanarComponentInfo componentInfoY;
- CVPlanarComponentInfo componentInfoCbCr;
- };
- typedef struct CVPlanarPixelBufferInfo_YCbCrBiPlanar
- CVPlanarPixelBufferInfo_YCbCrBiPlanar;
-
- private:
- DISALLOW_IMPLICIT_CONSTRUCTORS(CoreVideoGlue);
-};
-
-#endif // MEDIA_BASE_MAC_COREVIDEO_GLUE_H_
« no previous file with comments | « media/base/mac/coremedia_glue.mm ('k') | media/base/mac/video_frame_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698