Skip to content

Commit

Permalink
Don't need to export an abstract interface.
Browse files Browse the repository at this point in the history
R=rvargas@chromium.org
BUG=99185
TEST=none

Review URL: http://codereview.chromium.org/8342019

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106355 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
wtc@chromium.org committed Oct 19, 2011
1 parent 6bea7b4 commit e00f24b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 19 deletions.
1 change: 0 additions & 1 deletion net/net.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,6 @@
'udp/udp_socket_libevent.h',
'udp/udp_socket_win.cc',
'udp/udp_socket_win.h',
'url_request/fraudulent_certificate_reporter.cc',
'url_request/fraudulent_certificate_reporter.h',
'url_request/url_request.cc',
'url_request/url_request.h',
Expand Down
14 changes: 0 additions & 14 deletions net/url_request/fraudulent_certificate_reporter.cc
Original file line number Diff line number Diff line change
@@ -1,14 +0,0 @@
// Copyright (c) 2011 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.

#include "net/url_request/fraudulent_certificate_reporter.h"

namespace net {

// This is necessary to build the net.dll shared library on Windows.
FraudulentCertificateReporter::~FraudulentCertificateReporter() {
}

} // namespace net

6 changes: 2 additions & 4 deletions net/url_request/fraudulent_certificate_reporter.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,16 @@

#include <string>

#include "net/base/net_export.h"

namespace net {

class SSLInfo;

// FraudulentCertificateReporter is an interface for asynchronously
// reporting certificate chains that fail the certificate pinning
// check.
class NET_EXPORT FraudulentCertificateReporter {
class FraudulentCertificateReporter {
public:
virtual ~FraudulentCertificateReporter();
virtual ~FraudulentCertificateReporter() {}

// Sends a report to the report collection server containing the |ssl_info|
// associated with a connection to |hostname|. If |sni_available| is true,
Expand Down

0 comments on commit e00f24b

Please sign in to comment.