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

Unified Diff: media/filters/chunk_demuxer_factory.h

Issue 9860027: Remove DemuxerFactory and URL parameter from Pipeline. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src
Patch Set: again Created 8 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
« no previous file with comments | « media/filters/chunk_demuxer.cc ('k') | media/filters/chunk_demuxer_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/chunk_demuxer_factory.h
diff --git a/media/filters/chunk_demuxer_factory.h b/media/filters/chunk_demuxer_factory.h
deleted file mode 100644
index 9e34a1245aa6e985fbfde35b551ca2c95e2ac625..0000000000000000000000000000000000000000
--- a/media/filters/chunk_demuxer_factory.h
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef MEDIA_FILTERS_CHUNK_DEMUXER_FACTORY_H_
-#define MEDIA_FILTERS_CHUNK_DEMUXER_FACTORY_H_
-
-#include <string>
-
-#include "base/memory/scoped_ptr.h"
-#include "media/base/demuxer_factory.h"
-
-namespace media {
-
-class ChunkDemuxer;
-class ChunkDemuxerClient;
-
-// Factory for building ChunkDemuxers. The factory will only build a
-// ChunkDemuxer with the given client.
-class MEDIA_EXPORT ChunkDemuxerFactory : public DemuxerFactory {
- public:
- ChunkDemuxerFactory(ChunkDemuxerClient* client);
- virtual ~ChunkDemuxerFactory();
-
- // DemuxerFactory methods.
- virtual void Build(const std::string& url, const BuildCallback& cb) OVERRIDE;
-
- private:
- ChunkDemuxerClient* client_;
-
- DISALLOW_IMPLICIT_CONSTRUCTORS(ChunkDemuxerFactory);
-};
-
-} // namespace media
-
-#endif // MEDIA_FILTERS_CHUNK_DEMUXER_FACTORY_H_
« no previous file with comments | « media/filters/chunk_demuxer.cc ('k') | media/filters/chunk_demuxer_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698