summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/platform/instrumentation/resource_coordinator/renderer_resource_coordinator.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/platform/instrumentation/resource_coordinator/renderer_resource_coordinator.h')
-rw-r--r--chromium/third_party/blink/renderer/platform/instrumentation/resource_coordinator/renderer_resource_coordinator.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/chromium/third_party/blink/renderer/platform/instrumentation/resource_coordinator/renderer_resource_coordinator.h b/chromium/third_party/blink/renderer/platform/instrumentation/resource_coordinator/renderer_resource_coordinator.h
new file mode 100644
index 00000000000..049c20663eb
--- /dev/null
+++ b/chromium/third_party/blink/renderer/platform/instrumentation/resource_coordinator/renderer_resource_coordinator.h
@@ -0,0 +1,45 @@
+// 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.
+
+#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 "services/resource_coordinator/public/mojom/coordination_unit.mojom-blink.h"
+#include "third_party/blink/renderer/platform/instrumentation/resource_coordinator/blink_resource_coordinator_base.h"
+
+namespace service_manager {
+class Connector;
+} // namespace service_manager
+
+namespace blink {
+
+class PLATFORM_EXPORT RendererResourceCoordinator
+ : public BlinkResourceCoordinatorBase {
+ WTF_MAKE_NONCOPYABLE(RendererResourceCoordinator);
+
+ public:
+ static void Initialize();
+ static RendererResourceCoordinator& Get();
+
+ // Used to switch the current renderer resource coordinator only for testing.
+ static void SetCurrentRendererResourceCoordinatorForTesting(
+ RendererResourceCoordinator*);
+
+ ~RendererResourceCoordinator();
+
+ void SetExpectedTaskQueueingDuration(base::TimeDelta);
+ void SetMainThreadTaskLoadIsLow(bool);
+
+ protected:
+ RendererResourceCoordinator();
+
+ private:
+ RendererResourceCoordinator(service_manager::Connector*, const std::string&);
+
+ resource_coordinator::mojom::blink::ProcessCoordinationUnitPtr service_;
+};
+
+} // namespace blink
+
+#endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_INSTRUMENTATION_RESOURCE_COORDINATOR_RENDERER_RESOURCE_COORDINATOR_H_