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

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: responses to 2nd CR 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
« no previous file with comments | « media/base/filter_factories.h ('k') | media/base/mock_callback.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/filter_host.h
diff --git a/media/base/filter_host.h b/media/base/filter_host.h
index 377cb97d018e7050186a096d5dd50beb398c0319..4bdad9f330560e213dec85d2cb3f8e38309e0982 100644
--- a/media/base/filter_host.h
+++ b/media/base/filter_host.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 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.
@@ -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;
« no previous file with comments | « media/base/filter_factories.h ('k') | media/base/mock_callback.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698