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

Side by Side Diff: content/common/security_style_util.h

Issue 2296953004: Send certificates to devtools when it's open instead of using certId (Closed)
Patch Set: self review Created 4 years, 3 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
« no previous file with comments | « content/common/resource_messages.h ('k') | content/common/security_style_util.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 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 CONTENT_COMMON_SECURITY_STYLE_UTIL_H_
6 #define CONTENT_COMMON_SECURITY_STYLE_UTIL_H_
7
8 #include "content/public/common/security_style.h"
9 #include "net/cert/cert_status_flags.h"
10
11 class GURL;
12
13 namespace content {
14
15 // Returns a security style describing an individual resource. Does
16 // not take into account any of the page- or host-level state such as
17 // mixed content or whether the host has run insecure content.
18 SecurityStyle GetSecurityStyleForResource(const GURL& url,
19 bool has_certificate,
20 net::CertStatus cert_status);
21
22 } // namespace content
23
24 #endif // CONTENT_COMMON_SECURITY_STYLE_UTIL_H_
OLDNEW
« no previous file with comments | « content/common/resource_messages.h ('k') | content/common/security_style_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698