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

Side by Side Diff: content/common/gpu/media/video_encode_accelerator_unittest.cc

Issue 1228143003: Fix mipsel compile error due to missing header. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 <inttypes.h> 5 #include <inttypes.h>
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/at_exit.h" 9 #include "base/at_exit.h"
10 #include "base/bind.h" 10 #include "base/bind.h"
11 #include "base/command_line.h" 11 #include "base/command_line.h"
12 #include "base/files/file_util.h" 12 #include "base/files/file_util.h"
13 #include "base/files/memory_mapped_file.h" 13 #include "base/files/memory_mapped_file.h"
14 #include "base/memory/scoped_vector.h" 14 #include "base/memory/scoped_vector.h"
15 #include "base/numerics/safe_conversions.h" 15 #include "base/numerics/safe_conversions.h"
16 #include "base/process/process_handle.h" 16 #include "base/process/process_handle.h"
17 #include "base/strings/string_number_conversions.h" 17 #include "base/strings/string_number_conversions.h"
18 #include "base/strings/string_split.h" 18 #include "base/strings/string_split.h"
19 #include "base/strings/stringprintf.h" 19 #include "base/strings/stringprintf.h"
20 #include "base/sys_byteorder.h" 20 #include "base/sys_byteorder.h"
21 #include "base/threading/thread.h"
21 #include "base/threading/thread_checker.h" 22 #include "base/threading/thread_checker.h"
22 #include "base/time/time.h" 23 #include "base/time/time.h"
23 #include "base/timer/timer.h" 24 #include "base/timer/timer.h"
24 #include "content/common/gpu/media/video_accelerator_unittest_helpers.h" 25 #include "content/common/gpu/media/video_accelerator_unittest_helpers.h"
25 #include "media/base/bind_to_current_loop.h" 26 #include "media/base/bind_to_current_loop.h"
26 #include "media/base/bitstream_buffer.h" 27 #include "media/base/bitstream_buffer.h"
27 #include "media/base/test_data_util.h" 28 #include "media/base/test_data_util.h"
28 #include "media/filters/h264_parser.h" 29 #include "media/filters/h264_parser.h"
29 #include "media/video/fake_video_encode_accelerator.h" 30 #include "media/video/fake_video_encode_accelerator.h"
30 #include "media/video/video_encode_accelerator.h" 31 #include "media/video/video_encode_accelerator.h"
(...skipping 1492 matching lines...) Expand 10 before | Expand all | Expand 10 after
1523 1524
1524 content::g_env = 1525 content::g_env =
1525 reinterpret_cast<content::VideoEncodeAcceleratorTestEnvironment*>( 1526 reinterpret_cast<content::VideoEncodeAcceleratorTestEnvironment*>(
1526 testing::AddGlobalTestEnvironment( 1527 testing::AddGlobalTestEnvironment(
1527 new content::VideoEncodeAcceleratorTestEnvironment( 1528 new content::VideoEncodeAcceleratorTestEnvironment(
1528 test_stream_data.Pass(), log_path, run_at_fps, 1529 test_stream_data.Pass(), log_path, run_at_fps,
1529 needs_encode_latency))); 1530 needs_encode_latency)));
1530 1531
1531 return RUN_ALL_TESTS(); 1532 return RUN_ALL_TESTS();
1532 } 1533 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698