diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-12-21 15:08:07 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-12-21 17:12:15 +0900 |
commit | ab58c5edb79b4a5aa347e80deaeb612216a9d34e (patch) | |
tree | fd28899de0a1a1558961fef105f9a842376b94cf /src/content/client/OperationClient.ts | |
parent | 493ffc83b01bfbae5f84c66f4db0cc4e1f90a588 (diff) |
Add numeric prefix to repeat a command
Diffstat (limited to 'src/content/client/OperationClient.ts')
-rw-r--r-- | src/content/client/OperationClient.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/content/client/OperationClient.ts b/src/content/client/OperationClient.ts index 5dbe555..06077dc 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(op: operations.Operation): Promise<void>; + execBackgroundOp(count: number, op: operations.Operation): Promise<void>; internalOpenUrl( url: string, newTab?: boolean, background?: boolean, @@ -10,9 +10,10 @@ export default interface OperationClient { } export class OperationClientImpl implements OperationClient { - execBackgroundOp(op: operations.Operation): Promise<void> { + execBackgroundOp(count: number, op: operations.Operation): Promise<void> { return browser.runtime.sendMessage({ type: messages.BACKGROUND_OPERATION, + count, operation: op, }); } @@ -22,6 +23,7 @@ export class OperationClientImpl implements OperationClient { ): Promise<void> { return browser.runtime.sendMessage({ type: messages.BACKGROUND_OPERATION, + count: 1, operation: { type: operations.INTERNAL_OPEN_URL, url, |