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

Unified Diff: chrome/browser/safe_browsing/module_integrity_verifier_win.h

Issue 440753002: The incident reporting service now calls VerifyModule. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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: 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,

Powered by Google App Engine
This is Rietveld 408576698