| Index: chrome/browser/ui/views/frame/browser_view.cc
|
| diff --git a/chrome/browser/ui/views/frame/browser_view.cc b/chrome/browser/ui/views/frame/browser_view.cc
|
| index 127722367afce5cc74b9e9bd949985aaa5f40baa..0be54f9bfdc96f930d61e211c3138d7d61462f61 100644
|
| --- a/chrome/browser/ui/views/frame/browser_view.cc
|
| +++ b/chrome/browser/ui/views/frame/browser_view.cc
|
| @@ -1158,7 +1158,8 @@ void BrowserView::ShowBookmarkAppBubble(
|
|
|
| void BrowserView::ShowTranslateBubble(content::WebContents* web_contents,
|
| translate::TranslateStep step,
|
| - TranslateErrors::Type error_type) {
|
| + TranslateErrors::Type error_type,
|
| + bool is_explicit) {
|
| if (contents_web_view_->HasFocus() &&
|
| !GetLocationBarView()->IsMouseHovered()) {
|
| content::RenderViewHost* rvh = web_contents->GetRenderViewHost();
|
| @@ -1176,7 +1177,7 @@ void BrowserView::ShowTranslateBubble(content::WebContents* web_contents,
|
|
|
| TranslateBubbleView::ShowBubble(
|
| GetToolbarView()->GetTranslateBubbleAnchor(), web_contents, step,
|
| - error_type);
|
| + error_type, is_explicit);
|
| }
|
|
|
| #if defined(ENABLE_ONE_CLICK_SIGNIN)
|
|
|