| Index: chrome/browser/android/contextualsearch/contextual_search_delegate.cc
|
| diff --git a/chrome/browser/android/contextualsearch/contextual_search_delegate.cc b/chrome/browser/android/contextualsearch/contextual_search_delegate.cc
|
| index 78ad954d32b16cfb74ac53ddd55afc07a4ed9d77..fafa63906d642339ad4c9c3f78601277980b0ba4 100644
|
| --- a/chrome/browser/android/contextualsearch/contextual_search_delegate.cc
|
| +++ b/chrome/browser/android/contextualsearch/contextual_search_delegate.cc
|
| @@ -240,6 +240,7 @@ std::string ContextualSearchDelegate::BuildRequestUrl(std::string selection) {
|
| replacement_url);
|
| }
|
| }
|
| + VLOG(0) << "ctxs request: " << request;
|
| return request;
|
| }
|
|
|
| @@ -303,6 +304,7 @@ void ContextualSearchDelegate::SaveSurroundingText(
|
| int start_offset,
|
| int end_offset) {
|
| DCHECK(context_.get());
|
| + VLOG(0) << "ctxs offsets start " << start_offset << ", end " << end_offset << ", length " << surrounding_text.length();
|
| // Sometimes the surroundings are 0, 0, '', so fall back on the selection.
|
| // See crbug.com/393100.
|
| if (start_offset == 0 && end_offset == 0 && surrounding_text.length() == 0) {
|
|
|