| Index: chrome/browser/safe_browsing/safe_browsing_blocking_page.cc
|
| diff --git a/chrome/browser/safe_browsing/safe_browsing_blocking_page.cc b/chrome/browser/safe_browsing/safe_browsing_blocking_page.cc
|
| index 386415283fc9392055744928ad3e0e87edec4cbf..b0c4999176dfe1907e0af8d81e1a98a4acc57a4c 100644
|
| --- a/chrome/browser/safe_browsing/safe_browsing_blocking_page.cc
|
| +++ b/chrome/browser/safe_browsing/safe_browsing_blocking_page.cc
|
| @@ -589,7 +589,8 @@ void SafeBrowsingBlockingPage::RecordUserAction(BlockingPageEvent event) {
|
| PopulateMultipleThreatStringDictionary(&strings);
|
|
|
| string16 title;
|
| - DCHECK(strings.GetString("title", &title));
|
| + bool success = strings.GetString("title", &title);
|
| + DCHECK(success);
|
|
|
| std::string action = "SBInterstitial";
|
| if (title ==
|
|
|