Skip to content

Commit

Permalink
Merge "ui: Remove some dead code" into main
Browse files Browse the repository at this point in the history
  • Loading branch information
stevegolton authored and Gerrit Code Review committed Jan 21, 2025
2 parents 7ba5a07 + cbbd393 commit c78fc82
Showing 1 changed file with 0 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

import {NAMED_ROW} from '../../components/tracks/named_slice_track';
import {LONG, NUM, STR} from '../../trace_processor/query_result';
import {Slice} from '../../public/track';
import {DatasetSliceTrack} from '../../components/tracks/dataset_slice_track';
import {PageLoadDetailsPanel} from './page_load_details_panel';
import {StartupDetailsPanel} from './startup_details_panel';
Expand All @@ -23,21 +21,6 @@ import {GenericSliceDetailsTab} from './generic_slice_details_tab';
import {SourceDataset} from '../../trace_processor/dataset';
import {Trace} from '../../public/trace';

export const CRITICAL_USER_INTERACTIONS_KIND =
'org.chromium.CriticalUserInteraction.track';

export const CRITICAL_USER_INTERACTIONS_ROW = {
...NAMED_ROW,
scopedId: NUM,
type: STR,
};
export type CriticalUserInteractionRow = typeof CRITICAL_USER_INTERACTIONS_ROW;

export interface CriticalUserInteractionSlice extends Slice {
scopedId: number;
type: string;
}

export function createCriticalUserInteractionTrack(trace: Trace, uri: string) {
return new DatasetSliceTrack({
trace,
Expand Down

0 comments on commit c78fc82

Please sign in to comment.