2017-01-24 15:09:23 +00:00
|
|
|
package domstorage
|
|
|
|
|
2017-07-09 02:05:19 +00:00
|
|
|
// Code generated by chromedp-gen. DO NOT EDIT.
|
2017-01-24 15:09:23 +00:00
|
|
|
|
|
|
|
import (
|
2017-01-26 07:28:34 +00:00
|
|
|
cdp "github.com/knq/chromedp/cdp"
|
2017-01-24 15:09:23 +00:00
|
|
|
)
|
|
|
|
|
2017-01-26 07:28:34 +00:00
|
|
|
// EventDomStorageItemsCleared [no description].
|
2017-01-24 15:09:23 +00:00
|
|
|
type EventDomStorageItemsCleared struct {
|
2017-07-02 11:44:34 +00:00
|
|
|
StorageID *StorageID `json:"storageId"`
|
2017-01-24 15:09:23 +00:00
|
|
|
}
|
|
|
|
|
2017-01-26 07:28:34 +00:00
|
|
|
// EventDomStorageItemRemoved [no description].
|
2017-01-24 15:09:23 +00:00
|
|
|
type EventDomStorageItemRemoved struct {
|
2017-07-02 11:44:34 +00:00
|
|
|
StorageID *StorageID `json:"storageId"`
|
|
|
|
Key string `json:"key"`
|
2017-01-24 15:09:23 +00:00
|
|
|
}
|
|
|
|
|
2017-01-26 07:28:34 +00:00
|
|
|
// EventDomStorageItemAdded [no description].
|
2017-01-24 15:09:23 +00:00
|
|
|
type EventDomStorageItemAdded struct {
|
2017-07-02 11:44:34 +00:00
|
|
|
StorageID *StorageID `json:"storageId"`
|
|
|
|
Key string `json:"key"`
|
|
|
|
NewValue string `json:"newValue"`
|
2017-01-24 15:09:23 +00:00
|
|
|
}
|
|
|
|
|
2017-01-26 07:28:34 +00:00
|
|
|
// EventDomStorageItemUpdated [no description].
|
2017-01-24 15:09:23 +00:00
|
|
|
type EventDomStorageItemUpdated struct {
|
2017-07-02 11:44:34 +00:00
|
|
|
StorageID *StorageID `json:"storageId"`
|
|
|
|
Key string `json:"key"`
|
|
|
|
OldValue string `json:"oldValue"`
|
|
|
|
NewValue string `json:"newValue"`
|
2017-01-24 15:09:23 +00:00
|
|
|
}
|
|
|
|
|
2017-01-26 07:28:34 +00:00
|
|
|
// EventTypes all event types in the domain.
|
|
|
|
var EventTypes = []cdp.MethodType{
|
|
|
|
cdp.EventDOMStorageDomStorageItemsCleared,
|
|
|
|
cdp.EventDOMStorageDomStorageItemRemoved,
|
|
|
|
cdp.EventDOMStorageDomStorageItemAdded,
|
|
|
|
cdp.EventDOMStorageDomStorageItemUpdated,
|
2017-01-24 15:09:23 +00:00
|
|
|
}
|