Commit 6ef74679 authored by W. James MacLean's avatar W. James MacLean Committed by Commit Bot

Remove logging.

Removing the diagnostic logging, as we've learned what we need to from
it.

TBR=alexmos@chromium.org

Bug: 992419
Change-Id: I03ec823d02a9df0be61144eb942c5781a2ae9136
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2122038Reviewed-by: default avatarJames MacLean <wjmaclean@chromium.org>
Commit-Queue: James MacLean <wjmaclean@chromium.org>
Cr-Commit-Position: refs/heads/master@{#753619}
parent fd82926d
...@@ -58,7 +58,6 @@ void FindTestWebContentsDelegate::MarkNextReply() { ...@@ -58,7 +58,6 @@ void FindTestWebContentsDelegate::MarkNextReply() {
void FindTestWebContentsDelegate::UpdateLastRequest(int request_id) { void FindTestWebContentsDelegate::UpdateLastRequest(int request_id) {
last_request_id_ = request_id; last_request_id_ = request_id;
LOG(INFO) << "last_request_id_ = " << last_request_id_;
} }
void FindTestWebContentsDelegate::StartReplyRecord() { void FindTestWebContentsDelegate::StartReplyRecord() {
...@@ -99,10 +98,8 @@ void FindTestWebContentsDelegate::FindReply(WebContents* web_contents, ...@@ -99,10 +98,8 @@ void FindTestWebContentsDelegate::FindReply(WebContents* web_contents,
if (!final_update) if (!final_update)
return; return;
if (request_id > last_finished_request_id_) { if (request_id > last_finished_request_id_)
last_finished_request_id_ = request_id; last_finished_request_id_ = request_id;
LOG(INFO) << "last_finished_request_id_ = " << last_finished_request_id_;
}
next_reply_received_ = true; next_reply_received_ = true;
// If we are waiting for this find reply, stop waiting. // If we are waiting for this find reply, stop waiting.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment