| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
sqs_list.push_back(sqs);Since we're potentially creating a new entry in the list, should we call this method "GetOrCreateUniqueOverlayId"?
gfx::OverlayLayerId parent_layer_id;Can we remove parent_layer_id for now until we need it?
Microsoft::WRL::ComPtr<IDCompositionVisual> old_parent_visual =```suggestion
Microsoft::WRL::ComPtr<IDCompositionVisual> previous_parent_visual =
```
base::FeatureList::IsEnabled(features::kDCLayerTree2FromScratch)Consider having the update mode be a parameter of the DCLayerTree2 feature flag instead of its own feature flag. Fewer invalid states to check for.
DLOG(ERROR) << "IDCompositionDevice2::Commit failed: "```suggestion
LOG(ERROR) << "IDCompositionDevice2::Commit failed: "
```
Consider switching to LOG(ERROR) so we can better help people with rendering issues.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Since we're potentially creating a new entry in the list, should we call this method "GetOrCreateUniqueOverlayId"?
Done
Can we remove parent_layer_id for now until we need it?
We need this due to [the `OsCompositorTreeBase` interface](https://source.chromium.org/chromium/chromium/src/+/main:ui/gl/os_compositor_tree_base.h;l=31-33;drc=3ab87020a04ea6586dff4ab26eee8df86ab8dc8d). For now, it will always be `gfx::OverlayLayerId()` (which is `gfx::OverlayLayerId::MakeVizInternal(VizInternalId::kOsCompositorRoot)`).
Microsoft::WRL::ComPtr<IDCompositionVisual> old_parent_visual =```suggestion
Microsoft::WRL::ComPtr<IDCompositionVisual> previous_parent_visual =
```
Done
base::FeatureList::IsEnabled(features::kDCLayerTree2FromScratch)Consider having the update mode be a parameter of the DCLayerTree2 feature flag instead of its own feature flag. Fewer invalid states to check for.
Done
DLOG(ERROR) << "IDCompositionDevice2::Commit failed: "```suggestion
LOG(ERROR) << "IDCompositionDevice2::Commit failed: "
```
Consider switching to LOG(ERROR) so we can better help people with rendering issues.
| 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. |