Skip to content

Commit 8052d97

Browse files
committed
make filteringLog protected
1 parent 3307ee9 commit 8052d97

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/tswebextension/src/lib/common/tabs/tab-context.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export class TabContextCommon<F extends FrameCommon, T extends TabInfoCommon> {
7171
*/
7272
constructor(
7373
public info: T,
74-
readonly filteringLog: FilteringLog = defaultFilteringLog,
74+
protected readonly filteringLog: FilteringLog = defaultFilteringLog,
7575
) {
7676
this.createdAtMs = Date.now();
7777
}

packages/tswebextension/src/lib/mv2/background/tabs/tab-context.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export class TabContext extends TabContextCommon<FrameMV2, TabInfoMV2> {
3131
constructor(
3232
public info: TabInfoMV2,
3333
private readonly documentApi: DocumentApi,
34-
readonly filteringLog: FilteringLog = defaultFilteringLog,
34+
protected readonly filteringLog: FilteringLog = defaultFilteringLog,
3535
) {
3636
super(info, filteringLog);
3737
}

packages/tswebextension/src/lib/mv3/tabs/tab-context.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export class TabContext extends TabContextCommon<FrameMV3, TabInfoMV3> {
2424
*/
2525
constructor(
2626
public info: TabInfoMV3,
27-
readonly filteringLog: FilteringLog = defaultFilteringLog,
27+
protected readonly filteringLog: FilteringLog = defaultFilteringLog,
2828
) {
2929
super(info, filteringLog);
3030
}

0 commit comments

Comments
 (0)