Index: content/public/common/sandbox_init.h |
diff --git a/content/public/common/sandbox_init.h b/content/public/common/sandbox_init.h |
index 313662da0b016c46f03cf4983d44bd113ce466a0..7209121c0e93223639a3efab50f1e33b73718221 100644 |
--- a/content/public/common/sandbox_init.h |
+++ b/content/public/common/sandbox_init.h |
@@ -16,7 +16,9 @@ class FilePath; |
} |
namespace sandbox { |
-class SandboxBPFPolicy; |
+namespace bpf_dsl { |
+class SandboxBPFDSLPolicy; |
+} |
struct SandboxInterfaceInfo; |
} |
@@ -86,12 +88,12 @@ class SandboxInitializerDelegate; |
// Initialize a seccomp-bpf sandbox. |policy| may not be NULL. |
// Returns true if the sandbox has been properly engaged. |
CONTENT_EXPORT bool InitializeSandbox( |
- scoped_ptr<sandbox::SandboxBPFPolicy> policy); |
+ scoped_ptr<sandbox::bpf_dsl::SandboxBPFDSLPolicy> policy); |
// Return a "baseline" policy. This is used by a SandboxInitializerDelegate to |
// implement a policy that is derived from the baseline. |
-CONTENT_EXPORT scoped_ptr<sandbox::SandboxBPFPolicy> |
-GetBPFSandboxBaselinePolicy(); |
+CONTENT_EXPORT scoped_ptr<sandbox::bpf_dsl::SandboxBPFDSLPolicy> |
+ GetBPFSandboxBaselinePolicy(); |
#endif // defined(OS_LINUX) |
} // namespace content |