Chromium Code Reviews| Index: chrome/browser/safe_browsing/module_integrity_verifier_win.h |
| diff --git a/chrome/browser/safe_browsing/module_integrity_verifier_win.h b/chrome/browser/safe_browsing/module_integrity_verifier_win.h |
| index 531c63a44a1b12faf2d58558380b0d6a7a75afe3..0c81682dd87d1367c636754072654dec5f3abe27 100644 |
| --- a/chrome/browser/safe_browsing/module_integrity_verifier_win.h |
| +++ b/chrome/browser/safe_browsing/module_integrity_verifier_win.h |
| @@ -19,6 +19,15 @@ class PEImageAsData; |
| namespace safe_browsing { |
| +// The max number of modules in |modules_to_verify|. |
| +const int kModulesToVerifyMaxCount = 5; |
|
grt (UTC plus 2)
2014/08/06 01:28:10
remove
krstnmnlsn
2014/08/06 21:55:12
Done.
|
| + |
| +// The modules on which we will run VerifyModule. |
| +const wchar_t* modules_to_verify[]; |
|
grt (UTC plus 2)
2014/08/06 01:28:11
move this to the unnamed namespace of environment_
krstnmnlsn
2014/08/06 21:55:12
Done.
|
| + |
| +// Returns the number of names in |modules_to_verify|. |
| +int ModulesToVerifyCount(); |
|
grt (UTC plus 2)
2014/08/06 01:28:10
remove
krstnmnlsn
2014/08/06 21:55:12
Done.
|
| + |
| // This enum defines the possible module states VerifyModule can return. |
| enum ModuleState { |
| MODULE_STATE_UNKNOWN, |