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/vpn_service.h b/vpn_service.h
index 3ac9171..5f9a0b1 100644
--- a/vpn_service.h
+++ b/vpn_service.h
@@ -48,8 +48,8 @@
 
  protected:
   // Inherited from Service.
-  virtual bool IsAutoConnectable(const char **reason) const;
-  virtual std::string GetTethering(Error *error) const override;
+  bool IsAutoConnectable(const char **reason) const override;
+  std::string GetTethering(Error *error) const override;
 
  private:
   friend class VPNServiceTest;