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

Unified Diff: media/base/video_frame.cc

Issue 5574006: Start deinlining non-empty virtual methods. (This will be automatically checked (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years 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: media/base/video_frame.cc
diff --git a/media/base/video_frame.cc b/media/base/video_frame.cc
index 332c3c5d3995581e10d0c5449afeb53c4842b623..5fce79dd5bdf3ea550c4e8287acbd7d6fe3067d6 100644
--- a/media/base/video_frame.cc
+++ b/media/base/video_frame.cc
@@ -166,6 +166,10 @@ void VideoFrame::CreateBlackFrame(int width, int height,
*frame_out = frame;
}
+VideoFrame::SurfaceType VideoFrame::type() const {
+ return type_;
+}
+
static inline size_t RoundUp(size_t value, size_t alignment) {
// Check that |alignment| is a power of 2.
DCHECK((alignment + (alignment - 1)) == (alignment | (alignment - 1)));

Powered by Google App Engine
This is Rietveld 408576698