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

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

Issue 1548133002: Switch to standard integer types in chrome/browser/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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_INCIDENT_REPORTING_BINARY_INTEGRITY_ANALYZE R_H_ 5 #ifndef CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORTING_BINARY_INTEGRITY_ANALYZE R_H_
6 #define CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORTING_BINARY_INTEGRITY_ANALYZE R_H_ 6 #define CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORTING_BINARY_INTEGRITY_ANALYZE R_H_
7 7
8 #include <stddef.h>
9
8 #include <string> 10 #include <string>
9 11
10 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
11 13
12 namespace base { 14 namespace base {
13 class FilePath; 15 class FilePath;
14 class TimeDelta; 16 class TimeDelta;
15 } // namespace base 17 } // namespace base
16 18
17 namespace safe_browsing { 19 namespace safe_browsing {
(...skipping 14 matching lines...) Expand all
32 const base::TimeDelta& verification_time); 34 const base::TimeDelta& verification_time);
33 35
34 // Clear past incident reports for a file or bundle. This is used if the code 36 // Clear past incident reports for a file or bundle. This is used if the code
35 // object is now integral, as it will allow future incidents to be reported. 37 // object is now integral, as it will allow future incidents to be reported.
36 void ClearBinaryIntegrityForFile(IncidentReceiver* incident_receiver, 38 void ClearBinaryIntegrityForFile(IncidentReceiver* incident_receiver,
37 const std::string& basename); 39 const std::string& basename);
38 40
39 } // namespace safe_browsing 41 } // namespace safe_browsing
40 42
41 #endif // CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORTING_BINARY_INTEGRITY_ANAL YZER_H_ 43 #endif // CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORTING_BINARY_INTEGRITY_ANAL YZER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698