A PruneCondition that conjoins two other PruneConditions.
More...
#include "client/prune_crash_reports.h"
A PruneCondition that conjoins two other PruneConditions.
◆ BinaryPruneCondition()
Evaluates two sub-conditions according to the specified logical operator.
This implements left-to-right evaluation. For Operator::AND, this means if the lhs is false
, the rhs will not be consulted. Similarly, with Operator::OR, if the lhs is true
, the rhs will not be consulted.
- Parameters
-
[in] | op | The logical operator to apply on lhs and rhs. |
[in] | lhs | The left-hand side of op. This class takes ownership. |
[in] | rhs | The right-hand side of op. This class takes ownership. |
◆ ShouldPruneReport()
Evaluates a crash report for deletion.
- Parameters
-
[in] | report | The crash report to evaluate. |
- Returns
true
if the crash report should be deleted, false
if it should be kept.
Implements crashpad::PruneCondition.
The documentation for this class was generated from the following files:
- client/prune_crash_reports.h
- client/prune_crash_reports.cc