2017-01-24 15:09:23 +00:00
|
|
|
package domstorage
|
|
|
|
|
|
|
|
// AUTOGENERATED. DO NOT EDIT.
|
|
|
|
|
|
|
|
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 {
|
|
|
|
StorageID *StorageID `json:"storageId,omitempty"`
|
|
|
|
}
|
|
|
|
|
2017-01-26 07:28:34 +00:00
|
|
|
// EventDomStorageItemRemoved [no description].
|
2017-01-24 15:09:23 +00:00
|
|
|
type EventDomStorageItemRemoved struct {
|
|
|
|
StorageID *StorageID `json:"storageId,omitempty"`
|
|
|
|
Key string `json:"key,omitempty"`
|
|
|
|
}
|
|
|
|
|
2017-01-26 07:28:34 +00:00
|
|
|
// EventDomStorageItemAdded [no description].
|
2017-01-24 15:09:23 +00:00
|
|
|
type EventDomStorageItemAdded struct {
|
|
|
|
StorageID *StorageID `json:"storageId,omitempty"`
|
|
|
|
Key string `json:"key,omitempty"`
|
|
|
|
NewValue string `json:"newValue,omitempty"`
|
|
|
|
}
|
|
|
|
|
2017-01-26 07:28:34 +00:00
|
|
|
// EventDomStorageItemUpdated [no description].
|
2017-01-24 15:09:23 +00:00
|
|
|
type EventDomStorageItemUpdated struct {
|
|
|
|
StorageID *StorageID `json:"storageId,omitempty"`
|
|
|
|
Key string `json:"key,omitempty"`
|
|
|
|
OldValue string `json:"oldValue,omitempty"`
|
|
|
|
NewValue string `json:"newValue,omitempty"`
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|