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

Side by Side Diff: chrome/browser/ssl/ssl_add_certificate.h

Issue 2363653002: Cleanup unreachable cert adding code (Closed)
Patch Set: Rebased Created 4 years, 2 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_SSL_SSL_ADD_CERTIFICATE_H_
6 #define CHROME_BROWSER_SSL_SSL_ADD_CERTIFICATE_H_
7
8 #include <stddef.h>
9
10 #include "net/base/mime_util.h"
11
12 namespace net {
13 class URLRequest;
14 } // namespace net
15
16 namespace chrome {
17
18 // This method is used to add a new certificate file.
19 //
20 void SSLAddCertificate(
21 net::CertificateMimeType cert_type,
22 const void* cert_data,
23 size_t cert_size,
24 int render_process_id,
25 int render_view_id);
26
27 } // namespace chrome
28
29 #endif // CHROME_BROWSER_SSL_SSL_ADD_CERTIFICATE_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/platform_keys/platform_keys_nss.cc ('k') | chrome/browser/ssl/ssl_add_certificate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698