summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/paint/paint_event.h
blob: 02962212e7fcb15e28e27a439c5631b8414b0c24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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_CORE_PAINT_PAINT_EVENT_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_PAINT_PAINT_EVENT_H_

namespace blink {

// Paint events that either PaintTiming or FirstMeaningfulPaintDetector receive
// SwapPromise swap times for.
enum class PaintEvent {
  kFirstPaint,
  kFirstContentfulPaint,
  kProvisionalFirstMeaningfulPaint,
  kFirstImagePaint,
};

}  // namespace blink

#endif