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

Unified Diff: media/base/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/base/demuxer.h ('k') | media/base/demuxer_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/demuxer_factory.h
diff --git a/media/base/demuxer_factory.h b/media/base/demuxer_factory.h
deleted file mode 100644
index 6a13356542c947fbc3ff7c40b3e0f7ada0d7cce8..0000000000000000000000000000000000000000
--- a/media/base/demuxer_factory.h
+++ /dev/null
@@ -1,32 +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_BASE_DEMUXER_FACTORY_H_
-#define MEDIA_BASE_DEMUXER_FACTORY_H_
-
-#include <string>
-
-#include "base/callback.h"
-#include "media/base/media_export.h"
-#include "media/base/pipeline_status.h"
-
-namespace media {
-
-class Demuxer;
-
-// Asynchronous factory interface for building Demuxer objects.
-class MEDIA_EXPORT DemuxerFactory {
- public:
- // Ownership of the Demuxer is transferred through this callback.
- typedef base::Callback<void(PipelineStatus, Demuxer*)> BuildCallback;
-
- virtual ~DemuxerFactory();
-
- // Builds a Demuxer for |url| and returns it via |callback|.
- virtual void Build(const std::string& url, const BuildCallback& callback) = 0;
-};
-
-} // namespace media
-
-#endif // MEDIA_BASE_DEMUXER_FACTORY_H_
« no previous file with comments | « media/base/demuxer.h ('k') | media/base/demuxer_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698