blob: a2478953cafb093d42007480627b6025c4cd4060 [file] [log] [blame]
// Copyright 2019 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_LOADER_FETCH_DETACHABLE_USE_COUNTER_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_LOADER_FETCH_DETACHABLE_USE_COUNTER_H_
#include "third_party/blink/renderer/platform/instrumentation/use_counter.h"
namespace blink {
class DetachableUseCounter final
: public GarbageCollected<DetachableUseCounter>,
public UseCounter {
public:
// |use_counter| can be null, and in that case |this| is already detached.
explicit DetachableUseCounter(UseCounter* use_counter)
: use_counter_(use_counter) {}
~DetachableUseCounter() override = default;
// UseCounter
void CountUse(mojom::WebFeature feature) override {
if (use_counter_) {
use_counter_->CountUse(feature);
}
}
void Trace(Visitor* visitor) const override { visitor->Trace(use_counter_); }
void Detach() { use_counter_ = nullptr; }
private:
Member<UseCounter> use_counter_;
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_LOADER_FETCH_DETACHABLE_USE_COUNTER_H_