Disable ContentSettingBubbleModelTest.RPHAllow which is flaky.
[chromium-blink-merge.git] / content / renderer / renderer_main_platform_delegate_android.cc
blob3a92a4f8fa1ebb6b78c8dd799f5872b5bdbe28e7
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.
5 #include "content/renderer/renderer_main_platform_delegate.h"
6 #include "base/logging.h"
8 namespace content {
10 RendererMainPlatformDelegate::RendererMainPlatformDelegate(
11 const MainFunctionParams& parameters)
12 : parameters_(parameters) {
15 RendererMainPlatformDelegate::~RendererMainPlatformDelegate() {
18 void RendererMainPlatformDelegate::PlatformInitialize() {
21 void RendererMainPlatformDelegate::PlatformUninitialize() {
24 bool RendererMainPlatformDelegate::InitSandboxTests(bool no_sandbox) {
25 return true;
28 bool RendererMainPlatformDelegate::EnableSandbox() {
29 return true;
32 void RendererMainPlatformDelegate::RunSandboxTests(bool no_sandbox) {
35 } // namespace content