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

Unified Diff: content/browser/renderer_host/media/video_capture_controller.cc

Issue 2523773002: [Mojo Video Capture] Move SharedMem Tracker/BufferHandle/Factory from content to media (Closed)
Patch Set: mcasas comments Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/renderer_host/media/video_capture_controller.cc
diff --git a/content/browser/renderer_host/media/video_capture_controller.cc b/content/browser/renderer_host/media/video_capture_controller.cc
index bf0d9d9c0a955761f59085374597e3bf0c035f9e..83f264cd0ec5687db042e9ec5300c65f62bcb45b 100644
--- a/content/browser/renderer_host/media/video_capture_controller.cc
+++ b/content/browser/renderer_host/media/video_capture_controller.cc
@@ -18,13 +18,13 @@
#include "build/build_config.h"
#include "components/display_compositor/gl_helper.h"
#include "content/browser/renderer_host/media/media_stream_manager.h"
-#include "content/browser/renderer_host/media/video_capture_buffer_tracker_factory_impl.h"
#include "content/browser/renderer_host/media/video_capture_gpu_jpeg_decoder.h"
#include "content/browser/renderer_host/media/video_capture_manager.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/common/content_switches.h"
#include "media/base/video_frame.h"
#include "media/capture/video/video_capture_buffer_pool_impl.h"
+#include "media/capture/video/video_capture_buffer_tracker_factory_impl.h"
#include "media/capture/video/video_capture_device_client.h"
#if !defined(OS_ANDROID)
@@ -174,7 +174,7 @@ struct VideoCaptureController::ControllerClient {
VideoCaptureController::VideoCaptureController(int max_buffers)
: buffer_pool_(new media::VideoCaptureBufferPoolImpl(
- base::MakeUnique<VideoCaptureBufferTrackerFactoryImpl>(),
+ base::MakeUnique<media::VideoCaptureBufferTrackerFactoryImpl>(),
max_buffers)),
state_(VIDEO_CAPTURE_STATE_STARTED),
has_received_frames_(false),
« no previous file with comments | « content/browser/renderer_host/media/video_capture_buffer_tracker_factory_impl.cc ('k') | media/capture/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698