| // Copyright 2019 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. |
| |
| syntax = "proto2"; |
| |
| option optimize_for = LITE_RUNTIME; |
| |
| package previews.proto; |
| |
| // Imports //components/optimization_guide/proto/hints.proto but uses local |
| // path here with import_dirs in build file. |
| import "hints.proto"; |
| |
| message StoreEntry { |
| // Generic version field. For the schema metadata entry, version represents |
| // the schema version; for the component metadata entry, version represents |
| // the component version. |
| optional string version = 1; |
| // The actual hint data. |
| optional optimization_guide.proto.Hint hint = 2; |
| } |