| Index: public/web/WebWidget.h
|
| diff --git a/public/web/WebWidget.h b/public/web/WebWidget.h
|
| index 741396430cbdd55bc269fe916baaebc1ecc40432..2180e954690c24bcae245e9db606ccb2339995f7 100644
|
| --- a/public/web/WebWidget.h
|
| +++ b/public/web/WebWidget.h
|
| @@ -154,6 +154,14 @@ public:
|
| float scaleFactor,
|
| float topControlsShownRatioDelta) { }
|
|
|
| + // Records composite or render events for the Performance Timeline.
|
| + // See http://w3c.github.io/frame-timing/ for definition of terms.
|
| + enum FrameTimingEventType {
|
| + CompositeEvent,
|
| + RenderEvent,
|
| + };
|
| + virtual void recordFrameTimingEvent(FrameTimingEventType eventType, int64_t RectId, const WebVector<std::pair<int, double>>& events) { }
|
| +
|
| // Called to inform the WebWidget that mouse capture was lost.
|
| virtual void mouseCaptureLost() { }
|
|
|
|
|