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

Side by Side Diff: media/filters/source_buffer_stream_unittest.cc

Issue 16684003: Use a direct include of strings headers in ipc/, jingle/, media/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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
« no previous file with comments | « media/filters/pipeline_integration_test.cc ('k') | media/filters/stream_parser_factory.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "media/filters/source_buffer_stream.h" 5 #include "media/filters/source_buffer_stream.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/string_number_conversions.h" 10 #include "base/strings/string_number_conversions.h"
11 #include "base/string_util.h"
12 #include "base/strings/string_split.h" 11 #include "base/strings/string_split.h"
12 #include "base/strings/string_util.h"
13 #include "media/base/data_buffer.h" 13 #include "media/base/data_buffer.h"
14 #include "media/base/media_log.h" 14 #include "media/base/media_log.h"
15 #include "media/base/test_helpers.h" 15 #include "media/base/test_helpers.h"
16 #include "testing/gtest/include/gtest/gtest.h" 16 #include "testing/gtest/include/gtest/gtest.h"
17 17
18 namespace media { 18 namespace media {
19 19
20 static const int kDefaultFramesPerSecond = 30; 20 static const int kDefaultFramesPerSecond = 30;
21 static const int kDefaultKeyframesPerSecond = 6; 21 static const int kDefaultKeyframesPerSecond = 6;
22 static const uint8 kDataA = 0x11; 22 static const uint8 kDataA = 0x11;
(...skipping 2774 matching lines...) Expand 10 before | Expand all | Expand 10 after
2797 NewSegmentAppend_ExpectFailure("0K 30 30K 60"); 2797 NewSegmentAppend_ExpectFailure("0K 30 30K 60");
2798 } 2798 }
2799 2799
2800 // TODO(vrk): Add unit tests where keyframes are unaligned between streams. 2800 // TODO(vrk): Add unit tests where keyframes are unaligned between streams.
2801 // (crbug.com/133557) 2801 // (crbug.com/133557)
2802 2802
2803 // TODO(vrk): Add unit tests with end of stream being called at interesting 2803 // TODO(vrk): Add unit tests with end of stream being called at interesting
2804 // times. 2804 // times.
2805 2805
2806 } // namespace media 2806 } // namespace media
OLDNEW
« no previous file with comments | « media/filters/pipeline_integration_test.cc ('k') | media/filters/stream_parser_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698