| Index: base/test/expectations/parser_unittest.cc
|
| diff --git a/base/test/expectations/parser_unittest.cc b/base/test/expectations/parser_unittest.cc
|
| index 1c55a05f1610d5a6e9072afd532369184a4d9179..19f821b8c8293afa1f540e42758fcf0bceed32e8 100644
|
| --- a/base/test/expectations/parser_unittest.cc
|
| +++ b/base/test/expectations/parser_unittest.cc
|
| @@ -15,16 +15,16 @@ using test_expectations::Parser;
|
| class TestExpectationParserTest : public testing::Test,
|
| public Parser::Delegate {
|
| public:
|
| - virtual void EmitExpectation(
|
| - const test_expectations::Expectation& expectation) OVERRIDE {
|
| + void EmitExpectation(
|
| + const test_expectations::Expectation& expectation) override {
|
| expectations_.push_back(expectation);
|
| }
|
|
|
| - virtual void OnSyntaxError(const std::string& message) OVERRIDE {
|
| + void OnSyntaxError(const std::string& message) override {
|
| syntax_error_ = message;
|
| }
|
|
|
| - virtual void OnDataError(const std::string& error) OVERRIDE {
|
| + void OnDataError(const std::string& error) override {
|
| data_errors_.push_back(error);
|
| }
|
|
|
|
|