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

Side by Side Diff: media/base/filters.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: Remove virtual from VideoFrame::type() 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « media/base/filters.h ('k') | media/base/video_frame.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "media/base/filters.h" 5 #include "media/base/filters.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/message_loop.h" 8 #include "base/message_loop.h"
9 9
10 namespace media { 10 namespace media {
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 } 126 }
127 127
128 const char* VideoDecoder::message_loop_name() const { 128 const char* VideoDecoder::message_loop_name() const {
129 return "VideoDecoderThread"; 129 return "VideoDecoderThread";
130 } 130 }
131 131
132 const char* VideoRenderer::major_mime_type() const { 132 const char* VideoRenderer::major_mime_type() const {
133 return mime_type::kMajorTypeVideo; 133 return mime_type::kMajorTypeVideo;
134 } 134 }
135 135
136 void* DemuxerStream::QueryInterface(const char* interface_id) {
137 return NULL;
138 }
139
136 DemuxerStream::~DemuxerStream() {} 140 DemuxerStream::~DemuxerStream() {}
137 141
138 VideoDecoder::VideoDecoder() {} 142 VideoDecoder::VideoDecoder() {}
139 143
140 VideoDecoder::~VideoDecoder() {} 144 VideoDecoder::~VideoDecoder() {}
141 145
142 AudioDecoder::AudioDecoder() {} 146 AudioDecoder::AudioDecoder() {}
143 147
144 AudioDecoder::~AudioDecoder() {} 148 AudioDecoder::~AudioDecoder() {}
145 149
146 } // namespace media 150 } // namespace media
OLDNEW
« no previous file with comments | « media/base/filters.h ('k') | media/base/video_frame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698