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

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

Issue 1852953002: Fix a bunch of IWYU violators that don't include scoped_ptr.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comment Created 4 years, 8 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/video_frame_metadata.h ('k') | media/base/yuv_convert_unittest.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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 <stdint.h> 5 #include <stdint.h>
6 6
7 #include "base/base_paths.h" 7 #include "base/base_paths.h"
8 #include "base/cpu.h" 8 #include "base/cpu.h"
9 #include "base/files/file_util.h" 9 #include "base/files/file_util.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "base/memory/scoped_ptr.h"
12 #include "base/path_service.h" 13 #include "base/path_service.h"
13 #include "base/time/time.h" 14 #include "base/time/time.h"
14 #include "build/build_config.h" 15 #include "build/build_config.h"
15 #include "media/base/simd/convert_yuv_to_rgb.h" 16 #include "media/base/simd/convert_yuv_to_rgb.h"
16 #include "media/base/yuv_convert.h" 17 #include "media/base/yuv_convert.h"
17 #include "testing/gtest/include/gtest/gtest.h" 18 #include "testing/gtest/include/gtest/gtest.h"
18 #include "testing/perf/perf_test.h" 19 #include "testing/perf/perf_test.h"
19 #include "third_party/libyuv/include/libyuv/row.h" 20 #include "third_party/libyuv/include/libyuv/row.h"
20 21
21 namespace media { 22 namespace media {
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 double total_time_seconds = (base::TimeTicks::Now() - start).InSecondsF(); 212 double total_time_seconds = (base::TimeTicks::Now() - start).InSecondsF();
212 perf_test::PrintResult( 213 perf_test::PrintResult(
213 "yuv_convert_perftest", "", "LinearScaleYUVToRGB32Row_SSE", 214 "yuv_convert_perftest", "", "LinearScaleYUVToRGB32Row_SSE",
214 kPerfTestIterations / total_time_seconds, "runs/s", true); 215 kPerfTestIterations / total_time_seconds, "runs/s", true);
215 } 216 }
216 #endif // defined(OS_WIN) && (ARCH_CPU_X86 || COMPONENT_BUILD) 217 #endif // defined(OS_WIN) && (ARCH_CPU_X86 || COMPONENT_BUILD)
217 218
218 #endif // !defined(ARCH_CPU_ARM_FAMILY) && !defined(ARCH_CPU_MIPS_FAMILY) 219 #endif // !defined(ARCH_CPU_ARM_FAMILY) && !defined(ARCH_CPU_MIPS_FAMILY)
219 220
220 } // namespace media 221 } // namespace media
OLDNEW
« no previous file with comments | « media/base/video_frame_metadata.h ('k') | media/base/yuv_convert_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698