# hide from PAUSE
# ABSTRACT: base class for remote Actions
use v5.10;
use Moo;
use JSON::MaybeXS qw(encode_json);
use Pinto::Remote::SelfContained::Request;
use Pinto::Remote::SelfContained::Result
e,
quiet => $self->chrome->quiet,
};
return { name => 'chrome', data => encode_json($chrome_args) };
}
sub _pinto_args {
my ($self) = @_;
my $pinto_args = {
userna
'pinto', data => encode_json($pinto_args) };
}
sub _action_args {
my ($self) = @_;
my $action_args = $self->args;
return { name => 'action', data => encode_json($action_args) };
}
sub