| 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 80063739dc596948a519d73c4a86d00406f86c82..fc12b6be51d2a103fdef252530023704d9b93ae4 100644
|
| --- a/base/json/json_file_value_serializer.h
|
| +++ b/base/json/json_file_value_serializer.h
|
| @@ -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;
|
| + virtual bool Serialize(const base::Value& root) override;
|
|
|
| // Equivalent to Serialize(root) except binary values are omitted from the
|
| // output.
|
| @@ -46,7 +46,7 @@ class BASE_EXPORT JSONFileValueSerializer : public base::ValueSerializer {
|
| // 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;
|
| + std::string* error_message) override;
|
|
|
| // This enum is designed to safely overlap with JSONReader::JsonParseError.
|
| enum JsonFileError {
|
|
|