| Index: chrome/browser/safe_browsing/safe_browsing_util.cc
|
| diff --git a/chrome/browser/safe_browsing/safe_browsing_util.cc b/chrome/browser/safe_browsing/safe_browsing_util.cc
|
| index 4b04c66f3ee1fa1a4e23fd5ad1f17637b7101269..cb8be8e891613e994d9d5afdb6aee34e2ee77da4 100644
|
| --- a/chrome/browser/safe_browsing/safe_browsing_util.cc
|
| +++ b/chrome/browser/safe_browsing/safe_browsing_util.cc
|
| @@ -7,6 +7,7 @@
|
| #include "base/logging.h"
|
| #include "base/strings/string_util.h"
|
| #include "base/strings/stringprintf.h"
|
| +#include "chrome/browser/browser_process.h"
|
| #include "chrome/browser/google/google_util.h"
|
| #include "crypto/sha2.h"
|
| #include "net/base/escape.h"
|
| @@ -518,7 +519,8 @@ GURL GeneratePhishingReportUrl(const std::string& report_page,
|
| GURL report_url(report_page + base::StringPrintf(kReportParams,
|
| client_name.c_str(),
|
| current_esc.c_str()));
|
| - return google_util::AppendGoogleLocaleParam(report_url);
|
| + return google_util::AppendGoogleLocaleParam(
|
| + report_url, g_browser_process->GetApplicationLocale());
|
| }
|
|
|
| SBFullHash StringToSBFullHash(const std::string& hash_in) {
|
|
|