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

Unified Diff: media/base/media_log.cc

Issue 10828045: Rewrite media::Pipeline state transition machinery. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src
Patch Set: stuff Created 8 years, 5 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 | « no previous file | media/base/mock_filters.h » ('j') | media/base/pipeline.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/media_log.cc
diff --git a/media/base/media_log.cc b/media/base/media_log.cc
index d52c24b712ce181f3377def5dfe1da136e2b786a..fbb769e03c0a4ce1f151bad904b75f8e64c94177 100644
--- a/media/base/media_log.cc
+++ b/media/base/media_log.cc
@@ -81,14 +81,10 @@ const char* MediaLog::PipelineStateToString(Pipeline::State state) {
return "starting";
case Pipeline::kStarted:
return "started";
- case Pipeline::kEnded:
- return "ended";
case Pipeline::kStopping:
return "stopping";
case Pipeline::kStopped:
return "stopped";
- case Pipeline::kError:
- return "error";
}
NOTREACHED();
return NULL;
« no previous file with comments | « no previous file | media/base/mock_filters.h » ('j') | media/base/pipeline.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698