summaryrefslogtreecommitdiffstats
path: root/chrome/common/ini_parser.h
diff options
context:
space:
mode:
authordcheng <dcheng@chromium.org>2014-10-21 04:55:49 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-21 11:56:04 +0000
commite59c1bb95b7f2f381d6a0c38c6f6f1c9a89c4ed4 (patch)
tree705b50a14d658317d5a3d0dc262cf5816065c5dc /chrome/common/ini_parser.h
parent1ca8a7c75b0eb927301d4168722637b7235c41a6 (diff)
downloadchromium_src-e59c1bb95b7f2f381d6a0c38c6f6f1c9a89c4ed4.zip
chromium_src-e59c1bb95b7f2f381d6a0c38c6f6f1c9a89c4ed4.tar.gz
chromium_src-e59c1bb95b7f2f381d6a0c38c6f6f1c9a89c4ed4.tar.bz2
Standardize usage of virtual/override/final in chrome/
This patch was automatically generated by applying clang fixit hints generated by the plugin to the source tree. BUG=417463 TBR=thestig@chromium.org Review URL: https://codereview.chromium.org/653773004 Cr-Commit-Position: refs/heads/master@{#300465}
Diffstat (limited to 'chrome/common/ini_parser.h')
-rw-r--r--chrome/common/ini_parser.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/common/ini_parser.h b/chrome/common/ini_parser.h
index 4c63a50..7ca7b5f 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_;