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

Unified Diff: content/common/sandbox_linux/sandbox_bpf_base_policy_linux.h

Issue 686523002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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: content/common/sandbox_linux/sandbox_bpf_base_policy_linux.h
diff --git a/content/common/sandbox_linux/sandbox_bpf_base_policy_linux.h b/content/common/sandbox_linux/sandbox_bpf_base_policy_linux.h
index 845537b803a36c75de57857191ba3d0389eb1e3e..86c203d98ecfd980817e8d12b6dd0ee1f600e073 100644
--- a/content/common/sandbox_linux/sandbox_bpf_base_policy_linux.h
+++ b/content/common/sandbox_linux/sandbox_bpf_base_policy_linux.h
@@ -20,11 +20,11 @@ namespace content {
class SandboxBPFBasePolicy : public sandbox::bpf_dsl::Policy {
public:
SandboxBPFBasePolicy();
- virtual ~SandboxBPFBasePolicy();
+ ~SandboxBPFBasePolicy() override;
- virtual sandbox::bpf_dsl::ResultExpr EvaluateSyscall(
+ sandbox::bpf_dsl::ResultExpr EvaluateSyscall(
int system_call_number) const override;
- virtual sandbox::bpf_dsl::ResultExpr InvalidSyscall() const override;
+ sandbox::bpf_dsl::ResultExpr InvalidSyscall() const override;
// A policy can implement this hook to run code right before the policy
// is passed to the BPF compiler and the sandbox is engaged.
« no previous file with comments | « content/common/sandbox_linux/bpf_utility_policy_linux.h ('k') | content/common/sandbox_linux/sandbox_seccomp_bpf_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698