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

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

Issue 1906423005: Replace scoped_ptr with std::unique_ptr in //media/base. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: scopedptr-media-base: android Created 4 years, 7 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
« no previous file with comments | « media/base/renderer_factory.h ('k') | media/base/serial_runner.h » ('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/base/seekable_buffer.h"
6
5 #include <stddef.h> 7 #include <stddef.h>
6 #include <stdint.h> 8 #include <stdint.h>
7 9
8 #include <cstdlib> 10 #include <cstdlib>
9 11
10 #include "base/logging.h" 12 #include "base/logging.h"
11 #include "base/macros.h" 13 #include "base/macros.h"
12 #include "base/memory/scoped_ptr.h"
13 #include "base/time/time.h" 14 #include "base/time/time.h"
14 #include "media/base/data_buffer.h" 15 #include "media/base/data_buffer.h"
15 #include "media/base/seekable_buffer.h"
16 #include "media/base/timestamp_constants.h" 16 #include "media/base/timestamp_constants.h"
17 #include "testing/gtest/include/gtest/gtest.h" 17 #include "testing/gtest/include/gtest/gtest.h"
18 18
19 namespace media { 19 namespace media {
20 20
21 class SeekableBufferTest : public testing::Test { 21 class SeekableBufferTest : public testing::Test {
22 public: 22 public:
23 SeekableBufferTest() : buffer_(kBufferSize, kBufferSize) { 23 SeekableBufferTest() : buffer_(kBufferSize, kBufferSize) {
24 } 24 }
25 25
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after
351 EXPECT_EQ(tests[i].expected_time, actual) << "With test = { start:" 351 EXPECT_EQ(tests[i].expected_time, actual) << "With test = { start:"
352 << tests[i].first_time_useconds << ", duration:" 352 << tests[i].first_time_useconds << ", duration:"
353 << tests[i].duration_useconds << ", consumed:" 353 << tests[i].duration_useconds << ", consumed:"
354 << tests[i].consume_bytes << " }\n"; 354 << tests[i].consume_bytes << " }\n";
355 355
356 buffer_.Clear(); 356 buffer_.Clear();
357 } 357 }
358 } 358 }
359 359
360 } // namespace media 360 } // namespace media
OLDNEW
« no previous file with comments | « media/base/renderer_factory.h ('k') | media/base/serial_runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698