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

Unified Diff: ui/gfx/video_decode_acceleration_support_mac.h

Issue 10388108: Implement media::VideoDecodeAccelerator on Mac (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address review comments Created 8 years, 7 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
Index: ui/gfx/video_decode_acceleration_support_mac.h
diff --git a/ui/gfx/video_decode_acceleration_support_mac.h b/ui/gfx/video_decode_acceleration_support_mac.h
index e52b715f58cc4e52f783759151108d7c657a977a..d0c5f71376b9080ebad8598579016eecd8c8c497 100644
--- a/ui/gfx/video_decode_acceleration_support_mac.h
+++ b/ui/gfx/video_decode_acceleration_support_mac.h
@@ -38,10 +38,10 @@ class UI_EXPORT VideoDecodeAccelerationSupport :
public base::RefCountedThreadSafe<VideoDecodeAccelerationSupport> {
public:
enum Status {
- VDA_SUCCESS = 0,
- VDA_LOAD_FRAMEWORK_ERROR,
- VDA_HARDWARE_NOT_SUPPORTED_ERROR,
- VDA_OTHER_ERROR,
+ SUCCESS = 0,
+ LOAD_FRAMEWORK_ERROR,
+ HARDWARE_NOT_SUPPORTED_ERROR,
+ OTHER_ERROR,
};
typedef base::Callback<void(CVImageBufferRef, int status)> FrameReadyCallback;

Powered by Google App Engine
This is Rietveld 408576698