Index: chrome/browser/safe_browsing/ping_manager.cc |
diff --git a/chrome/browser/safe_browsing/ping_manager.cc b/chrome/browser/safe_browsing/ping_manager.cc |
index 07fc0ab95bd08b755a39bea7d1fe231a4427a3c2..a5cf29762436afacffee396f6073c676183397cf 100644 |
--- a/chrome/browser/safe_browsing/ping_manager.cc |
+++ b/chrome/browser/safe_browsing/ping_manager.cc |
@@ -27,8 +27,9 @@ namespace { |
// URLs to upload invalid certificate chain reports. The HTTP URL is |
// preferred since a client seeing an invalid cert might not be able to |
// make an HTTPS connection to report it. |
-// TODO(estark): insert the production HTTP URL when it's ready |
-const char kExtendedReportingUploadUrlInsecure[] = ""; |
+const char kExtendedReportingUploadUrlInsecure[] = |
+ "http://safebrowsing.googleusercontent.com/safebrowsing/clientreport/" |
+ "chrome-certs"; |
const char kExtendedReportingUploadUrlSecure[] = |
"https://sb-ssl.google.com/safebrowsing/clientreport/chrome-certs"; |
} // namespace |
@@ -55,8 +56,7 @@ SafeBrowsingPingManager::SafeBrowsingPingManager( |
// Set the upload URL and whether or not to send cookies with |
// certificate reports sent to Safe Browsing servers. |
bool use_insecure_certificate_upload_url = |
- CertificateErrorReporter::IsHttpUploadUrlSupported() && |
- strlen(kExtendedReportingUploadUrlInsecure) > 0; |
+ CertificateErrorReporter::IsHttpUploadUrlSupported(); |
CertificateErrorReporter::CookiesPreference cookies_preference; |
GURL certificate_upload_url; |