| Commit-Queue | +1 |
using tab_groups::TabGroupId;I did this because `std::optional<tab_groups::TabGroupId>` is long and was causing line wrapping in some cases.
std::optional<TabGroupId> group1 = CreateTabGroup({0});The test is unchanged, it just uses cross-platform interfaces (TabListInterface) and helper methods (CreateTabGroup).
std::optional<TabGroupId> group1 = CreateTabGroup({0});ditto, the test is unchanged, just refactored
TabGroupId group = tab_strip_model->AddToNewGroup({0, 1, 2});I'll convert these to the CreateTabGroup() helper method when I enable the tests on Android. For now they are Win/Mac/Linux/ChromeOS only.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
lgtm!
using tab_groups::TabGroupId;I did this because `std::optional<tab_groups::TabGroupId>` is long and was causing line wrapping in some cases.
Acknowledged
std::optional<TabGroupId> group1 = CreateTabGroup({0});ditto, the test is unchanged, just refactored
Acknowledged
TabGroupId group = tab_strip_model->AddToNewGroup({0, 1, 2});I'll convert these to the CreateTabGroup() helper method when I enable the tests on Android. For now they are Win/Mac/Linux/ChromeOS only.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +2 |
std::optional<TabGroupId> group1 = CreateTabGroup({0});James CookThe test is unchanged, it just uses cross-platform interfaces (TabListInterface) and helper methods (CreateTabGroup).
Acknowledged
TabGroupId group = tab_strip_model->AddToNewGroup({0, 1, 2});Zoraiz NaeemI'll convert these to the CreateTabGroup() helper method when I enable the tests on Android. For now they are Win/Mac/Linux/ChromeOS only.
Maybe add a TODO if it will be while till you get to it?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
3 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: chrome/browser/extensions/api/tab_groups/tab_groups_api_browsertest.cc
Insertions: 1, Deletions: 0.
@@ -458,6 +458,7 @@
TabGroupModel* tab_group_model = tab_strip_model->group_model();
// Create a group.
+ // TODO(crbug.com/405219902): Convert call to CreateTabGroup() here and below.
TabGroupId group = tab_strip_model->AddToNewGroup({0, 1, 2});
tab_groups::TabGroupVisualData visual_data(
u"Initial title", tab_groups::TabGroupColorId::kBlue);
```
extensions: Enable chrome.tabGrousp.query() on desktop Android
Enable the API method implementation on Android and enable the
corresponding browser tests.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |