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

Unified Diff: media/base/filter_host.h

Issue 6686061: PipelineError is dead. Long live PipelineStatus! (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Double-delete fix for PipelineStatusNotification Created 9 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
Index: media/base/filter_host.h
diff --git a/media/base/filter_host.h b/media/base/filter_host.h
index 377cb97d018e7050186a096d5dd50beb398c0319..c3f31acb546aa43edde24665f603d1b6c1697af9 100644
--- a/media/base/filter_host.h
+++ b/media/base/filter_host.h
@@ -7,7 +7,7 @@
// reference as part of initialization.
//
// This interface is intentionally verbose to cover the needs for the different
-// types of filters (see media/base/filters.h for filter definitionss). Filters
+// types of filters (see media/base/filters.h for filter definitions). Filters
// typically use parts of the interface that are relevant to their function.
// For example, an audio renderer filter typically calls SetTime as it feeds
// data to the audio hardware. A video renderer filter typically calls GetTime
@@ -26,7 +26,7 @@ class FilterHost {
public:
// Stops execution of the pipeline due to a fatal error. Do not call this
// method with PIPELINE_OK.
- virtual void SetError(PipelineError error) = 0;
+ virtual void SetError(PipelineStatus error) = 0;
// Gets the current time in microseconds.
virtual base::TimeDelta GetTime() const = 0;

Powered by Google App Engine
This is Rietveld 408576698