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

Unified Diff: components/startup_metric_utils/common/pre_read_field_trial_utils_win.cc

Issue 2286903002: Remove code related to the PreReadChromeChildInBrowser field trial. (Closed)
Patch Set: 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: components/startup_metric_utils/common/pre_read_field_trial_utils_win.cc
diff --git a/components/startup_metric_utils/common/pre_read_field_trial_utils_win.cc b/components/startup_metric_utils/common/pre_read_field_trial_utils_win.cc
index cb9207a58da5c0ae320899860b879b0ee066d7e1..5f19947f07ad4e57272cab56de7ad1a551104ccd 100644
--- a/components/startup_metric_utils/common/pre_read_field_trial_utils_win.cc
+++ b/components/startup_metric_utils/common/pre_read_field_trial_utils_win.cc
@@ -33,8 +33,6 @@ const base::char16 kNoPreReadVariationName[] = L"NoPreRead";
const base::char16 kHighPriorityVariationName[] = L"HighPriority";
const base::char16 kPrefetchVirtualMemoryVariationName[] =
L"PrefetchVirtualMemory";
-const base::char16 kPreReadChromeChildInBrowser[] =
- L"PreReadChromeChildInBrowser";
// Registry key in which the PreRead field trial group is stored.
const base::char16 kPreReadFieldTrialRegistryKey[] = L"\\PreReadFieldTrial";
@@ -77,8 +75,6 @@ void InitializePreReadOptions(const base::string16& product_registry_path) {
g_pre_read_options.high_priority = ReadBool(key, kHighPriorityVariationName);
g_pre_read_options.prefetch_virtual_memory =
ReadBool(key, kPrefetchVirtualMemoryVariationName);
- g_pre_read_options.pre_read_chrome_child_in_browser =
- ReadBool(key, kPreReadChromeChildInBrowser);
}
PreReadOptions GetPreReadOptions() {

Powered by Google App Engine
This is Rietveld 408576698