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

Unified Diff: sandbox/linux/seccomp-bpf/bpf_tests.h

Issue 628233002: replace OVERRIDE and FINAL with override and final in sandbox/ (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: sandbox/linux/seccomp-bpf/bpf_tests.h
diff --git a/sandbox/linux/seccomp-bpf/bpf_tests.h b/sandbox/linux/seccomp-bpf/bpf_tests.h
index 2a2139e66ba21ed0bc02ef6e33809545dba4f7bb..c8166cc000b964bc6e238ce982887dd2c01c0b96 100644
--- a/sandbox/linux/seccomp-bpf/bpf_tests.h
+++ b/sandbox/linux/seccomp-bpf/bpf_tests.h
@@ -104,10 +104,10 @@ class BPFTesterSimpleDelegate : public BPFTesterDelegate {
: test_function_(test_function) {}
virtual ~BPFTesterSimpleDelegate() {}
- virtual scoped_ptr<SandboxBPFPolicy> GetSandboxBPFPolicy() OVERRIDE {
+ virtual scoped_ptr<SandboxBPFPolicy> GetSandboxBPFPolicy() override {
return scoped_ptr<SandboxBPFPolicy>(new PolicyClass());
}
- virtual void RunTestFunction() OVERRIDE {
+ virtual void RunTestFunction() override {
DCHECK(test_function_);
test_function_();
}
« no previous file with comments | « sandbox/linux/seccomp-bpf/bpf_tester_compatibility_delegate.h ('k') | sandbox/linux/seccomp-bpf/bpf_tests_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698