Index: content/test/test_content_client.h |
diff --git a/content/test/test_content_client.h b/content/test/test_content_client.h |
index d4b27bf1017fec0dfe6398b24a4e7244fe5db327..230d3f7b74be8c4a8eb30ec30f2f1b745f47c54d 100644 |
--- a/content/test/test_content_client.h |
+++ b/content/test/test_content_client.h |
@@ -8,6 +8,7 @@ |
#include "base/compiler_specific.h" |
#include "content/public/common/content_client.h" |
+#include "ui/base/resource/data_pack.h" |
class TestContentClient : public content::ContentClient { |
public: |
@@ -30,8 +31,13 @@ class TestContentClient : public content::ContentClient { |
virtual bool SandboxPlugin(CommandLine* command_line, |
sandbox::TargetPolicy* policy) OVERRIDE; |
#endif |
+#if defined(OS_MACOSX) |
+ virtual int GetSandboxPolicyForSandboxType(int sandbox_type) const OVERRIDE; |
+#endif |
private: |
+ ui::DataPack data_pack_; |
+ |
DISALLOW_COPY_AND_ASSIGN(TestContentClient); |
}; |