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

Unified Diff: content/browser/renderer_host/render_widget_host_view_android.cc

Issue 2809333002: WIP Logging for Contextual Search: Node->Element. (Closed)
Patch Set: Created 3 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/browser/renderer_host/render_widget_host_view_android.cc
diff --git a/content/browser/renderer_host/render_widget_host_view_android.cc b/content/browser/renderer_host/render_widget_host_view_android.cc
index ad4fc6e76c61ab533c7104725f9c39d746702154..6dd53fe480a3081bcbdaae71414dd3bb4956d6ac 100644
--- a/content/browser/renderer_host/render_widget_host_view_android.cc
+++ b/content/browser/renderer_host/render_widget_host_view_android.cc
@@ -632,6 +632,7 @@ bool RenderWidgetHostViewAndroid::IsShowing() {
void RenderWidgetHostViewAndroid::OnShowUnhandledTapUIIfNeeded(int x_dip,
int y_dip) {
+ VLOG(0) << "ctxs OnShowUnhandledTapUIIfNeeded x " << x_dip << ", y " << y_dip;
if (!content_view_core_)
return;
// Validate the coordinates are within the viewport.
@@ -639,6 +640,7 @@ void RenderWidgetHostViewAndroid::OnShowUnhandledTapUIIfNeeded(int x_dip,
if (x_dip < 0 || x_dip > viewport_size.width() ||
y_dip < 0 || y_dip > viewport_size.height())
return;
+ VLOG(0) << "ctxs calling CVC x " << x_dip << ", y " << y_dip;
content_view_core_->OnShowUnhandledTapUIIfNeeded(x_dip, y_dip);
}

Powered by Google App Engine
This is Rietveld 408576698