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

Side by Side Diff: content/common/sandbox_linux/bpf_renderer_policy_linux.h

Issue 630853003: Replace OVERRIDE and FINAL with override and final in content/common/[a-s]* (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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_COMMON_SANDBOX_LINUX_BPF_RENDERER_POLICY_LINUX_H_ 5 #ifndef CONTENT_COMMON_SANDBOX_LINUX_BPF_RENDERER_POLICY_LINUX_H_
6 #define CONTENT_COMMON_SANDBOX_LINUX_BPF_RENDERER_POLICY_LINUX_H_ 6 #define CONTENT_COMMON_SANDBOX_LINUX_BPF_RENDERER_POLICY_LINUX_H_
7 7
8 #include "content/common/sandbox_linux/sandbox_bpf_base_policy_linux.h" 8 #include "content/common/sandbox_linux/sandbox_bpf_base_policy_linux.h"
9 9
10 namespace content { 10 namespace content {
11 11
12 // This policy can be used by both renderer and worker processes. 12 // This policy can be used by both renderer and worker processes.
13 class RendererProcessPolicy : public SandboxBPFBasePolicy { 13 class RendererProcessPolicy : public SandboxBPFBasePolicy {
14 public: 14 public:
15 RendererProcessPolicy(); 15 RendererProcessPolicy();
16 virtual ~RendererProcessPolicy(); 16 virtual ~RendererProcessPolicy();
17 17
18 virtual sandbox::bpf_dsl::ResultExpr EvaluateSyscall( 18 virtual sandbox::bpf_dsl::ResultExpr EvaluateSyscall(
19 int system_call_number) const OVERRIDE; 19 int system_call_number) const override;
20 20
21 private: 21 private:
22 DISALLOW_COPY_AND_ASSIGN(RendererProcessPolicy); 22 DISALLOW_COPY_AND_ASSIGN(RendererProcessPolicy);
23 }; 23 };
24 24
25 } // namespace content 25 } // namespace content
26 26
27 #endif // CONTENT_COMMON_SANDBOX_LINUX_BPF_RENDERER_POLICY_LINUX_H_ 27 #endif // CONTENT_COMMON_SANDBOX_LINUX_BPF_RENDERER_POLICY_LINUX_H_
OLDNEW
« no previous file with comments | « content/common/sandbox_linux/bpf_ppapi_policy_linux.h ('k') | content/common/sandbox_linux/bpf_utility_policy_linux.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698