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

Side by Side Diff: third_party/WebKit/public/platform/WebOriginTrialTokenStatus.h

Issue 1909633003: Collect UMA data for Origin Trials (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments Created 4 years, 7 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 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 WebOriginTrialTokenStatus_h
6 #define WebOriginTrialTokenStatus_h
7
8 namespace blink {
9
10 // The enum entries below are written to histograms and thus cannot be deleted
11 // or reordered.
12 // New entries must be added immediately before the end.
13 enum class WebOriginTrialTokenStatus {
14 Success = 0,
15 NotSupported = 1,
16 Insecure = 2,
17 NoTokens = 3,
18 Expired = 4,
19 WrongFeature = 5,
20 WrongOrigin = 6,
21 InvalidSignature = 7,
22 Malformed = 8,
23 WrongVersion = 9,
24 Last = Malformed
25 };
26
27 } // namespace blink
28
29 #endif // WebOriginTrialTokenStatus_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698