| Index: sandbox/linux/seccomp-bpf/verifier.h
|
| diff --git a/sandbox/linux/seccomp-bpf/verifier.h b/sandbox/linux/seccomp-bpf/verifier.h
|
| index fff5b6339ea7e758b8b0bc80e85cc8125d333d21..8ec85e306a521a9cdf6feb4115a351c664fde6cd 100644
|
| --- a/sandbox/linux/seccomp-bpf/verifier.h
|
| +++ b/sandbox/linux/seccomp-bpf/verifier.h
|
| @@ -10,9 +10,9 @@
|
| #include <utility>
|
| #include <vector>
|
|
|
| -namespace playground2 {
|
| +namespace sandbox {
|
|
|
| -class SandboxBpfPolicy;
|
| +class SandboxBPFPolicy;
|
|
|
| class Verifier {
|
| public:
|
| @@ -23,9 +23,9 @@ class Verifier {
|
| // set by the "evaluators".
|
| // Upon success, "err" is set to NULL. Upon failure, it contains a static
|
| // error message that does not need to be free()'d.
|
| - static bool VerifyBPF(Sandbox* sandbox,
|
| + static bool VerifyBPF(SandboxBPF* sandbox,
|
| const std::vector<struct sock_filter>& program,
|
| - const SandboxBpfPolicy& policy,
|
| + const SandboxBPFPolicy& policy,
|
| const char** err);
|
|
|
| // Evaluate a given BPF program for a particular set of system call
|
|
|