forked from Pissandshittium/pissandshittium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaint_holding_commit_trigger.h
38 lines (30 loc) · 1.25 KB
/
paint_holding_commit_trigger.h
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
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CC_TREES_PAINT_HOLDING_COMMIT_TRIGGER_H_
#define CC_TREES_PAINT_HOLDING_COMMIT_TRIGGER_H_
#include "cc/trees/paint_holding_reason.h"
namespace cc {
enum class PaintHoldingCommitTrigger {
// These values are persisted to logs. Entries should not be renumbered and
// numeric values should never be reused.
// The Paint Holding flag is not enabled
kFeatureDisabled = 0,
// Paint Holding is not allowed due to different origin or wrong protocol
kDisallowed = 1,
// The commit was triggered by first contentful paint (FCP)
kFirstContentfulPaint = 2,
// The commit was triggered by a timeout waiting for FCP
kTimeoutFCP = 3,
// The timeout was never set, probably due to non-main frame
kNotDeferred = 4,
// The commit was triggered by a view transition start
kViewTransition = 5,
// The commit was triggered by a timeout waiting for view transition start
kTimeoutViewTransition = 6,
// Required for UMA enum
kMaxValue = kTimeoutViewTransition
};
PaintHoldingCommitTrigger ReasonToTimeoutTrigger(PaintHoldingReason reason);
} // namespace cc
#endif // CC_TREES_PAINT_HOLDING_COMMIT_TRIGGER_H_