| Commit-Queue | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
LGTM % nit, great work Adam!!!
std::move(callback).Run(false, response);nit: will you please preface this with a comment to help readers understand what its refering to (like you have above) here and below?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
nit: will you please preface this with a comment to help readers understand what its refering to (like you have above) here and below?
| 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. |
5 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: components/contextual_search/footprints/internal/fpop_service_impl.cc
Insertions: 3, Deletions: 3.
@@ -300,18 +300,18 @@
const std::string& response_body) {
footprints::oneplatform::ShouldShowMobileConsentFlowResponse response;
if (!success) {
- std::move(callback).Run(false, response);
+ std::move(callback).Run(/*success=*/false, response);
return;
}
if (!response.ParseFromString(response_body)) {
LOG(ERROR) << "Failed to parse ShouldShowMobileConsentFlowResponse from "
"Footprints OnePlatform.";
- std::move(callback).Run(false, response);
+ std::move(callback).Run(/*success=*/false, response);
return;
}
- std::move(callback).Run(true, response);
+ std::move(callback).Run(/*success=*/true, response);
}
} // namespace contextual_search
```
[aim-drive] - gate add from drive behind pcontext eligibility
This CL replaces the GetFacs RPC with ShouldShowMobileConsentFlow in
DriveDisclaimerController to determine if a user is eligible to use the
"Add from Drive" feature.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |