2017-01-24 22:09:23 +07:00
|
|
|
package animation
|
|
|
|
|
2017-07-09 09:05:19 +07:00
|
|
|
// Code generated by chromedp-gen. DO NOT EDIT.
|
2017-01-24 22:09:23 +07:00
|
|
|
|
|
|
|
import (
|
2017-01-26 14:28:34 +07:00
|
|
|
cdp "github.com/knq/chromedp/cdp"
|
2017-01-24 22:09:23 +07:00
|
|
|
)
|
|
|
|
|
|
|
|
// EventAnimationCreated event for each animation that has been created.
|
|
|
|
type EventAnimationCreated struct {
|
2017-07-02 18:44:34 +07:00
|
|
|
ID string `json:"id"` // Id of the animation that was created.
|
2017-01-24 22:09:23 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
// EventAnimationStarted event for animation that has been started.
|
|
|
|
type EventAnimationStarted struct {
|
2017-07-02 18:44:34 +07:00
|
|
|
Animation *Animation `json:"animation"` // Animation that was started.
|
2017-01-24 22:09:23 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
// EventAnimationCanceled event for when an animation has been cancelled.
|
|
|
|
type EventAnimationCanceled struct {
|
2017-07-02 18:44:34 +07:00
|
|
|
ID string `json:"id"` // Id of the animation that was cancelled.
|
2017-01-24 22:09:23 +07:00
|
|
|
}
|
|
|
|
|
2017-01-26 14:28:34 +07:00
|
|
|
// EventTypes all event types in the domain.
|
|
|
|
var EventTypes = []cdp.MethodType{
|
|
|
|
cdp.EventAnimationAnimationCreated,
|
|
|
|
cdp.EventAnimationAnimationStarted,
|
|
|
|
cdp.EventAnimationAnimationCanceled,
|
2017-01-24 22:09:23 +07:00
|
|
|
}
|