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

Unified Diff: content/common/gpu/media/v4l2_image_processor.cc

Issue 1083883003: Move BindToCurrentLoop from media/base/ to base/ Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix media/base/callback_holder.h compile Created 5 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 side-by-side diff with in-line comments
Download patch
Index: content/common/gpu/media/v4l2_image_processor.cc
diff --git a/content/common/gpu/media/v4l2_image_processor.cc b/content/common/gpu/media/v4l2_image_processor.cc
index 88946615877fff817e72e85e3b67f34f336b1146..333ac47a1d009ed678bf93ac442fb86d3eda4ba9 100644
--- a/content/common/gpu/media/v4l2_image_processor.cc
+++ b/content/common/gpu/media/v4l2_image_processor.cc
@@ -11,11 +11,11 @@
#include "base/bind.h"
#include "base/bind_helpers.h"
+#include "base/bind_to_current_loop.h"
#include "base/callback.h"
#include "base/message_loop/message_loop_proxy.h"
#include "base/numerics/safe_conversions.h"
#include "content/common/gpu/media/v4l2_image_processor.h"
-#include "media/base/bind_to_current_loop.h"
#define NOTIFY_ERROR() \
do { \
@@ -562,7 +562,7 @@ void V4L2ImageProcessor::Dequeue() {
output_visible_size_,
output_record.fds,
job_record->frame->timestamp(),
- media::BindToCurrentLoop(
+ base::BindToCurrentLoop(
base::Bind(&V4L2ImageProcessor::ReuseOutputBuffer,
device_weak_factory_.GetWeakPtr(),
dqbuf.index)));

Powered by Google App Engine
This is Rietveld 408576698