OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "content/test/render_test_utils.h" |
| 6 |
| 7 namespace content { |
| 8 |
| 9 WebKit::WebSandboxSupport* |
| 10 RendererWebKitPlatformSupportImplNoSandbox::sandboxSupport() { |
| 11 return NULL; |
| 12 } |
| 13 |
| 14 RenderThreadImplNoSandbox::RenderThreadImplNoSandbox( |
| 15 const std::string& channel_name) |
| 16 : RenderThreadImpl(channel_name) {} |
| 17 |
| 18 RenderThreadImplNoSandbox::~RenderThreadImplNoSandbox() {} |
| 19 |
| 20 RendererWebKitPlatformSupportImpl* |
| 21 RenderThreadImplNoSandbox::CreateWebKitPlatformSupport() { |
| 22 return new RendererWebKitPlatformSupportImplNoSandbox(); |
| 23 } |
| 24 |
| 25 } // namespace content |
OLD | NEW |