Index: base/json/json_file_value_serializer.h |
diff --git a/base/json/json_file_value_serializer.h b/base/json/json_file_value_serializer.h |
index 642729f8f5c25f5c44563dcfedfcbdef5be8129b..f0f556c2dc68a23457ad2aa8ec3db7a8a209947d 100644 |
--- a/base/json/json_file_value_serializer.h |
+++ b/base/json/json_file_value_serializer.h |
@@ -22,7 +22,7 @@ class BASE_EXPORT JSONFileValueSerializer : public base::ValueSerializer { |
: json_file_path_(json_file_path), |
allow_trailing_comma_(false) {} |
- virtual ~JSONFileValueSerializer() {} |
+ ~JSONFileValueSerializer() override {} |
// DO NOT USE except in unit tests to verify the file was written properly. |
// We should never serialize directly to a file since this will block the |
@@ -32,7 +32,7 @@ class BASE_EXPORT JSONFileValueSerializer : public base::ValueSerializer { |
// Attempt to serialize the data structure represented by Value into |
// JSON. If the return value is true, the result will have been written |
// into the file whose name was passed into the constructor. |
- virtual bool Serialize(const base::Value& root) override; |
+ bool Serialize(const base::Value& root) override; |
// Equivalent to Serialize(root) except binary values are omitted from the |
// output. |
@@ -45,8 +45,8 @@ class BASE_EXPORT JSONFileValueSerializer : public base::ValueSerializer { |
// If |error_message| is non-null, it will be filled in with a formatted |
// error message including the location of the error if appropriate. |
// The caller takes ownership of the returned value. |
- virtual base::Value* Deserialize(int* error_code, |
- std::string* error_message) override; |
+ base::Value* Deserialize(int* error_code, |
+ std::string* error_message) override; |
// This enum is designed to safely overlap with JSONReader::JsonParseError. |
enum JsonFileError { |