| Index: chrome/common/ini_parser_unittest.cc
|
| diff --git a/chrome/common/ini_parser_unittest.cc b/chrome/common/ini_parser_unittest.cc
|
| index b11fdef2552de47972d1bf0a1dc99aef869700d7..8d7ada55d18f8ab77faff71dfb6c10343b569b87 100644
|
| --- a/chrome/common/ini_parser_unittest.cc
|
| +++ b/chrome/common/ini_parser_unittest.cc
|
| @@ -31,15 +31,16 @@ class TestINIParser : public INIParser {
|
| : expected_triplets_(expected_triplets),
|
| pair_i_(0) {
|
| }
|
| - virtual ~TestINIParser() {}
|
| + ~TestINIParser() override {}
|
|
|
| size_t pair_i() {
|
| return pair_i_;
|
| }
|
|
|
| private:
|
| - virtual void HandleTriplet(const std::string& section, const std::string& key,
|
| - const std::string& value) override {
|
| + void HandleTriplet(const std::string& section,
|
| + const std::string& key,
|
| + const std::string& value) override {
|
| EXPECT_EQ(expected_triplets_[pair_i_].section, section);
|
| EXPECT_EQ(expected_triplets_[pair_i_].key, key);
|
| EXPECT_EQ(expected_triplets_[pair_i_].value, value);
|
|
|