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

Unified Diff: chrome/browser/predictors/resource_prefetch_predictor.proto

Issue 2287473002: predictors: Remove unused field from the resource_prefetch_predictor database. (Closed)
Patch Set: Rebase. 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
Index: chrome/browser/predictors/resource_prefetch_predictor.proto
diff --git a/chrome/browser/predictors/resource_prefetch_predictor.proto b/chrome/browser/predictors/resource_prefetch_predictor.proto
index ae81576ff4002d1204b25358a11ebec892e732a3..8616d5c71c5c01910d63100cc9b02ef6007bd206 100644
--- a/chrome/browser/predictors/resource_prefetch_predictor.proto
+++ b/chrome/browser/predictors/resource_prefetch_predictor.proto
@@ -51,14 +51,13 @@ message ResourceData {
REQUEST_PRIORITY_HIGHEST = 4;
}
- optional string primary_key = 1;
- optional string resource_url = 2;
- optional ResourceType resource_type = 3;
- optional uint32 number_of_hits = 4;
- optional uint32 number_of_misses = 5;
- optional uint32 consecutive_misses = 6;
- optional double average_position = 7;
- optional Priority priority = 8;
- optional bool has_validators = 9;
- optional bool always_revalidate = 10;
+ optional string resource_url = 1;
+ optional ResourceType resource_type = 2;
+ optional uint32 number_of_hits = 3;
+ optional uint32 number_of_misses = 4;
+ optional uint32 consecutive_misses = 5;
+ optional double average_position = 6;
+ optional Priority priority = 7;
+ optional bool has_validators = 8;
+ optional bool always_revalidate = 9;
}

Powered by Google App Engine
This is Rietveld 408576698