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

Side by Side Diff: media/base/pipeline_impl.cc

Issue 7342047: Cleanup base/stl_util (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removed unneeded include + rebase Created 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 // 4 //
5 // TODO(scherkus): clean up PipelineImpl... too many crazy function names, 5 // TODO(scherkus): clean up PipelineImpl... too many crazy function names,
6 // potential deadlocks, etc... 6 // potential deadlocks, etc...
7 7
8 #include "media/base/pipeline_impl.h" 8 #include "media/base/pipeline_impl.h"
9 9
10 #include <algorithm> 10 #include <algorithm>
11 11
12 #include "base/bind.h" 12 #include "base/bind.h"
13 #include "base/callback.h" 13 #include "base/callback.h"
14 #include "base/compiler_specific.h" 14 #include "base/compiler_specific.h"
15 #include "base/stl_util-inl.h" 15 #include "base/stl_util.h"
16 #include "base/string_util.h" 16 #include "base/string_util.h"
17 #include "base/synchronization/condition_variable.h" 17 #include "base/synchronization/condition_variable.h"
18 #include "media/base/clock.h" 18 #include "media/base/clock.h"
19 #include "media/base/filter_collection.h" 19 #include "media/base/filter_collection.h"
20 #include "media/base/media_format.h" 20 #include "media/base/media_format.h"
21 21
22 namespace media { 22 namespace media {
23 23
24 const char kRawMediaScheme[] = "x-raw-media"; 24 const char kRawMediaScheme[] = "x-raw-media";
25 25
(...skipping 1278 matching lines...) Expand 10 before | Expand all | Expand 10 after
1304 case kStopping: 1304 case kStopping:
1305 case kStopped: 1305 case kStopped:
1306 NOTREACHED() << "Unexpected state for teardown: " << state_; 1306 NOTREACHED() << "Unexpected state for teardown: " << state_;
1307 break; 1307 break;
1308 // default: intentionally left out to force new states to cause compiler 1308 // default: intentionally left out to force new states to cause compiler
1309 // errors. 1309 // errors.
1310 }; 1310 };
1311 } 1311 }
1312 1312
1313 } // namespace media 1313 } // namespace media
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698