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

Unified Diff: chrome/browser/safe_browsing/sandboxed_zip_analyzer.h

Issue 657373004: Standardize usage of virtual/override/final in chrome/browser/safe_browsing/ (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/safe_browsing/sandboxed_zip_analyzer.h
diff --git a/chrome/browser/safe_browsing/sandboxed_zip_analyzer.h b/chrome/browser/safe_browsing/sandboxed_zip_analyzer.h
index e1cdfd73a18d2e51098083c5577dc30b6bb4d0ac..7075b452f4dcde096130e0fc1a2e513bc53dc00c 100644
--- a/chrome/browser/safe_browsing/sandboxed_zip_analyzer.h
+++ b/chrome/browser/safe_browsing/sandboxed_zip_analyzer.h
@@ -40,7 +40,7 @@ class SandboxedZipAnalyzer : public content::UtilityProcessHostClient {
void Start();
private:
- virtual ~SandboxedZipAnalyzer();
+ ~SandboxedZipAnalyzer() override;
// Creates the sandboxed utility process and tells it to start analysis.
// Runs on a worker thread.
@@ -48,7 +48,7 @@ class SandboxedZipAnalyzer : public content::UtilityProcessHostClient {
// content::UtilityProcessHostClient implementation.
// These notifications run on the IO thread.
- virtual bool OnMessageReceived(const IPC::Message& message) override;
+ bool OnMessageReceived(const IPC::Message& message) override;
// Notification that the utility process is running, and we can now get its
// process handle.
« no previous file with comments | « chrome/browser/safe_browsing/safe_browsing_test.cc ('k') | chrome/browser/safe_browsing/two_phase_uploader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698