93 lines
3.0 KiB
Go
93 lines
3.0 KiB
Go
// Package memory provides the Chrome Debugging Protocol
|
|
// commands, types, and events for the Memory domain.
|
|
//
|
|
// Generated by the chromedp-gen command.
|
|
package memory
|
|
|
|
// Code generated by chromedp-gen. DO NOT EDIT.
|
|
|
|
import (
|
|
"context"
|
|
|
|
cdp "github.com/knq/chromedp/cdp"
|
|
)
|
|
|
|
// GetDOMCountersParams [no description].
|
|
type GetDOMCountersParams struct{}
|
|
|
|
// GetDOMCounters [no description].
|
|
func GetDOMCounters() *GetDOMCountersParams {
|
|
return &GetDOMCountersParams{}
|
|
}
|
|
|
|
// GetDOMCountersReturns return values.
|
|
type GetDOMCountersReturns struct {
|
|
Documents int64 `json:"documents,omitempty"`
|
|
Nodes int64 `json:"nodes,omitempty"`
|
|
JsEventListeners int64 `json:"jsEventListeners,omitempty"`
|
|
}
|
|
|
|
// Do executes Memory.getDOMCounters against the provided context and
|
|
// target handler.
|
|
//
|
|
// returns:
|
|
// documents
|
|
// nodes
|
|
// jsEventListeners
|
|
func (p *GetDOMCountersParams) Do(ctxt context.Context, h cdp.Handler) (documents int64, nodes int64, jsEventListeners int64, err error) {
|
|
// execute
|
|
var res GetDOMCountersReturns
|
|
err = h.Execute(ctxt, cdp.CommandMemoryGetDOMCounters, nil, &res)
|
|
if err != nil {
|
|
return 0, 0, 0, err
|
|
}
|
|
|
|
return res.Documents, res.Nodes, res.JsEventListeners, nil
|
|
}
|
|
|
|
// SetPressureNotificationsSuppressedParams enable/disable suppressing memory
|
|
// pressure notifications in all processes.
|
|
type SetPressureNotificationsSuppressedParams struct {
|
|
Suppressed bool `json:"suppressed"` // If true, memory pressure notifications will be suppressed.
|
|
}
|
|
|
|
// SetPressureNotificationsSuppressed enable/disable suppressing memory
|
|
// pressure notifications in all processes.
|
|
//
|
|
// parameters:
|
|
// suppressed - If true, memory pressure notifications will be suppressed.
|
|
func SetPressureNotificationsSuppressed(suppressed bool) *SetPressureNotificationsSuppressedParams {
|
|
return &SetPressureNotificationsSuppressedParams{
|
|
Suppressed: suppressed,
|
|
}
|
|
}
|
|
|
|
// Do executes Memory.setPressureNotificationsSuppressed against the provided context and
|
|
// target handler.
|
|
func (p *SetPressureNotificationsSuppressedParams) Do(ctxt context.Context, h cdp.Handler) (err error) {
|
|
return h.Execute(ctxt, cdp.CommandMemorySetPressureNotificationsSuppressed, p, nil)
|
|
}
|
|
|
|
// SimulatePressureNotificationParams simulate a memory pressure notification
|
|
// in all processes.
|
|
type SimulatePressureNotificationParams struct {
|
|
Level PressureLevel `json:"level"` // Memory pressure level of the notification.
|
|
}
|
|
|
|
// SimulatePressureNotification simulate a memory pressure notification in
|
|
// all processes.
|
|
//
|
|
// parameters:
|
|
// level - Memory pressure level of the notification.
|
|
func SimulatePressureNotification(level PressureLevel) *SimulatePressureNotificationParams {
|
|
return &SimulatePressureNotificationParams{
|
|
Level: level,
|
|
}
|
|
}
|
|
|
|
// Do executes Memory.simulatePressureNotification against the provided context and
|
|
// target handler.
|
|
func (p *SimulatePressureNotificationParams) Do(ctxt context.Context, h cdp.Handler) (err error) {
|
|
return h.Execute(ctxt, cdp.CommandMemorySimulatePressureNotification, p, nil)
|
|
}
|