platform2: sweep the lint errors identified by the updated linter

cpplint.py has been updated and identified new issues in existing
code. Stuff like overridden functions that specify 'override' should
not be marked as 'virtual', and constructors with no parameters
should not be marked as 'explicit'.

BUG=None
TEST=cpplint.py `find ./platform2 -name *.cc -or -name *.h`

Change-Id: Ibb9de43286d874d076ffd5ebb1b13c36ec794f01
Reviewed-on: https://chromium-review.googlesource.com/211950
Reviewed-by: Alex Vakulenko <avakulenko@chromium.org>
Commit-Queue: Alex Vakulenko <avakulenko@chromium.org>
Tested-by: Alex Vakulenko <avakulenko@chromium.org>
diff --git a/property_observer.h b/property_observer.h
index 94bac81..1cc5632 100644
--- a/property_observer.h
+++ b/property_observer.h
@@ -36,7 +36,7 @@
   // Implements PropertyObserverInterface.  Compares the saved value with
   // what the Get() method of |accessor_| returns.  If the value has changed
   // |callback_| is invoked and |saved_value_| is updated.
-  virtual void Update() override {
+  void Update() override {
     Error error;
     T new_value_ = accessor_->Get(&error);
     if (!error.IsSuccess() || saved_value_ == new_value_) {