Dana ptal (sorry it's a little big but mostly mechanical)
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Mac isn't compiling; not sure why.
Made a bad patch on Mac I didn't catch building locally - should be fixed in latest patchset.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
I'd love to move away from BrowserList and to some other solution but I'm not sure that per-profile tracking of browsers would help in tests.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
I'd love to move away from BrowserList and to some other solution but I'm not sure that per-profile tracking of browsers would help in tests.
Yeah for sure, fwiw the next step in the bedrock workstream on our end is pairing down / eliminating the BrowserList API.
There may be a better way to listen to browser events that comes out of this - and supporting both BrowserDestroyedObserver and BrowserCreatedObserver should also make it easier to at least switch out the underlying implementation for the existing clients.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
9 is the latest approved patch-set.
No files were changed between the latest approved patch-set and the submitted one.
[bedrock] Add ui_test_utils::BrowserCreatedObserver
This CL introduces BrowserCreatedObserver, which replaces
BrowserChangeObserver with ChangeType::kAdded.
This simplifies client code and eliminates the unnecessarily
complicated BrowserChangeObserver, which would return dangling
references to removed Browsers in BrowserChangeObserver::Wait().
There are no intended behavior changes with this CL, simply a
mechanical transition from BrowserChangeObserver to
BrowserCreatedObserver.
Specifically:
- All instances of BrowserCreatedObserver named
browser_created_observer
- Constructor takes no params (previously always nullptr and
ChangeType::kAdded)
- Calls to Wait() unchanged in the conversion
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |