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

Unified Diff: chrome/browser/extensions/startup_helper.h

Issue 666153002: Standardize usage of virtual/override/final in chrome/browser/extensions/ (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/extensions/startup_helper.h
diff --git a/chrome/browser/extensions/startup_helper.h b/chrome/browser/extensions/startup_helper.h
index d6d36b47bb620b0aabfcdb62cb95a05b55120175..c291e381d50809a9d04c8baf11b9baac182efd3a 100644
--- a/chrome/browser/extensions/startup_helper.h
+++ b/chrome/browser/extensions/startup_helper.h
@@ -20,13 +20,12 @@ namespace extensions {
class StartupHelper : public PackExtensionJob::Client {
public:
StartupHelper();
- virtual ~StartupHelper();
+ ~StartupHelper() override;
- virtual void OnPackSuccess(
- const base::FilePath& crx_path,
- const base::FilePath& output_private_key_path) override;
- virtual void OnPackFailure(const std::string& error_message,
- ExtensionCreator::ErrorType type) override;
+ void OnPackSuccess(const base::FilePath& crx_path,
+ const base::FilePath& output_private_key_path) override;
+ void OnPackFailure(const std::string& error_message,
+ ExtensionCreator::ErrorType type) override;
// Handle --pack-extension flag from the |cmd_line| by packing the specified
// extension. Returns false if the pack job failed.
« no previous file with comments | « chrome/browser/extensions/standard_management_policy_provider.h ('k') | chrome/browser/extensions/startup_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698