Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(95)

Unified Diff: base/test/expectations/parser_unittest.cc

Issue 611153004: replace OVERRIDE and FINAL with override and final in base/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CC_ -> BASE_ Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/task_runner.cc ('k') | base/test/gtest_xml_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..a45645831ea0255c8f1270b148834b5b88d88a86 100644
--- a/base/test/expectations/parser_unittest.cc
+++ b/base/test/expectations/parser_unittest.cc
@@ -16,15 +16,15 @@ class TestExpectationParserTest : public testing::Test,
public Parser::Delegate {
public:
virtual void EmitExpectation(
- const test_expectations::Expectation& expectation) OVERRIDE {
+ const test_expectations::Expectation& expectation) override {
expectations_.push_back(expectation);
}
- virtual void OnSyntaxError(const std::string& message) OVERRIDE {
+ virtual void OnSyntaxError(const std::string& message) override {
syntax_error_ = message;
}
- virtual void OnDataError(const std::string& error) OVERRIDE {
+ virtual void OnDataError(const std::string& error) override {
data_errors_.push_back(error);
}
« no previous file with comments | « base/task_runner.cc ('k') | base/test/gtest_xml_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698