Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(48)

Side by Side Diff: content/browser/ssl/ssl_cert_error_handler.cc

Issue 13006020: net: extract net/cert out of net/base (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "content/browser/ssl/ssl_cert_error_handler.h" 5 #include "content/browser/ssl/ssl_cert_error_handler.h"
6 6
7 #include "content/browser/ssl/ssl_manager.h" 7 #include "content/browser/ssl/ssl_manager.h"
8 #include "content/browser/ssl/ssl_policy.h" 8 #include "content/browser/ssl/ssl_policy.h"
9 #include "net/base/cert_status_flags.h" 9 #include "net/cert/cert_status_flags.h"
10 #include "net/base/x509_certificate.h" 10 #include "net/cert/x509_certificate.h"
11 11
12 namespace content { 12 namespace content {
13 13
14 SSLCertErrorHandler::SSLCertErrorHandler( 14 SSLCertErrorHandler::SSLCertErrorHandler(
15 const base::WeakPtr<Delegate>& delegate, 15 const base::WeakPtr<Delegate>& delegate,
16 const GlobalRequestID& id, 16 const GlobalRequestID& id,
17 ResourceType::Type resource_type, 17 ResourceType::Type resource_type,
18 const GURL& url, 18 const GURL& url,
19 int render_process_id, 19 int render_process_id,
20 int render_view_id, 20 int render_view_id,
(...skipping 21 matching lines...) Expand all
42 } 42 }
43 } 43 }
44 44
45 void SSLCertErrorHandler::OnDispatched() { 45 void SSLCertErrorHandler::OnDispatched() {
46 manager_->policy()->OnCertError(this); 46 manager_->policy()->OnCertError(this);
47 } 47 }
48 48
49 SSLCertErrorHandler::~SSLCertErrorHandler() {} 49 SSLCertErrorHandler::~SSLCertErrorHandler() {}
50 50
51 } // namespace content 51 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/renderer_host/pepper/pepper_tcp_socket.cc ('k') | content/browser/ssl/ssl_client_auth_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698