-
Notifications
You must be signed in to change notification settings - Fork 5
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
rename the AuthTokenStore* machinery to RecordReplayService* #1033
base: master
Are you sure you want to change the base?
Conversation
@@ -0,0 +1,20 @@ | |||
module record_replay.mojom; | |||
|
|||
// Provides access to the browser-side record/replay service. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This additional line is one of the two changes that are not strict file/symbol renaming.
mojo::Remote<auth_token::mojom::RecordReplayAuthTokenStore> auth_token_store_; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
and this file's change is the other that's not renaming. The window proxy creates a RecordReplayEventListener
, which routes events through its LocalFrame
, which then delegates to its LocalFrameMojoHandler
to deal with all the mojo stuff.
Squashed commit of the following: commit 994bdc9bd36d870958e6bd8e213c6905a6038dca Author: Chris Toshok <toshok@gmail.com> Date: Wed Dec 13 12:52:12 2023 -0800 remove the include too commit 3e82c721ce9bc805298538f6c1c3c56eb8a004b0 Author: Chris Toshok <toshok@gmail.com> Date: Wed Dec 13 12:08:38 2023 -0800 the big renaming commit bd81a6c7578e61771240a8fa7b3c7672973f9d68 Author: Chris Toshok <toshok@gmail.com> Date: Wed Dec 13 10:08:04 2023 -0800 rename the member fields, and switch to checking if the observer receiver is already bound (saving us that weird extra auth_token_store_ check) in RecordReplayRegisterAuthTokenObserver) commit 7f8369014d39183acc4efca9220dafcd51912f82 Author: Chris Toshok <toshok@gmail.com> Date: Fri Dec 8 11:23:30 2023 -0800 plumb the rest of the devtools messages to the (increasingly misnamed) auth token store
Squashed commit of the following: commit 994bdc9bd36d870958e6bd8e213c6905a6038dca Author: Chris Toshok <toshok@gmail.com> Date: Wed Dec 13 12:52:12 2023 -0800 remove the include too commit 3e82c721ce9bc805298538f6c1c3c56eb8a004b0 Author: Chris Toshok <toshok@gmail.com> Date: Wed Dec 13 12:08:38 2023 -0800 the big renaming commit bd81a6c7578e61771240a8fa7b3c7672973f9d68 Author: Chris Toshok <toshok@gmail.com> Date: Wed Dec 13 10:08:04 2023 -0800 rename the member fields, and switch to checking if the observer receiver is already bound (saving us that weird extra auth_token_store_ check) in RecordReplayRegisterAuthTokenObserver) commit 7f8369014d39183acc4efca9220dafcd51912f82 Author: Chris Toshok <toshok@gmail.com> Date: Fri Dec 8 11:23:30 2023 -0800 plumb the rest of the devtools messages to the (increasingly misnamed) auth token store
bd81a6c
to
6a5e46b
Compare
… already bound (saving us that weird extra check) in RecordReplayRegisterAuthTokenObserver)
994bdc9
to
c8e1f35
Compare
big rebase party above - now that #1032 landed, rebase on current |
depends on #1032.
#1032 fleshed out the rest of the interface between browser tabs and the auth token store, by adding several interface messages that are decidedly not about auth tokens. This PR renames the following:
RecordReplayAuthTokenStore
->RecordReplayService
RecordReplayAuthTokenStoreFactory
->RecordReplayServiceFactory
RecordReplayAuthTokenStoreObserver
->RecordReplayAuthTokenObserver
All files were renamed as well (from
auth_token*
torecord_replay*
.)