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

Unified Diff: chrome/browser/extensions/sandboxed_unpacker.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/sandboxed_unpacker.h
diff --git a/chrome/browser/extensions/sandboxed_unpacker.h b/chrome/browser/extensions/sandboxed_unpacker.h
index 323b4c65e825f8eab4242891406e7f404cd2f801..60a5bbdd4aa0b517857e283c22c11b4bcc92bb2a 100644
--- a/chrome/browser/extensions/sandboxed_unpacker.h
+++ b/chrome/browser/extensions/sandboxed_unpacker.h
@@ -154,7 +154,7 @@ class SandboxedUnpacker : public content::UtilityProcessHostClient {
friend class ProcessHostClient;
friend class SandboxedUnpackerTest;
- virtual ~SandboxedUnpacker();
+ ~SandboxedUnpacker() override;
// Set |temp_dir_| as a temporary directory to unpack the extension in.
// Return true on success.
@@ -175,8 +175,8 @@ class SandboxedUnpacker : public content::UtilityProcessHostClient {
void StartProcessOnIOThread(const base::FilePath& temp_crx_path);
// UtilityProcessHostClient
- virtual bool OnMessageReceived(const IPC::Message& message) override;
- virtual void OnProcessCrashed(int exit_code) override;
+ bool OnMessageReceived(const IPC::Message& message) override;
+ void OnProcessCrashed(int exit_code) override;
// IPC message handlers.
void OnUnpackExtensionSucceeded(const base::DictionaryValue& manifest);

Powered by Google App Engine
This is Rietveld 408576698