buffet: Cleaned up the remaining linter warnings
Fixed the remaining warnings from cpplint. So now every file
in platform2/buffet conforms to the default linter settings.
BUG=None
TEST=Code still compiles and unit tests pass
Change-Id: I094d06789590c6c76679c1e1c758525898e86923
Reviewed-on: https://chromium-review.googlesource.com/199414
Tested-by: Alex Vakulenko <avakulenko@chromium.org>
Reviewed-by: Christopher Wiley <wiley@chromium.org>
Commit-Queue: Alex Vakulenko <avakulenko@chromium.org>
diff --git a/buffet/storage_impls.h b/buffet/storage_impls.h
index 04d5f0f..6e69084 100644
--- a/buffet/storage_impls.h
+++ b/buffet/storage_impls.h
@@ -16,7 +16,7 @@
// Persists the given Value to an atomically written file.
class FileStorage : public StorageInterface {
public:
- FileStorage(const base::FilePath& file_path);
+ explicit FileStorage(const base::FilePath& file_path);
virtual ~FileStorage() = default;
virtual std::unique_ptr<base::Value> Load() override;
virtual bool Save(const base::Value* config) override;