Index: content/test/render_test_utils.cc |
diff --git a/content/test/render_test_utils.cc b/content/test/render_test_utils.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..fc86cf8d101538ffc5eff9231198dc7385d53a17 |
--- /dev/null |
+++ b/content/test/render_test_utils.cc |
@@ -0,0 +1,25 @@ |
+// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "content/test/render_test_utils.h" |
+ |
+namespace content { |
+ |
+WebKit::WebSandboxSupport* |
+RendererWebKitPlatformSupportImplNoSandbox::sandboxSupport() { |
+ return NULL; |
+} |
+ |
+RenderThreadImplNoSandbox::RenderThreadImplNoSandbox( |
+ const std::string& channel_name) |
+ : RenderThreadImpl(channel_name) {} |
+ |
+RenderThreadImplNoSandbox::~RenderThreadImplNoSandbox() {} |
+ |
+RendererWebKitPlatformSupportImpl* |
+RenderThreadImplNoSandbox::CreateWebKitPlatformSupport() { |
+ return new RendererWebKitPlatformSupportImplNoSandbox(); |
+} |
+ |
+} // namespace content |