| Commit-Queue | +1 |
alexandrasp: can you do a first pass review?
marq: can you review after alexandrasp and then send to CQ+2 if this lgtm to you both?
Please fix this WARNING reported by Large Change: This change adds 476 lines of production code. Consider splitting this change in...
This change adds 476 lines of production code. Consider splitting this change into smaller ones.
Small changes get reviewed faster and more thoroughly, are less likely to introduce bugs, and are easier to roll back if needed.
You can bypass this warning by adding 'BYPASS_LARGE_CHANGE_WARNING: <reason>' to the change description. (Google-internal: See go/large-change-nudge)
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
LGTM, although I'm wondering why profile-scoping (rather than app-scoping) is correct here? Is it because we care about the active tabs at the time of the crash which, for each scene, will be per-profile?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
LGTM, although I'm wondering why profile-scoping (rather than app-scoping) is correct here? Is it because we care about the active tabs at the time of the crash which, for each scene, will be per-profile?
IIUC, it is exactly because we want it to be per-profile. It will make it easier and the right way to have profile-aware crash keys.
Hi Sylvain, thanks for the CL! I left some comments. I also wanted to ask: is there a reason we don't have any tests here? Would it be possible to cover this with unit tests?
const std::vector<web::WebState*>& restored_web_states) final;don't we need to have web namespace?
const std::vector<web::WebState*>& restored_web_states) final;isn't it necessary to import vector?
#include "base/memory/raw_ref.h"do we need base/memory/raw_ref.h?
CGFloat red = 1.0;are we able to use CGFLoat without importing UIKit?
helpers_.insert(std::make_pair(type, std::make_unique<Helper>(type)));isn't it necessary to import utility ?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |