Lines Matching defs:DefaultPolicy
30 // Auxiliary state class for DefaultPolicy evaluations.
34 // exception here to ensure that DefaultPolicy indeed serves as a safe (and
58 // The DefaultPolicy is a safe Policy implementation that doesn't fail. The
61 class DefaultPolicy : public Policy {
63 explicit DefaultPolicy(chromeos_update_engine::ClockInterface* clock);
64 DefaultPolicy() : DefaultPolicy(nullptr) {}
65 ~DefaultPolicy() override {}
91 std::string PolicyName() const override { return "DefaultPolicy"; }
100 DISALLOW_COPY_AND_ASSIGN(DefaultPolicy);