summaryrefslogtreecommitdiffstats
path: root/chrome/common/extensions/api/speech/tts_engine_manifest_handler.cc
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/extensions/api/speech/tts_engine_manifest_handler.cc
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/extensions/api/speech/tts_engine_manifest_handler.cc')
-rw-r--r--chrome/common/extensions/api/speech/tts_engine_manifest_handler.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/common/extensions/api/speech/tts_engine_manifest_handler.cc b/chrome/common/extensions/api/speech/tts_engine_manifest_handler.cc
index 9919962..9a5b544 100644
--- a/chrome/common/extensions/api/speech/tts_engine_manifest_handler.cc
+++ b/chrome/common/extensions/api/speech/tts_engine_manifest_handler.cc
@@ -22,7 +22,7 @@ namespace {
struct TtsVoices : public Extension::ManifestData {
TtsVoices() {}
- virtual ~TtsVoices() {}
+ ~TtsVoices() override {}
std::vector<extensions::TtsVoice> voices;
};