OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/safe_browsing/safe_browsing_util.h" | 5 #include "chrome/browser/safe_browsing/safe_browsing_util.h" |
6 | 6 |
7 #include "base/base64.h" | 7 #include "base/base64.h" |
8 #include "base/hmac.h" | 8 #include "base/hmac.h" |
9 #include "base/sha2.h" | 9 #include "base/sha2.h" |
10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
(...skipping 578 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
589 return !memcmp(digest, decoded_mac.data(), kSafeBrowsingMacDigestSize); | 589 return !memcmp(digest, decoded_mac.data(), kSafeBrowsingMacDigestSize); |
590 } | 590 } |
591 | 591 |
592 GURL GeneratePhishingReportUrl(const std::string& report_page, | 592 GURL GeneratePhishingReportUrl(const std::string& report_page, |
593 const std::string& url_to_report) { | 593 const std::string& url_to_report) { |
594 icu::Locale locale = icu::Locale::getDefault(); | 594 icu::Locale locale = icu::Locale::getDefault(); |
595 const char* lang = locale.getLanguage(); | 595 const char* lang = locale.getLanguage(); |
596 if (!lang) | 596 if (!lang) |
597 lang = "en"; // fallback | 597 lang = "en"; // fallback |
598 const std::string continue_esc = | 598 const std::string continue_esc = |
599 EscapeQueryParamValue(StringPrintf(kContinueUrlFormat, lang)); | 599 EscapeQueryParamValue(StringPrintf(kContinueUrlFormat, lang), true); |
600 const std::string current_esc = EscapeQueryParamValue(url_to_report); | 600 const std::string current_esc = EscapeQueryParamValue(url_to_report, true); |
601 | 601 |
602 #if defined(OS_WIN) | 602 #if defined(OS_WIN) |
603 BrowserDistribution* dist = BrowserDistribution::GetDistribution(); | 603 BrowserDistribution* dist = BrowserDistribution::GetDistribution(); |
604 std::string client_name(dist->GetSafeBrowsingName()); | 604 std::string client_name(dist->GetSafeBrowsingName()); |
605 #else | 605 #else |
606 std::string client_name("googlechrome"); | 606 std::string client_name("googlechrome"); |
607 #endif | 607 #endif |
608 | 608 |
609 GURL report_url(report_page + | 609 GURL report_url(report_page + |
610 StringPrintf(kReportParams, client_name.c_str(), continue_esc.c_str(), | 610 StringPrintf(kReportParams, client_name.c_str(), continue_esc.c_str(), |
611 current_esc.c_str())); | 611 current_esc.c_str())); |
612 return google_util::AppendGoogleLocaleParam(report_url); | 612 return google_util::AppendGoogleLocaleParam(report_url); |
613 } | 613 } |
614 | 614 |
615 } // namespace safe_browsing_util | 615 } // namespace safe_browsing_util |
OLD | NEW |