// 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. #ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_INSTRUMENTATION_RESOURCE_COORDINATOR_RENDERER_RESOURCE_COORDINATOR_H_ #define THIRD_PARTY_BLINK_RENDERER_PLATFORM_INSTRUMENTATION_RESOURCE_COORDINATOR_RENDERER_RESOURCE_COORDINATOR_H_ #include "third_party/blink/renderer/platform/platform_export.h" namespace WTF { class String; } // namespace WTF namespace blink { // TODO(chrisha): Remove knowledge of ExecutionContext class from this code! class ExecutionContext; class Frame; class HTMLFrameOwnerElement; class ScriptState; // This object is a process-wide singleton, and thread-safe. class PLATFORM_EXPORT RendererResourceCoordinator { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_INSTRUMENTATION_RESOURCE_COORDINATOR_RENDERER_RESOURCE_COORDINATOR_H_