events.go 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. package domstorage
  2. // Code generated by cdproto-gen. DO NOT EDIT.
  3. // EventDomStorageItemAdded [no description].
  4. //
  5. // See: https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage#event-domStorageItemAdded
  6. type EventDomStorageItemAdded struct {
  7. StorageID *StorageID `json:"storageId"`
  8. Key string `json:"key"`
  9. NewValue string `json:"newValue"`
  10. }
  11. // EventDomStorageItemRemoved [no description].
  12. //
  13. // See: https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage#event-domStorageItemRemoved
  14. type EventDomStorageItemRemoved struct {
  15. StorageID *StorageID `json:"storageId"`
  16. Key string `json:"key"`
  17. }
  18. // EventDomStorageItemUpdated [no description].
  19. //
  20. // See: https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage#event-domStorageItemUpdated
  21. type EventDomStorageItemUpdated struct {
  22. StorageID *StorageID `json:"storageId"`
  23. Key string `json:"key"`
  24. OldValue string `json:"oldValue"`
  25. NewValue string `json:"newValue"`
  26. }
  27. // EventDomStorageItemsCleared [no description].
  28. //
  29. // See: https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage#event-domStorageItemsCleared
  30. type EventDomStorageItemsCleared struct {
  31. StorageID *StorageID `json:"storageId"`
  32. }