| Commit-Queue | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
mediator.sceneState = browser->GetSceneState();Looks like the new line is not needed.
if (weakSelf.URLLoadingBrowserAgent) {You should probably use the strong self pattern here as URLLoadingBrowserAgent is a c++ object. Same below.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +1 |
Looks like the new line is not needed.
Done
@protocol OmniboxConsumer;Gauthier Ambardsame line 18.
Done
You should probably use the strong self pattern here as URLLoadingBrowserAgent is a c++ object. Same below.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
#import "ios/chrome/browser/location_bar/ui_bundled/location_bar_mutator.h"should be upper.
UrlLoadingBrowserAgent::FromBrowser(weakSelf.browser);I think if `weakSelf` or `weakSelf.browser` is nil, it will crash. This block should probably be moved in a method, same below.
"+ios/chrome/browser"No guards to keep it ordered ?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +1 |
#import "ios/chrome/browser/location_bar/ui_bundled/location_bar_mutator.h"Gauthier Ambardshould be upper.
Done
I think if `weakSelf` or `weakSelf.browser` is nil, it will crash. This block should probably be moved in a method, same below.
I thought this was returning nil when given a nil browser. TIL.
No guards to keep it ordered ?
That's allowing all includes on ios/chrome/browser. Probably none will be added.
I can still add it.
| 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. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
[iOS] Remove URLLoading command
This should be split into the URL Loader browser agent and the command
to pass a query to the composebox.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |