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

Unified Diff: chrome/utility/media_galleries/picasa_albums_indexer.cc

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/utility/media_galleries/itunes_library_parser.cc ('k') | chrome/utility/printing_handler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/utility/media_galleries/picasa_albums_indexer.cc
diff --git a/chrome/utility/media_galleries/picasa_albums_indexer.cc b/chrome/utility/media_galleries/picasa_albums_indexer.cc
index 420672df3d010d7f33144ec35645734c8d630638..e99a1412f2015b8c2076167b188d8dc23f17b30d 100644
--- a/chrome/utility/media_galleries/picasa_albums_indexer.cc
+++ b/chrome/utility/media_galleries/picasa_albums_indexer.cc
@@ -28,12 +28,12 @@ class PicasaINIParser : public INIParser {
: folder_path_(folder_path),
albums_images_(albums_images) {
}
- virtual ~PicasaINIParser() {}
+ ~PicasaINIParser() override {}
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 {
if (key != kAlbumsKey)
return;
« no previous file with comments | « chrome/utility/media_galleries/itunes_library_parser.cc ('k') | chrome/utility/printing_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698