| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
includeDebugData:(BOOL)includeDebugData {Wrap the getFramesAndContentNodes call below in an `if (includeDebugData)` check.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Wrap the getFramesAndContentNodes call below in an `if (includeDebugData)` check.
Great catch! I forgot to actually use this param.
| 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. |
6 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: ios/chrome/browser/ai_prototyping/coordinator/ai_prototyping_mediator.mm
Insertions: 4, Deletions: 2.
@@ -657,8 +657,10 @@
std::unique_ptr<optimization_guide::proto::PageContext> page_context =
std::move(response.value());
- [weakSelf getFramesAndContentNodes:*page_context
- forConsumer:weakSelf.consumer];
+ if (includeDebugData) {
+ [weakSelf getFramesAndContentNodes:*page_context
+ forConsumer:weakSelf.consumer];
+ }
std::string serialized_proto = page_context->SerializeAsString();
```
Update Actor Prototype page in ai_prototyping to use identifiers
This will facilitate testing actuation on elements targeted by
(document_identifier, content_node_id).
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |