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

Unified Diff: third_party/WebKit/public/platform/WebSecurityStyle.h

Issue 2400673003: Remove SSLStatus::security_style member and content::SecurityStyle (Closed)
Patch Set: more curly braces 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/public/BUILD.gn ('k') | third_party/WebKit/public/platform/WebURLResponse.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/platform/WebSecurityStyle.h
diff --git a/third_party/WebKit/public/platform/WebSecurityStyle.h b/third_party/WebKit/public/platform/WebSecurityStyle.h
new file mode 100644
index 0000000000000000000000000000000000000000..b6f0b4cb3d50fcc8621f7c8c239652bd08d8dfee
--- /dev/null
+++ b/third_party/WebKit/public/platform/WebSecurityStyle.h
@@ -0,0 +1,18 @@
+// Copyright 2016 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.
+
+#ifndef WebSecurityStyle_h
+#define WebSecurityStyle_h
+namespace blink {
+// This enum represents the security state of a resource.
+enum WebSecurityStyle {
+ WebSecurityStyleUnknown,
+ WebSecurityStyleUnauthenticated,
+ WebSecurityStyleAuthenticationBroken,
+ WebSecurityStyleWarning,
+ WebSecurityStyleAuthenticated,
+ WebSecurityStyleLast = WebSecurityStyleAuthenticated
+};
+} // namespace blink
+#endif
« no previous file with comments | « third_party/WebKit/public/BUILD.gn ('k') | third_party/WebKit/public/platform/WebURLResponse.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698