1 // Copyright 2020 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef THIRD_PARTY_BLINK_RENDERER_CORE_TIMING_VISIBILITY_STATE_ENTRY_H_
6 #define THIRD_PARTY_BLINK_RENDERER_CORE_TIMING_VISIBILITY_STATE_ENTRY_H_
7 
8 #include "third_party/blink/renderer/core/core_export.h"
9 #include "third_party/blink/renderer/core/timing/performance_entry.h"
10 
11 namespace blink {
12 
13 class CORE_EXPORT VisibilityStateEntry final : public PerformanceEntry {
14   DEFINE_WRAPPERTYPEINFO();
15 
16  public:
17   VisibilityStateEntry(AtomicString name, double start_time);
18   ~VisibilityStateEntry() override;
19 
20   AtomicString entryType() const override;
21   PerformanceEntryType EntryTypeEnum() const override;
22 };
23 
24 }  // namespace blink
25 
26 #endif  // THIRD_PARTY_BLINK_RENDERER_CORE_TIMING_VISIBILITY_STATE_ENTRY_H_
27