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

Unified Diff: blimp/client/core/contents/blimp_contents_view_impl.cc

Issue 2382733007: Add BlimpDocument, pull out functions in BlimpCompositor. (Closed)
Patch Set: Remove Webkit DEPS modification. Created 4 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: blimp/client/core/contents/blimp_contents_view_impl.cc
diff --git a/blimp/client/core/contents/blimp_contents_view_impl.cc b/blimp/client/core/contents/blimp_contents_view_impl.cc
index 28b043a26c12e17ccb162d32025423d38d00a144..f5693145ac7e3b6746348b7b8c0b00471b3db977 100644
--- a/blimp/client/core/contents/blimp_contents_view_impl.cc
+++ b/blimp/client/core/contents/blimp_contents_view_impl.cc
@@ -37,12 +37,12 @@ void BlimpContentsViewImpl::SetSizeAndScale(const gfx::Size& size,
}
bool BlimpContentsViewImpl::OnTouchEvent(const ui::MotionEvent& motion_event) {
- return blimp_contents_->compositor_manager()->OnTouchEvent(motion_event);
+ return blimp_contents_->document_manager()->OnTouchEvent(motion_event);
}
void BlimpContentsViewImpl::CopyFromCompositingSurface(
const ReadbackRequestCallback& callback) {
- blimp_contents_->compositor_manager()->NotifyWhenDonePendingCommits(
+ blimp_contents_->document_manager()->NotifyWhenDonePendingCommits(
base::Bind(&BlimpContentsViewImpl::StartReadbackRequest,
weak_ptr_factory_.GetWeakPtr(), callback));
}
« no previous file with comments | « blimp/client/core/contents/blimp_contents_impl.cc ('k') | blimp/client/core/feedback/blimp_feedback_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698