blob: 7af62125629e63f1a25e2194ceced04ecd8ff74c [file] [log] [blame]
// Copyright 2017 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/renderer/renderer_main_platform_delegate.h"
namespace content {
RendererMainPlatformDelegate::RendererMainPlatformDelegate(
const MainFunctionParams& parameters) {}
RendererMainPlatformDelegate::~RendererMainPlatformDelegate() {}
void RendererMainPlatformDelegate::PlatformInitialize() {}
void RendererMainPlatformDelegate::PlatformUninitialize() {}
bool RendererMainPlatformDelegate::EnableSandbox() {
// TODO(750938): Report NOTIMPLEMENTED() here until we re-enable sandboxing
// of sub-processes.
NOTIMPLEMENTED();
return true;
}
} // namespace content