2017-01-24 15:09:23 +00:00
|
|
|
// Package storage provides the Chrome Debugging Protocol
|
2017-02-12 04:59:33 +00:00
|
|
|
// commands, types, and events for the Storage domain.
|
2017-01-24 15:09:23 +00:00
|
|
|
//
|
|
|
|
// Generated by the chromedp-gen command.
|
|
|
|
package storage
|
|
|
|
|
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 (
|
|
|
|
"context"
|
|
|
|
|
2017-01-26 07:28:34 +00:00
|
|
|
cdp "github.com/knq/chromedp/cdp"
|
2017-01-24 15:09:23 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// ClearDataForOriginParams clears storage for origin.
|
|
|
|
type ClearDataForOriginParams struct {
|
|
|
|
Origin string `json:"origin"` // Security origin.
|
|
|
|
StorageTypes string `json:"storageTypes"` // Comma separated origin names.
|
|
|
|
}
|
|
|
|
|
|
|
|
// ClearDataForOrigin clears storage for origin.
|
|
|
|
//
|
|
|
|
// parameters:
|
|
|
|
// origin - Security origin.
|
|
|
|
// storageTypes - Comma separated origin names.
|
|
|
|
func ClearDataForOrigin(origin string, storageTypes string) *ClearDataForOriginParams {
|
|
|
|
return &ClearDataForOriginParams{
|
|
|
|
Origin: origin,
|
|
|
|
StorageTypes: storageTypes,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-12 04:59:33 +00:00
|
|
|
// Do executes Storage.clearDataForOrigin against the provided context and
|
|
|
|
// target handler.
|
|
|
|
func (p *ClearDataForOriginParams) Do(ctxt context.Context, h cdp.Handler) (err error) {
|
2017-02-14 08:41:23 +00:00
|
|
|
return h.Execute(ctxt, cdp.CommandStorageClearDataForOrigin, p, nil)
|
2017-01-24 15:09:23 +00:00
|
|
|
}
|
2017-06-18 00:55:45 +00:00
|
|
|
|
|
|
|
// GetUsageAndQuotaParams returns usage and quota in bytes.
|
|
|
|
type GetUsageAndQuotaParams struct {
|
|
|
|
Origin string `json:"origin"` // Security origin.
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetUsageAndQuota returns usage and quota in bytes.
|
|
|
|
//
|
|
|
|
// parameters:
|
|
|
|
// origin - Security origin.
|
|
|
|
func GetUsageAndQuota(origin string) *GetUsageAndQuotaParams {
|
|
|
|
return &GetUsageAndQuotaParams{
|
|
|
|
Origin: origin,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetUsageAndQuotaReturns return values.
|
|
|
|
type GetUsageAndQuotaReturns struct {
|
2017-06-23 02:00:24 +00:00
|
|
|
Usage float64 `json:"usage,omitempty"` // Storage usage (bytes).
|
|
|
|
Quota float64 `json:"quota,omitempty"` // Storage quota (bytes).
|
|
|
|
UsageBreakdown []*UsageForType `json:"usageBreakdown,omitempty"` // Storage usage per type (bytes).
|
2017-06-18 00:55:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Do executes Storage.getUsageAndQuota against the provided context and
|
|
|
|
// target handler.
|
|
|
|
//
|
|
|
|
// returns:
|
|
|
|
// usage - Storage usage (bytes).
|
|
|
|
// quota - Storage quota (bytes).
|
2017-06-23 02:00:24 +00:00
|
|
|
// usageBreakdown - Storage usage per type (bytes).
|
|
|
|
func (p *GetUsageAndQuotaParams) Do(ctxt context.Context, h cdp.Handler) (usage float64, quota float64, usageBreakdown []*UsageForType, err error) {
|
2017-06-18 00:55:45 +00:00
|
|
|
// execute
|
|
|
|
var res GetUsageAndQuotaReturns
|
|
|
|
err = h.Execute(ctxt, cdp.CommandStorageGetUsageAndQuota, p, &res)
|
|
|
|
if err != nil {
|
2017-06-23 02:00:24 +00:00
|
|
|
return 0, 0, nil, err
|
2017-06-18 00:55:45 +00:00
|
|
|
}
|
|
|
|
|
2017-06-23 02:00:24 +00:00
|
|
|
return res.Usage, res.Quota, res.UsageBreakdown, nil
|
2017-06-18 00:55:45 +00:00
|
|
|
}
|