Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removes QPL from github #42641

Closed
wants to merge 1 commit into from
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
155 changes: 0 additions & 155 deletions packages/react-native/Libraries/Performance/QuickPerformanceLogger.js

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -5982,48 +5982,6 @@ declare export default typeof NativeJSCSamplingProfiler;
"
`;

exports[`public API should not change unintentionally Libraries/Performance/QuickPerformanceLogger.js 1`] = `
"export type AnnotationsMap = Partial<{
string: ?{ [string]: string, ... },
int: ?{ [string]: number, ... },
double: ?{ [string]: number, ... },
bool: ?{ [string]: boolean, ... },
string_array: ?{ [string]: $ReadOnlyArray<string>, ... },
int_array: ?{ [string]: $ReadOnlyArray<number>, ... },
double_array: ?{ [string]: $ReadOnlyArray<number>, ... },
bool_array: ?{ [string]: $ReadOnlyArray<boolean>, ... },
}>;
declare const QuickPerformanceLogger: {
markerStart(markerId: number, instanceKey: number, timestamp: number): void,
markerEnd(
markerId: number,
actionId: number,
instanceKey: number,
timestamp: number
): void,
markerTag(markerId: number, tag: string, instanceKey: number): void,
markerAnnotate(
markerId: number,
annotations: AnnotationsMap,
instanceKey: number
): void,
markerCancel(markerId: number, instanceKey?: number): void,
markerPoint(
markerId: number,
name: string,
instanceKey: number,
timestamp: number,
data: ?string
): void,
markerDrop(markerId: number, instanceKey?: number): void,
isMarkerOn(markerId: number, instanceKey?: number): boolean,
markEvent(markerId: number, type: string, annotations: ?AnnotationsMap): void,
currentTimestamp(): number,
};
declare module.exports: QuickPerformanceLogger;
"
`;

exports[`public API should not change unintentionally Libraries/Performance/SamplingProfiler.js 1`] = `
"declare const SamplingProfiler: { poke: (token: number) => void };
declare module.exports: SamplingProfiler;
Expand Down
Loading