| OLD | NEW |
| 1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2015 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_COMMON_SAFE_BROWSING_SIGNATURE_EVALUATOR_MAC_H_ | 5 #ifndef CHROME_BROWSER_SAFE_BROWSING_SIGNATURE_EVALUATOR_MAC_H_ |
| 6 #define CHROME_COMMON_SAFE_BROWSING_SIGNATURE_EVALUATOR_MAC_H_ | 6 #define CHROME_BROWSER_SAFE_BROWSING_SIGNATURE_EVALUATOR_MAC_H_ |
| 7 | 7 |
| 8 #include <Security/Security.h> | 8 #include <Security/Security.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
| 13 #include "base/mac/scoped_cftyperef.h" | 13 #include "base/mac/scoped_cftyperef.h" |
| 14 #include "base/macros.h" | 14 #include "base/macros.h" |
| 15 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
| 16 #include "chrome/browser/safe_browsing/incident_reporting/binary_integrity_incid
ent.h" | 16 #include "chrome/browser/safe_browsing/incident_reporting/binary_integrity_incid
ent.h" |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 base::ScopedCFTypeRef<SecStaticCodeRef> code_; | 61 base::ScopedCFTypeRef<SecStaticCodeRef> code_; |
| 62 | 62 |
| 63 // The requirement object constructed from the requirement string. | 63 // The requirement object constructed from the requirement string. |
| 64 base::ScopedCFTypeRef<SecRequirementRef> requirement_; | 64 base::ScopedCFTypeRef<SecRequirementRef> requirement_; |
| 65 | 65 |
| 66 DISALLOW_COPY_AND_ASSIGN(MacSignatureEvaluator); | 66 DISALLOW_COPY_AND_ASSIGN(MacSignatureEvaluator); |
| 67 }; | 67 }; |
| 68 | 68 |
| 69 } // namespace safe_browsing | 69 } // namespace safe_browsing |
| 70 | 70 |
| 71 #endif // CHROME_COMMON_SAFE_BROWSING_SIGNATURE_EVALUATOR_MAC_H_ | 71 #endif // CHROME_BROWSER_SAFE_BROWSING_SIGNATURE_EVALUATOR_MAC_H_ |
| OLD | NEW |