| Index: base/json/json_string_value_serializer.h
|
| diff --git a/base/json/json_string_value_serializer.h b/base/json/json_string_value_serializer.h
|
| index 014ef9f7c571b3caad2cf3802b1d9d9c3c1a395b..38e35e6dee2cc2e79f2d68cbf9b9ea2cdb003764 100644
|
| --- a/base/json/json_string_value_serializer.h
|
| +++ b/base/json/json_string_value_serializer.h
|
| @@ -38,7 +38,7 @@ class BASE_EXPORT JSONStringValueSerializer : 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 string 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.
|
| @@ -51,8 +51,8 @@ class BASE_EXPORT JSONStringValueSerializer : 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;
|
|
|
| void set_pretty_print(bool new_value) { pretty_print_ = new_value; }
|
| bool pretty_print() { return pretty_print_; }
|
|
|