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

Unified Diff: content/test/test_render_view_host.cc

Issue 1412173003: cast: support cursor rendering for tab capture (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed left over logs Created 5 years, 2 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/test/test_render_view_host.cc
diff --git a/content/test/test_render_view_host.cc b/content/test/test_render_view_host.cc
index d56b60bf2adbc1d3b7ccc33924728094315f7e2e..7da84a942ab25bc793ee51d3c0aa73233c234430 100644
--- a/content/test/test_render_view_host.cc
+++ b/content/test/test_render_view_host.cc
@@ -136,8 +136,8 @@ void TestRenderWidgetHostView::CopyFromCompositingSurface(
void TestRenderWidgetHostView::CopyFromCompositingSurfaceToVideoFrame(
const gfx::Rect& src_subrect,
const scoped_refptr<media::VideoFrame>& target,
- const base::Callback<void(bool)>& callback) {
- callback.Run(false);
+ const base::Callback<void(gfx::Rect, bool)>& callback) {
+ callback.Run(gfx::Rect(), false);
}
bool TestRenderWidgetHostView::CanCopyToVideoFrame() const {

Powered by Google App Engine
This is Rietveld 408576698