summaryrefslogtreecommitdiffstats
path: root/media/base/filters.h
diff options
context:
space:
mode:
Diffstat (limited to 'media/base/filters.h')
-rw-r--r--media/base/filters.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/media/base/filters.h b/media/base/filters.h
index 3ade294..a98cd2d 100644
--- a/media/base/filters.h
+++ b/media/base/filters.h
@@ -167,7 +167,7 @@ class DemuxerStream : public base::RefCountedThreadSafe<DemuxerStream> {
// the class returns an interface pointer and assigns the pointer to
// |interface_out|. Otherwise this method returns false.
template <class Interface>
- bool QueryInterface(scoped_refptr<Interface>* interface_out) {
+ bool QueryInterface(Interface** interface_out) {
void* i = QueryInterface(Interface::interface_id());
*interface_out = reinterpret_cast<Interface*>(i);
return (NULL != i);