OLD | NEW |
---|---|
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef COMPONENTS_STARTUP_METRIC_UTILS_COMMON_PRE_READ_FIELD_TRIAL_UTILS_WIN_H_ | 5 #ifndef COMPONENTS_STARTUP_METRIC_UTILS_COMMON_PRE_READ_FIELD_TRIAL_UTILS_WIN_H_ |
6 #define COMPONENTS_STARTUP_METRIC_UTILS_COMMON_PRE_READ_FIELD_TRIAL_UTILS_WIN_H_ | 6 #define COMPONENTS_STARTUP_METRIC_UTILS_COMMON_PRE_READ_FIELD_TRIAL_UTILS_WIN_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/callback_forward.h" | 10 #include "base/callback_forward.h" |
11 #include "base/strings/string16.h" | 11 #include "base/strings/string16.h" |
12 | 12 |
13 // Utility functions to support the PreRead field trial. The PreRead field trial | 13 // Utility functions to support the PreRead field trial. The PreRead field trial |
14 // changes the way DLLs are pre-read during startup. | 14 // changes the way DLLs are pre-read during startup. |
15 | 15 |
16 namespace startup_metric_utils { | 16 namespace startup_metric_utils { |
17 | 17 |
18 // Callback to register a synthetic field trial. | 18 // Callback to register a synthetic field trial. |
19 using RegisterPreReadSyntheticFieldTrialCallback = | 19 using RegisterPreReadSyntheticFieldTrialCallback = |
20 const base::Callback<bool(const std::string&, const std::string&)>; | 20 const base::Callback<bool(const std::string&, const std::string&)>; |
21 | 21 |
22 // Get DLL pre-reading options. |product_registry_path| is the registry path | 22 // Get DLL pre-reading options. |product_registry_path| is the registry path |
23 // under which the registry key for this field trial resides. The |no_pre_read| | 23 // under which the registry key for this field trial resides. The |no_pre_read| |
24 // option is set if DLLs should not be pre-read. The |high_priority| option is | 24 // option is set if DLLs should not be pre-read. The |high_priority| option is |
25 // set if pre-reading should be done with a high thread priority. The | 25 // set if pre-reading should be done with a high thread priority. The |
26 // |only_if_cold| option is set if only cold DLLs should be pre-read. The | 26 // |only_if_cold| option is set if only cold DLLs should be pre-read. The |
27 // |prefetch_virtual_memory| option is set if the | 27 // |prefetch_virtual_memory| option is set if the |
28 // ::PrefetchVirtualMemory function should be used to pre-read DLLs, if | 28 // ::PrefetchVirtualMemory function should be used to pre-read DLLs, if |
29 // available. | 29 // available. The |prefetch_argument| option is set if a prefetch argument |
30 // should be specified when launching a process. | |
30 void GetPreReadOptions(const base::string16& product_registry_path, | 31 void GetPreReadOptions(const base::string16& product_registry_path, |
31 bool* no_pre_read, | 32 bool* no_pre_read, |
32 bool* high_priority, | 33 bool* high_priority, |
33 bool* only_if_cold, | 34 bool* only_if_cold, |
34 bool* prefetch_virtual_memory); | 35 bool* prefetch_virtual_memory, |
36 bool* prefetch_argument); | |
gab
2016/01/18 19:10:52
As suggested in caller above I'd say let's do:
en
| |
35 | 37 |
36 // Updates DLL pre-reading options in the registry with the latest info for the | 38 // Updates DLL pre-reading options in the registry with the latest info for the |
37 // next startup. |product_registry_path| is the registry path under which the | 39 // next startup. |product_registry_path| is the registry path under which the |
38 // registry key for this field trial resides. | 40 // registry key for this field trial resides. |
39 void UpdatePreReadOptions(const base::string16& product_registry_path); | 41 void UpdatePreReadOptions(const base::string16& product_registry_path); |
40 | 42 |
41 // Registers a synthetic field trial with the PreRead group currently stored in | 43 // Registers a synthetic field trial with the PreRead group currently stored in |
42 // the registry. This must be done before the first metric log | 44 // the registry. This must be done before the first metric log |
43 // (metrics::MetricsLog) is created. Otherwise, UMA metrics generated during | 45 // (metrics::MetricsLog) is created. Otherwise, UMA metrics generated during |
44 // startup won't be correctly annotated. |product_registry_path| is the registry | 46 // startup won't be correctly annotated. |product_registry_path| is the registry |
45 // path under which the key for this field trial resides. | 47 // path under which the key for this field trial resides. |
46 void RegisterPreReadSyntheticFieldTrial( | 48 void RegisterPreReadSyntheticFieldTrial( |
47 const base::string16& product_registry_path, | 49 const base::string16& product_registry_path, |
48 const RegisterPreReadSyntheticFieldTrialCallback& | 50 const RegisterPreReadSyntheticFieldTrialCallback& |
49 register_synthetic_field_trial); | 51 register_synthetic_field_trial); |
50 | 52 |
51 } // namespace startup_metric_utils | 53 } // namespace startup_metric_utils |
52 | 54 |
53 #endif // COMPONENTS_STARTUP_METRIC_UTILS_COMMON_PRE_READ_FIELD_TRIAL_UTILS_WIN _H_ | 55 #endif // COMPONENTS_STARTUP_METRIC_UTILS_COMMON_PRE_READ_FIELD_TRIAL_UTILS_WIN _H_ |
OLD | NEW |