Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions config/gni/devtools_grd_files.gni
Original file line number Diff line number Diff line change
Expand Up @@ -1654,8 +1654,6 @@ grd_files_debug_sources = [
"front_end/panels/network/components/EditableSpan.js",
"front_end/panels/network/components/HeaderSectionRow.css.js",
"front_end/panels/network/components/HeaderSectionRow.js",
"front_end/panels/network/components/NetworkEventCoverageInfobar.css.js",
"front_end/panels/network/components/NetworkEventCoverageInfobar.js",
"front_end/panels/network/components/RequestHeaderSection.css.js",
"front_end/panels/network/components/RequestHeaderSection.js",
"front_end/panels/network/components/RequestHeadersView.css.js",
Expand Down
2 changes: 0 additions & 2 deletions front_end/global_typings/react_native.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,5 @@ declare global {
var reactNativeOpenInEditorButtonImage: string|undefined;
// eslint-disable-next-line no-var,@typescript-eslint/naming-convention
var FB_ONLY__reactNativeFeedbackLink: string|undefined;
// eslint-disable-next-line no-var,@typescript-eslint/naming-convention
var FB_ONLY__enableNetworkCoverageNotice: boolean|undefined;
}
}
13 changes: 0 additions & 13 deletions front_end/panels/network/NetworkLogView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ import {
type NetworkNode,
NetworkRequestNode,
} from './NetworkDataGridNode.js';
import './components/NetworkEventCoverageInfobar.js';
import {NetworkFrameGrouper} from './NetworkFrameGrouper.js';
import networkLogViewStyles from './networkLogView.css.js';
import {NetworkLogViewColumns} from './NetworkLogViewColumns.js';
Expand Down Expand Up @@ -572,12 +571,6 @@ export class NetworkLogView extends Common.ObjectWrapper.eventMixin<EventTypes,
this.durationCalculator = new NetworkTransferDurationCalculator();
this.calculatorInternal = this.timeCalculatorInternal;

// [RN][FB-only] Add network event coverage info banner
if (globalThis.FB_ONLY__enableNetworkCoverageNotice) {
const infobar = document.createElement('devtools-network-event-coverage-infobar');
this.element.appendChild(infobar);
}

this.columnsInternal = new NetworkLogViewColumns(
this, this.timeCalculatorInternal, this.durationCalculator, networkLogLargeRowsSetting);
this.columnsInternal.show(this.element);
Expand Down Expand Up @@ -1145,12 +1138,6 @@ export class NetworkLogView extends Common.ObjectWrapper.eventMixin<EventTypes,
this.recordingHint.contentElement.appendChild(button);
}

// [RN][FB-only] Add network event coverage info banner
if (globalThis.FB_ONLY__enableNetworkCoverageNotice) {
const infobar = document.createElement('devtools-network-event-coverage-infobar');
this.recordingHint.element.prepend(infobar);
}

this.recordingHint.show(this.element);
this.setHidden(true);
}
Expand Down
2 changes: 0 additions & 2 deletions front_end/panels/network/components/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ generate_css("css_files") {
sources = [
"EditableSpan.css",
"HeaderSectionRow.css",
"NetworkEventCoverageInfobar.css",
"RequestHeaderSection.css",
"RequestHeadersView.css",
"RequestTrustTokensView.css",
Expand All @@ -25,7 +24,6 @@ devtools_module("components") {
sources = [
"EditableSpan.ts",
"HeaderSectionRow.ts",
"NetworkEventCoverageInfobar.ts",
"RequestHeaderSection.ts",
"RequestHeadersView.ts",
"RequestTrustTokensView.ts",
Expand Down

This file was deleted.

99 changes: 0 additions & 99 deletions front_end/panels/network/components/NetworkEventCoverageInfobar.ts

This file was deleted.

2 changes: 0 additions & 2 deletions front_end/panels/network/components/components.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

import * as EditableSpan from './EditableSpan.js';
import * as HeaderSectionRow from './HeaderSectionRow.js';
import * as NetworkEventCoverageInfobar from './NetworkEventCoverageInfobar.js';
import * as RequestHeaderSection from './RequestHeaderSection.js';
import * as RequestHeadersView from './RequestHeadersView.js';
import * as RequestTrustTokensView from './RequestTrustTokensView.js';
Expand All @@ -14,7 +13,6 @@ import * as WebBundleInfoView from './WebBundleInfoView.js';
export {
EditableSpan,
HeaderSectionRow,
NetworkEventCoverageInfobar,
RequestHeaderSection,
RequestHeadersView,
RequestTrustTokensView,
Expand Down
1 change: 0 additions & 1 deletion front_end/ui/visual_logging/KnownContextValues.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2434,7 +2434,6 @@ export const knownContextValues = new Set([
'network-conditions.network-mid-tier-mobile',
'network-conditions.network-offline',
'network-conditions.network-online',
'network-event-coverage-infobar',
'network-event-source-message-filter',
'network-film-strip',
'network-hide-chrome-extensions',
Expand Down
1 change: 0 additions & 1 deletion scripts/eslint_rules/lib/check-license-header.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ const META_CODE_PATHS = [
'entrypoints/shell/browser_compatibility_guard.ts',
'global_typings/react_native.d.ts',
'models/react_native',
'panels/network/components/NetworkEventCoverageInfobar.ts',
'panels/react_devtools',
'panels/rn_welcome',
'panels/timeline/ReactNativeTimelineLandingPage.ts',
Expand Down
Loading