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

Unified Diff: net/cert/sct_status_flags.h

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 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 | « net/cert/scoped_nss_types.h ('k') | net/cert/sha256_legacy_support_nss_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cert/sct_status_flags.h
diff --git a/net/cert/sct_status_flags.h b/net/cert/sct_status_flags.h
deleted file mode 100644
index 123c25c89052acf0ca3e915d57555b452b04617b..0000000000000000000000000000000000000000
--- a/net/cert/sct_status_flags.h
+++ /dev/null
@@ -1,38 +0,0 @@
-// Copyright 2013 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 NET_CERT_SCT_STATUS_FLAGS_H_
-#define NET_CERT_SCT_STATUS_FLAGS_H_
-
-namespace net {
-
-namespace ct {
-
-// The possible verification statuses for a SignedCertificateTimestamp.
-// Note: The numeric values are used within histograms and should not change
-// or be re-assigned.
-enum SCTVerifyStatus {
- // Not a real status, this just prevents a default int value from being
- // mis-interpreseted as a valid status.
- // Also used to count SCTs that cannot be decoded in the histogram.
- SCT_STATUS_NONE = 0,
-
- // The SCT is from an unknown log, so we cannot verify its signature.
- SCT_STATUS_LOG_UNKNOWN = 1,
-
- // The SCT is from a known log, but the signature is invalid.
- SCT_STATUS_INVALID = 2,
-
- // The SCT is from a known log, and the signature is valid.
- SCT_STATUS_OK = 3,
-
- // Used to bound the enum values.
- SCT_STATUS_MAX,
-};
-
-} // namespace ct
-
-} // namespace net
-
-#endif // NET_CERT_SCT_STATUS_FLAGS_H_
« no previous file with comments | « net/cert/scoped_nss_types.h ('k') | net/cert/sha256_legacy_support_nss_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698