Chromium Code Reviews| Index: chrome/browser/chrome_elf_init_win.h |
| diff --git a/chrome/browser/chrome_elf_init_win.h b/chrome/browser/chrome_elf_init_win.h |
| index 84d3da49e49f6eafe28a3aaabbf272a27a9a42c3..f711b565adbc75b1c0117c98b586f96ce9835be1 100644 |
| --- a/chrome/browser/chrome_elf_init_win.h |
| +++ b/chrome/browser/chrome_elf_init_win.h |
| @@ -5,6 +5,8 @@ |
| #ifndef CHROME_BROWSER_CHROME_ELF_INIT_WIN_H_ |
| #define CHROME_BROWSER_CHROME_ELF_INIT_WIN_H_ |
| +#include "base/strings/string16.h" |
| + |
| // Field trial name and full name for the blacklist disabled group. |
| extern const char kBrowserBlacklistTrialName[]; |
| extern const char kBrowserBlacklistTrialDisabledGroupName[]; |
| @@ -19,4 +21,7 @@ void AddFinchBlacklistToRegistry(); |
| // Set the required state for an enabled browser blacklist. |
| void BrowserBlacklistBeaconSetup(); |
| +// Retrieves the set of blacklisted modules that are loaded in the process. |
| +bool RetrieveBlacklistedModules(std::vector<base::string16>* module_names); |
|
csharp
2014/08/05 21:08:59
This names doesn't quite seem to match, maybe Retr
robertshield
2014/08/06 16:38:32
Renamed to GetLoadedBlacklistModules.
|
| + |
| #endif // CHROME_BROWSER_CHROME_ELF_INIT_WIN_H_ |