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

Unified Diff: third_party/WebKit/Source/web/ChromeClientImpl.cpp

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: third_party/WebKit/Source/web/ChromeClientImpl.cpp
diff --git a/third_party/WebKit/Source/web/ChromeClientImpl.cpp b/third_party/WebKit/Source/web/ChromeClientImpl.cpp
index cb86012f4d29646ccb0a0b7ef3909360290d9518..a1bf7fd4ba8bae1e6796129af87b672553c0a565 100644
--- a/third_party/WebKit/Source/web/ChromeClientImpl.cpp
+++ b/third_party/WebKit/Source/web/ChromeClientImpl.cpp
@@ -1090,7 +1090,9 @@ void ChromeClientImpl::ShowUnhandledTapUIIfNeeded(
IntPoint tapped_position_in_viewport,
Node* tapped_node,
bool page_changed) {
+ VLOG(0) << "ctxs ChromeClientImpl::ShowUnhandledTapUIIfNeeded";
if (web_view_->Client())
+ VLOG(0) << "ctxs ChromeClientImpl::ShowUnhandledTapUIIfNeeded calling client";
web_view_->Client()->ShowUnhandledTapUIIfNeeded(
WebPoint(tapped_position_in_viewport), WebNode(tapped_node),
page_changed);

Powered by Google App Engine
This is Rietveld 408576698