summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/localized_error.cc
diff options
context:
space:
mode:
authoragl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-21 17:45:33 +0000
committeragl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-21 17:45:33 +0000
commit3dd663e0d0daf7248aac7fbc161f79c6f3de191a (patch)
treeca1bb6c3bc718493f4154839ea831bc20ad58baa /chrome/renderer/localized_error.cc
parent6351d4712c9b5f7ad41a53cb13ac279e08dcb3a5 (diff)
downloadchromium_src-3dd663e0d0daf7248aac7fbc161f79c6f3de191a.zip
chromium_src-3dd663e0d0daf7248aac7fbc161f79c6f3de191a.tar.gz
chromium_src-3dd663e0d0daf7248aac7fbc161f79c6f3de191a.tar.bz2
net: remove special case for Kaspersky HTTPS
Kaspersky released an updated version some months ago and hopefully most users have upgraded by now. BUG=86208 TEST=none Review URL: https://chromiumcodereview.appspot.com/9419014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@122835 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/localized_error.cc')
-rw-r--r--chrome/renderer/localized_error.cc15
1 files changed, 1 insertions, 14 deletions
diff --git a/chrome/renderer/localized_error.cc b/chrome/renderer/localized_error.cc
index 8ff8964..889266c 100644
--- a/chrome/renderer/localized_error.cc
+++ b/chrome/renderer/localized_error.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -37,9 +37,6 @@ static const char kWeakDHKeyLearnMoreUrl[] =
"err_ssl_weak_server_ephemeral_dh_key";
static const char kESETLearnMoreUrl[] =
"http://kb.eset.com/esetkb/index?page=content&id=SOLN2588";
-static const char kKasperskyLearnMoreUrl[] =
- "http://support.kaspersky.com/kav2012/settings/options"
- "?print=true&qid=208284701";
#if defined(OS_CHROMEOS)
static const char kAppWarningLearnMoreUrl[] =
"chrome-extension://honijodknafkokifofgiaalefdiedpko/main.html"
@@ -248,13 +245,6 @@ const LocalizedErrorMap net_error_options[] = {
IDS_ERRORPAGES_DETAILS_SSL_PROTOCOL_ERROR,
SUGGEST_LEARNMORE,
},
- {net::ERR_KASPERSKY_ANTI_VIRUS_SSL_INTERCEPTION,
- IDS_ERRORPAGES_TITLE_LOAD_FAILED,
- IDS_ERRORPAGES_HEADING_KASPERSKY_ANTI_VIRUS_SSL_INTERCEPTION,
- IDS_ERRORPAGES_SUMMARY_KASPERSKY_ANTI_VIRUS_SSL_INTERCEPTION,
- IDS_ERRORPAGES_DETAILS_SSL_PROTOCOL_ERROR,
- SUGGEST_LEARNMORE,
- },
{net::ERR_SSL_PINNED_KEY_NOT_IN_CERT_CHAIN,
IDS_ERRORPAGES_TITLE_LOAD_FAILED,
IDS_ERRORPAGES_HEADING_PINNING_FAILURE,
@@ -628,9 +618,6 @@ void LocalizedError::GetStrings(const WebKit::WebURLError& error,
case net::ERR_ESET_ANTI_VIRUS_SSL_INTERCEPTION:
learn_more_url = GURL(kESETLearnMoreUrl);
break;
- case net::ERR_KASPERSKY_ANTI_VIRUS_SSL_INTERCEPTION:
- learn_more_url = GURL(kKasperskyLearnMoreUrl);
- break;
default:
break;
}