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

Side by Side Diff: chrome/browser/safe_browsing/incident_reporting/module_integrity_verifier_win.h

Issue 470213002: Moving all the incident reporting stuff to a common folder (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@binsign
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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 CHROME_BROWSER_SAFE_BROWSING_MODULE_INTEGRITY_VERIFIER_WIN_H_ 5 #ifndef CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORTING_MODULE_INTEGRITY_VERIFIE R_WIN_H_
6 #define CHROME_BROWSER_SAFE_BROWSING_MODULE_INTEGRITY_VERIFIER_WIN_H_ 6 #define CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORTING_MODULE_INTEGRITY_VERIFIE R_WIN_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <set> 10 #include <set>
11 #include <string> 11 #include <string>
12 12
13 namespace base { 13 namespace base {
14 namespace win { 14 namespace win {
15 class PEImage; 15 class PEImage;
16 class PEImageAsData; 16 class PEImageAsData;
(...skipping 19 matching lines...) Expand all
36 uint32_t* code_size); 36 uint32_t* code_size);
37 37
38 // Examines the code section of the given module in memory and on disk, looking 38 // Examines the code section of the given module in memory and on disk, looking
39 // for unexpected differences. Returns a ModuleState and and a set of the 39 // for unexpected differences. Returns a ModuleState and and a set of the
40 // possibly modified exports. 40 // possibly modified exports.
41 ModuleState VerifyModule(const wchar_t* module_name, 41 ModuleState VerifyModule(const wchar_t* module_name,
42 std::set<std::string>* modified_exports); 42 std::set<std::string>* modified_exports);
43 43
44 } // namespace safe_browsing 44 } // namespace safe_browsing
45 45
46 #endif // CHROME_BROWSER_SAFE_BROWSING_MODULE_INTEGRITY_VERIFIER_WIN_H_ 46 #endif // CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORTING_MODULE_INTEGRITY_VERI FIER_WIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698