chromium/third_party/blink/renderer/platform/instrumentation/resource_coordinator/renderer_resource_coordinator.cc

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/platform/instrumentation/resource_coordinator/renderer_resource_coordinator.h"

#include "third_party/blink/public/common/thread_safe_browser_interface_broker_proxy.h"
#include "third_party/blink/public/platform/platform.h"
#include "third_party/blink/renderer/platform/heap/thread_state.h"
#include "third_party/blink/renderer/platform/wtf/std_lib_extras.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"

namespace blink {

namespace {

RendererResourceCoordinator* g_renderer_resource_coordinator =;

class DummyRendererResourceCoordinator final
    : public RendererResourceCoordinator {};

}  // namespace

// static
void RendererResourceCoordinator::Set(RendererResourceCoordinator* instance) {}

// static
RendererResourceCoordinator* RendererResourceCoordinator::Get() {}

}  // namespace blink