| Index: chrome/browser/ui/browser.cc
|
| diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc
|
| index b9d1732cd8684228650c2df23a39ddfc535cf2d2..9512433473b7a625f4b34d7545c992ed58b4836f 100644
|
| --- a/chrome/browser/ui/browser.cc
|
| +++ b/chrome/browser/ui/browser.cc
|
| @@ -1276,7 +1276,8 @@ void Browser::ShowValidationMessage(content::WebContents* web_contents,
|
| }
|
|
|
| void Browser::HideValidationMessage(content::WebContents* web_contents) {
|
| - validation_message_bubble_.reset();
|
| + if (validation_message_bubble_)
|
| + validation_message_bubble_->CloseValidationMessage();
|
| }
|
|
|
| void Browser::MoveValidationMessage(content::WebContents* web_contents,
|
|
|