Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(392)

Side by Side Diff: content/test/render_test_utils.cc

Issue 10449094: Fix client-side phishing detection test flakiness and ChromeOS failure. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Generalize the fix and apply it to webrtc_audio_device_test Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698