still running through mega-CQ to make sure there aren't issues
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
lgtm
source_set("certificate_viewer") {nit: This was `!is_android` previously, should we move it into the corresponding block below?
source_set("fullscreen") {
public = [ "fullscreen.h" ]
}nit: Similarly this was previously only included for `!is_chromeos`, so perhaps we should move it to a corresponding block below
source_set("chrome_process_singleton") {nit: Could we merge this into the `!is_android` block above?
| 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. |
| Commit-Queue | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
nit: This was `!is_android` previously, should we move it into the corresponding block below?
Done
source_set("fullscreen") {
public = [ "fullscreen.h" ]
}nit: Similarly this was previously only included for `!is_chromeos`, so perhaps we should move it to a corresponding block below
Done
nit: Could we merge this into the `!is_android` block above?
Done
if (!is_chromeos && !is_android) {
deps += [ "//chrome/browser/download/bubble" ]
}nit: We should be able to remove this (it looks like we have
```
if (!is_android && !is_chromeos) {
deps += [ "//chrome/browser/download/bubble" ]
}
```
below at like 581
if (is_mac) {
deps += [ "//chrome/browser:app_controller_mac" ]
}nit: Could we move this `deps` block below to where we list the other conditional deps?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
source_set("certificate_viewer") {nit: This was `!is_android` previously, should we move it into the corresponding block below?
Done
source_set("fullscreen") {
public = [ "fullscreen.h" ]
}nit: Similarly this was previously only included for `!is_chromeos`, so perhaps we should move it to a corresponding block below
Done
source_set("chrome_process_singleton") {nit: Could we merge this into the `!is_android` block above?
Done
if (!is_chromeos && !is_android) {
deps += [ "//chrome/browser/download/bubble" ]
}nit: We should be able to remove this (it looks like we have
```
if (!is_android && !is_chromeos) {
deps += [ "//chrome/browser/download/bubble" ]
}
```
below at like 581
if (is_mac) {
deps += [ "//chrome/browser:app_controller_mac" ]
}nit: Could we move this `deps` block below to where we list the other conditional deps?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +1 |
| Mega-CQ | +1 |
dcheng: PTAL chrome/browser/chrome_browser_interface_binders.cc
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
source_set("certificate_viewer") {Both `certificate_viewer` and `fullscreen` headers only have implementations under `!is_android` and `!is_chromeos` respectively (these headers were previously only available under these build configurations also).
I assume there's a reason why it's necessary to expose these as not platform guarded - it might be helpful to leave a comment on why this is necessary.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |