blob: afee0d28d4d7f90c4b8780ccd026e7452c68ffd5 [file] [log] [blame]
package chromeperf
import (
"context"
)
// ReverseKeyMapStore is the interface used to handle the updated param value in Skia.
type ReverseKeyMapStore interface {
// Create a map from value and key to the original value in the db
Create(ctx context.Context, modifiedValue string, key string, originalValue string) (string, error)
// Get the original value by the value and key
Get(ctx context.Context, modifiedValue string, key string) (string, error)
}