1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
// Copyright 2018 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_CORE_FRAME_DACTYLOSCOPER_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_FRAME_DACTYLOSCOPER_H_
#include <optional>
#include "third_party/blink/public/common/privacy_budget/identifiable_token.h"
#include "third_party/blink/public/common/privacy_budget/identifiable_token_builder.h"
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/core/frame/web_feature_forward.h"
#include "third_party/blink/renderer/core/typed_arrays/array_buffer_view_helpers.h"
#include "third_party/blink/renderer/core/typed_arrays/dom_typed_array.h"
#include "third_party/blink/renderer/platform/wtf/allocator/allocator.h"
#include "third_party/blink/renderer/platform/wtf/forward.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
namespace blink {
namespace bindings {
class EnumerationBase;
} // namespace bindings
class ExecutionContext;
class SVGStringListTearOff;
class CORE_EXPORT Dactyloscoper {
DISALLOW_NEW();
public:
// HighEntropyTracer traces calls of HighEntropy APIs to perfetto.
//
// NOTE: This class must always be instantiated on the stack.
class CORE_EXPORT HighEntropyTracer {
public:
HighEntropyTracer(const char* called_api,
const v8::FunctionCallbackInfo<v8::Value>& info);
~HighEntropyTracer();
};
enum class FontLookupType {
kUniqueOrFamilyName,
kUniqueNameOnly,
};
static void TraceFontLookup(ExecutionContext* execution_context,
const AtomicString& name,
FontLookupType lookup_type);
Dactyloscoper();
Dactyloscoper(const Dactyloscoper&) = delete;
Dactyloscoper& operator=(const Dactyloscoper&) = delete;
// These are helpers used by the generated bindings code when invoking IDL
// methods with HighEntropy=Direct.
static void RecordDirectSurface(ExecutionContext*,
WebFeature,
const IdentifiableToken&);
static void RecordDirectSurface(ExecutionContext*,
WebFeature,
const bindings::EnumerationBase&);
static void RecordDirectSurface(ExecutionContext*, WebFeature, const String&);
static void RecordDirectSurface(ExecutionContext*,
WebFeature,
const Vector<String>&);
static void RecordDirectSurface(ExecutionContext*,
WebFeature,
const DOMArrayBufferView*);
static void RecordDirectSurface(ExecutionContext*,
WebFeature,
SVGStringListTearOff*);
static void RecordDirectSurface(
ExecutionContext* context,
WebFeature feature,
const NotShared<DOMArrayBufferView>& not_shared) {
Dactyloscoper::RecordDirectSurface(context, feature, not_shared.Get());
}
static void RecordDirectSurface(
ExecutionContext* context,
WebFeature feature,
const MaybeShared<DOMArrayBufferView>& maybe_shared) {
Dactyloscoper::RecordDirectSurface(context, feature, maybe_shared.Get());
}
template <typename T>
static void RecordDirectSurface(ExecutionContext* context,
WebFeature feature,
const std::optional<T>& value) {
if (value.has_value()) {
RecordDirectSurface(context, feature, value.value());
} else {
RecordDirectSurface(context, feature,
IdentifiableTokenBuilder().GetToken());
}
}
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_CORE_FRAME_DACTYLOSCOPER_H_
|