diff options
Diffstat (limited to 'common/hardware_interface.h')
-rw-r--r-- | common/hardware_interface.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common/hardware_interface.h b/common/hardware_interface.h index 4d7c162a..239e7c81 100644 --- a/common/hardware_interface.h +++ b/common/hardware_interface.h @@ -110,9 +110,9 @@ class HardwareInterface { // |SetFirstActiveOmahaPingSent()|. virtual bool GetFirstActiveOmahaPingSent() const = 0; - // Persist the fact that first active ping was sent to omaha. It bails out if - // it fails. - virtual void SetFirstActiveOmahaPingSent() = 0; + // Persist the fact that first active ping was sent to omaha and returns false + // if failed to persist it. + virtual bool SetFirstActiveOmahaPingSent() = 0; }; } // namespace chromeos_update_engine |