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

Unified Diff: golden/go/ignore/ignorestore.go

Issue 2220573003: Add count of exclusively covered digests to each ignore rule (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: Swapped counts Created 4 years, 4 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 | « golden/frontend/res/imp/testdata.js ('k') | golden/go/ignore/sqlignorestore.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: golden/go/ignore/ignorestore.go
diff --git a/golden/go/ignore/ignorestore.go b/golden/go/ignore/ignorestore.go
index 124c2e8a12a37365100ab109f5b9907f9d81ed94..605ef8bdec43044d5df2caf2d29aa679bba0246f 100644
--- a/golden/go/ignore/ignorestore.go
+++ b/golden/go/ignore/ignorestore.go
@@ -40,13 +40,14 @@ type IgnoreStore interface {
// IgnoreRule is the GUI struct for dealing with Ignore rules.
type IgnoreRule struct {
- ID int `json:"id"`
- Name string `json:"name"`
- UpdatedBy string `json:"updatedBy"`
- Expires time.Time `json:"expires"`
- Query string `json:"query"`
- Note string `json:"note"`
- Count int `json:"count"`
+ ID int `json:"id"`
+ Name string `json:"name"`
+ UpdatedBy string `json:"updatedBy"`
+ Expires time.Time `json:"expires"`
+ Query string `json:"query"`
+ Note string `json:"note"`
+ Count int `json:"count"`
+ ExclusiveCount int `json:"exclusiveCount"`
}
// ToQuery makes a slice of url.Values from the given slice of IngoreRules.
« no previous file with comments | « golden/frontend/res/imp/testdata.js ('k') | golden/go/ignore/sqlignorestore.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698