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

Unified Diff: media/base/video_frame.cc

Issue 1030253002: Fix missing symbols for pre-linking of the Cast sender library for iOS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add native_library_ios.mm to base/BUILD.gn. Created 5 years, 9 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
« base/native_library_ios.mm ('K') | « media/base/video_frame.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/video_frame.cc
diff --git a/media/base/video_frame.cc b/media/base/video_frame.cc
index c837159958739edb5d4d3708d1dab8af0bc45562..ceb3858f2fbe7a1e41a7a6c1833d432176a13027 100644
--- a/media/base/video_frame.cc
+++ b/media/base/video_frame.cc
@@ -478,6 +478,7 @@ scoped_refptr<VideoFrame> VideoFrame::CreateEOSFrame() {
true);
}
+#if !defined(MEDIA_FOR_CAST_IOS)
// static
scoped_refptr<VideoFrame> VideoFrame::CreateColorFrame(
miu 2015/03/27 21:26:26 I don't understand: Why can't these be compiled in
jfroy 2015/03/27 21:33:25 FillYUV is defined in yuv_convert.cc, which will s
const gfx::Size& size,
@@ -509,6 +510,7 @@ scoped_refptr<VideoFrame> VideoFrame::CreateTransparentFrame(
FillYUVA(frame.get(), kBlackY, kBlackUV, kBlackUV, kTransparentA);
return frame;
}
+#endif // defined(MEDIA_FOR_CAST_IOS)
#if defined(VIDEO_HOLE)
// This block and other blocks wrapped around #if defined(VIDEO_HOLE) is not
« base/native_library_ios.mm ('K') | « media/base/video_frame.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698