aboutsummaryrefslogtreecommitdiff
path: root/src/content/client
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2019-12-21 17:51:48 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2019-12-21 18:42:49 +0900
commit5963b91cbdf880e1f10b77146d3be5775f0920c0 (patch)
tree15e4662e4ace516899430a98f04747dea0bef589 /src/content/client
parentd05f1ad554551919f8c603d335df578674752b06 (diff)
Rename count to repeat
Diffstat (limited to 'src/content/client')
-rw-r--r--src/content/client/OperationClient.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/content/client/OperationClient.ts b/src/content/client/OperationClient.ts
index 06077dc..9c72c75 100644
--- a/src/content/client/OperationClient.ts
+++ b/src/content/client/OperationClient.ts
@@ -2,7 +2,7 @@ import * as operations from '../../shared/operations';
import * as messages from '../../shared/messages';
export default interface OperationClient {
- execBackgroundOp(count: number, op: operations.Operation): Promise<void>;
+ execBackgroundOp(repeat: number, op: operations.Operation): Promise<void>;
internalOpenUrl(
url: string, newTab?: boolean, background?: boolean,
@@ -10,10 +10,10 @@ export default interface OperationClient {
}
export class OperationClientImpl implements OperationClient {
- execBackgroundOp(count: number, op: operations.Operation): Promise<void> {
+ execBackgroundOp(repeat: number, op: operations.Operation): Promise<void> {
return browser.runtime.sendMessage({
type: messages.BACKGROUND_OPERATION,
- count,
+ repeat,
operation: op,
});
}
@@ -23,7 +23,7 @@ export class OperationClientImpl implements OperationClient {
): Promise<void> {
return browser.runtime.sendMessage({
type: messages.BACKGROUND_OPERATION,
- count: 1,
+ repeat: 1,
operation: {
type: operations.INTERNAL_OPEN_URL,
url,