forked from ChromeDevTools/devtools-frontend
-
Notifications
You must be signed in to change notification settings - Fork 22
feat: add React Native-only event for pre-enabling multiple layers of Tracing #199
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
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sbuggay
approved these changes
Aug 5, 2025
7abb470 to
d05c282
Compare
d05c282 to
529e4e0
Compare
hoxyq
added a commit
to hoxyq/react-native
that referenced
this pull request
Aug 5, 2025
Summary: # Changelog: [Internal] We need this to notify Frontend, so it updates the local state before receiving `Tracing.dataCollected` events. Corresponding change in CDT fork - facebook/react-native-devtools-frontend#199. Differential Revision: D79672598
sbuggay
pushed a commit
to sbuggay/react-native
that referenced
this pull request
Aug 18, 2025
Summary: # Changelog: [Internal] We need this to notify Frontend, so it updates the local state before receiving `Tracing.dataCollected` events. Corresponding change in CDT fork - facebook/react-native-devtools-frontend#199. Differential Revision: D79672598
hoxyq
added a commit
to hoxyq/react-native
that referenced
this pull request
Aug 21, 2025
…acebook#53079) Summary: # Changelog: [Internal] We need this to notify Frontend, so it updates the local state before receiving `Tracing.dataCollected` events. Corresponding change in CDT fork - facebook/react-native-devtools-frontend#199. Reviewed By: sbuggay Differential Revision: D79672598
hoxyq
added a commit
to hoxyq/react-native
that referenced
this pull request
Aug 21, 2025
…acebook#53079) Summary: # Changelog: [Internal] We need this to notify Frontend, so it updates the local state before receiving `Tracing.dataCollected` events. Corresponding change in CDT fork - facebook/react-native-devtools-frontend#199. Reviewed By: sbuggay Differential Revision: D79672598
hoxyq
added a commit
to hoxyq/react-native
that referenced
this pull request
Aug 21, 2025
…acebook#53079) Summary: Pull Request resolved: facebook#53079 # Changelog: [Internal] We need this to notify Frontend, so it updates the local state before receiving `Tracing.dataCollected` events. Corresponding change in CDT fork - facebook/react-native-devtools-frontend#199. Reviewed By: sbuggay Differential Revision: D79672598
hoxyq
added a commit
to hoxyq/react-native
that referenced
this pull request
Aug 22, 2025
…acebook#53079) Summary: # Changelog: [Internal] We need this to notify Frontend, so it updates the local state before receiving `Tracing.dataCollected` events. Corresponding change in CDT fork - facebook/react-native-devtools-frontend#199. Reviewed By: sbuggay Differential Revision: D79672598
hoxyq
added a commit
to hoxyq/react-native
that referenced
this pull request
Aug 22, 2025
…acebook#53079) Summary: # Changelog: [Internal] We need this to notify Frontend, so it updates the local state before receiving `Tracing.dataCollected` events. Corresponding change in CDT fork - facebook/react-native-devtools-frontend#199. Reviewed By: sbuggay Differential Revision: D79672598
hoxyq
added a commit
to hoxyq/react-native
that referenced
this pull request
Aug 22, 2025
…acebook#53079) Summary: Pull Request resolved: facebook#53079 # Changelog: [Internal] We need this to notify Frontend, so it updates the local state before receiving `Tracing.dataCollected` events. Corresponding change in CDT fork - facebook/react-native-devtools-frontend#199. Reviewed By: sbuggay Differential Revision: D79672598
hoxyq
pushed a commit
to hoxyq/react-native
that referenced
this pull request
Aug 22, 2025
Summary: # Changelog: [Internal] We need this to notify Frontend, so it updates the local state before receiving `Tracing.dataCollected` events. Corresponding change in CDT fork - facebook/react-native-devtools-frontend#199. Differential Revision: D79672598
facebook-github-bot
pushed a commit
to facebook/react-native
that referenced
this pull request
Aug 22, 2025
…53079) Summary: Pull Request resolved: #53079 # Changelog: [Internal] We need this to notify Frontend, so it updates the local state before receiving `Tracing.dataCollected` events. Corresponding change in CDT fork - facebook/react-native-devtools-frontend#199. Reviewed By: sbuggay Differential Revision: D79672598 fbshipit-source-id: b2928cb3942e34a1f4723516ecdf5062d4331591
kikoso
pushed a commit
to kikoso/react-native
that referenced
this pull request
Aug 26, 2025
…acebook#53079) Summary: Pull Request resolved: facebook#53079 # Changelog: [Internal] We need this to notify Frontend, so it updates the local state before receiving `Tracing.dataCollected` events. Corresponding change in CDT fork - facebook/react-native-devtools-frontend#199. Reviewed By: sbuggay Differential Revision: D79672598 fbshipit-source-id: b2928cb3942e34a1f4723516ecdf5062d4331591
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
React Native will send
ReactNativeApplication.traceRequestedevent to signal to Frontend that it should prepare for Trace that will be sent over CDP.Once received, it will update the state on the Frontend and would subscribe to next
Tracing.dataCollectedandTracing.tracingCompleteevents.Test plan
Just an end-to-end test with pre-defined setup in React Native.
Validated that I can record another trace from the Performance panel after opening stashed one.
Upstreaming plan
devtools-frontendrepo following the contribution guide for Meta employees OR contribution guide.