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

Unified Diff: chrome/browser/ui/webui/extensions/extension_loader_handler.cc

Issue 671653002: Standardize usage of virtual/override/final in chrome/browser/ui/ (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
Index: chrome/browser/ui/webui/extensions/extension_loader_handler.cc
diff --git a/chrome/browser/ui/webui/extensions/extension_loader_handler.cc b/chrome/browser/ui/webui/extensions/extension_loader_handler.cc
index 5bf5a03fb1ceafe4a8a003d8656a8fcc6f8603c9..6dc631b4067423be87770334b91444b296a72886 100644
--- a/chrome/browser/ui/webui/extensions/extension_loader_handler.cc
+++ b/chrome/browser/ui/webui/extensions/extension_loader_handler.cc
@@ -51,7 +51,7 @@ class ExtensionLoaderHandler::FileHelper
: public ui::SelectFileDialog::Listener {
public:
explicit FileHelper(ExtensionLoaderHandler* loader_handler);
- virtual ~FileHelper();
+ ~FileHelper() override;
// Create a FileDialog for the user to select the unpacked extension
// directory.
@@ -59,11 +59,11 @@ class ExtensionLoaderHandler::FileHelper
private:
// ui::SelectFileDialog::Listener implementation.
- virtual void FileSelected(const base::FilePath& path,
- int index,
- void* params) override;
- virtual void MultiFilesSelected(
- const std::vector<base::FilePath>& files, void* params) override;
+ void FileSelected(const base::FilePath& path,
+ int index,
+ void* params) override;
+ void MultiFilesSelected(const std::vector<base::FilePath>& files,
+ void* params) override;
// The associated ExtensionLoaderHandler. Weak, but guaranteed to be alive,
// as it owns this object.

Powered by Google App Engine
This is Rietveld 408576698