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

Side by Side Diff: content/browser/renderer_host/media/video_capture_host_unittest.cc

Issue 1967823004: Fix include path for moved thread_task_runner_handle.h header in content/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: 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
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 "content/browser/renderer_host/media/video_capture_host.h" 5 #include "content/browser/renderer_host/media/video_capture_host.h"
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8 8
9 #include <map> 9 #include <map>
10 #include <memory> 10 #include <memory>
11 #include <string> 11 #include <string>
12 12
13 #include "base/bind.h" 13 #include "base/bind.h"
14 #include "base/command_line.h" 14 #include "base/command_line.h"
15 #include "base/files/file_util.h" 15 #include "base/files/file_util.h"
16 #include "base/files/scoped_file.h" 16 #include "base/files/scoped_file.h"
17 #include "base/location.h" 17 #include "base/location.h"
18 #include "base/macros.h" 18 #include "base/macros.h"
19 #include "base/run_loop.h" 19 #include "base/run_loop.h"
20 #include "base/single_thread_task_runner.h" 20 #include "base/single_thread_task_runner.h"
21 #include "base/stl_util.h" 21 #include "base/stl_util.h"
22 #include "base/strings/stringprintf.h" 22 #include "base/strings/stringprintf.h"
23 #include "base/thread_task_runner_handle.h" 23 #include "base/threading/thread_task_runner_handle.h"
24 #include "build/build_config.h" 24 #include "build/build_config.h"
25 #include "content/browser/browser_thread_impl.h" 25 #include "content/browser/browser_thread_impl.h"
26 #include "content/browser/renderer_host/media/media_stream_manager.h" 26 #include "content/browser/renderer_host/media/media_stream_manager.h"
27 #include "content/browser/renderer_host/media/media_stream_requester.h" 27 #include "content/browser/renderer_host/media/media_stream_requester.h"
28 #include "content/browser/renderer_host/media/media_stream_ui_proxy.h" 28 #include "content/browser/renderer_host/media/media_stream_ui_proxy.h"
29 #include "content/browser/renderer_host/media/video_capture_manager.h" 29 #include "content/browser/renderer_host/media/video_capture_manager.h"
30 #include "content/common/media/video_capture_messages.h" 30 #include "content/common/media/video_capture_messages.h"
31 #include "content/public/common/content_switches.h" 31 #include "content/public/common/content_switches.h"
32 #include "content/public/test/mock_resource_context.h" 32 #include "content/public/test/mock_resource_context.h"
33 #include "content/public/test/test_browser_context.h" 33 #include "content/public/test/test_browser_context.h"
(...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after
541 #ifdef DUMP_VIDEO 541 #ifdef DUMP_VIDEO
542 TEST_F(VideoCaptureHostTest, CaptureAndDumpVideoVga) { 542 TEST_F(VideoCaptureHostTest, CaptureAndDumpVideoVga) {
543 CaptureAndDumpVideo(640, 480, 30); 543 CaptureAndDumpVideo(640, 480, 30);
544 } 544 }
545 TEST_F(VideoCaptureHostTest, CaptureAndDump720P) { 545 TEST_F(VideoCaptureHostTest, CaptureAndDump720P) {
546 CaptureAndDumpVideo(1280, 720, 30); 546 CaptureAndDumpVideo(1280, 720, 30);
547 } 547 }
548 #endif 548 #endif
549 549
550 } // namespace content 550 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698