Home | History | Annotate | Download | only in update_manager

Lines Matching refs: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 {}
98 std::string PolicyName() const override { return "DefaultPolicy"; }
107 DISALLOW_COPY_AND_ASSIGN(DefaultPolicy);