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

Unified Diff: chrome/common/ini_parser.h

Issue 653773004: Standardize usage of virtual/override/final in chrome/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « chrome/common/icon_with_badge_image_source.h ('k') | chrome/common/ini_parser_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/ini_parser.h
diff --git a/chrome/common/ini_parser.h b/chrome/common/ini_parser.h
index 4c63a50a29f520f9cfbbb2638be7da2321397168..7ca7b5f792d35f238ebc62fba6e45eb977eb4e31 100644
--- a/chrome/common/ini_parser.h
+++ b/chrome/common/ini_parser.h
@@ -46,15 +46,15 @@ class INIParser {
class DictionaryValueINIParser : public INIParser {
public:
DictionaryValueINIParser();
- virtual ~DictionaryValueINIParser();
+ ~DictionaryValueINIParser() override;
const base::DictionaryValue& root() const { return root_; }
private:
// INIParser implementation.
- 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;
base::DictionaryValue root_;
« no previous file with comments | « chrome/common/icon_with_badge_image_source.h ('k') | chrome/common/ini_parser_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698