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

Unified Diff: chrome/browser/predictors/resource_prefetch_common.h

Issue 2532933002: predictors: Remove unused field trial configuration parsing. (Closed)
Patch Set: Address comments. Created 4 years, 1 month 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 | « no previous file | chrome/browser/predictors/resource_prefetch_common.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/predictors/resource_prefetch_common.h
diff --git a/chrome/browser/predictors/resource_prefetch_common.h b/chrome/browser/predictors/resource_prefetch_common.h
index 33812ff5183a9975a1ca432698b828bb81cab67c..cfb422ce1fb715c8bb9c42e486e3043914e94d31 100644
--- a/chrome/browser/predictors/resource_prefetch_common.h
+++ b/chrome/browser/predictors/resource_prefetch_common.h
@@ -69,10 +69,10 @@ struct ResourcePrefetchPredictorConfig {
// The mode the prefetcher is running in. Forms a bit map.
enum Mode {
- URL_LEARNING = 1 << 0,
- HOST_LEARNING = 1 << 1,
+ URL_LEARNING = 1 << 0,
+ HOST_LEARNING = 1 << 1,
URL_PREFETCHING = 1 << 2, // Should also turn on URL_LEARNING.
- HOST_PRFETCHING = 1 << 3 // Should also turn on HOST_LEARNING.
+ HOST_PREFETCHING = 1 << 3 // Should also turn on HOST_LEARNING.
};
int mode;
« no previous file with comments | « no previous file | chrome/browser/predictors/resource_prefetch_common.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698