@m...@chromium.org I removed these changes, those to service_controlled and to the test files as I think these need to be kept if we are keeping the runtime enabled features as discussed. Do you agree?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
embedded_https_test_server().SetSSLConfig(Why are these server + resolve and the url host checks below needed?
// Sets a temporary override for the maximum service count for testing.
// This method should only be called in test contexts.
void SetMaxServiceCountForTesting(std::optional<size_t> count);
// Gets the maximum number of services allowed.
size_t GetMaxServiceCount() const;I think it's fine to revert these changes and keep the feature param. Otherwise:
nit: inline accessors, make the value non-optional + non-test-specific + init here.
```
size_t get_max_service_count_for_testing() { return max_service_count_; }
void set_max_service_count_for_testing(size_t count) { max_service_count_ = count; }
...
size_t max_service_count_ = 10;
```
@m...@chromium.org I removed these changes, those to service_controlled and to the test files as I think these need to be kept if we are keeping the runtime enabled features as discussed. Do you agree?
Please do revert feature params changes, we'll just remove the about_flags entry for now. Feature params are still viable for command-line and test overrides.
base_feature_status: "enabled",
copied_from_base_feature_if: "overridden",Apparently we can remove these and retain finch kill switch functionality?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
embedded_https_test_server().SetSSLConfig(Why are these server + resolve and the url host checks below needed?
Done
// Sets a temporary override for the maximum service count for testing.
// This method should only be called in test contexts.
void SetMaxServiceCountForTesting(std::optional<size_t> count);
// Gets the maximum number of services allowed.
size_t GetMaxServiceCount() const;I think it's fine to revert these changes and keep the feature param. Otherwise:
nit: inline accessors, make the value non-optional + non-test-specific + init here.
```
size_t get_max_service_count_for_testing() { return max_service_count_; }
void set_max_service_count_for_testing(size_t count) { max_service_count_ = count; }
...
size_t max_service_count_ = 10;
```
Marked as resolved.
Mike Wasserman@m...@chromium.org I removed these changes, those to service_controlled and to the test files as I think these need to be kept if we are keeping the runtime enabled features as discussed. Do you agree?
Please do revert feature params changes, we'll just remove the about_flags entry for now. Feature params are still viable for command-line and test overrides.
Resolved.
base_feature_status: "enabled",
copied_from_base_feature_if: "overridden",Apparently we can remove these and retain finch kill switch functionality?
This is an older patchset. I removed these changes based on what we found out about the killswitch. I just wrote my above comment as an FYI. Sorry for not clarifying that.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
gotcha. code changes lg (modulo rebase). please updated cl desc
[Translation API] Remove TranslationAPI feature flag.Update CL description for just removing chrome://flags entry and stale param/variation
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Update CL description for just removing chrome://flags entry and stale param/variation
| 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. |
Hi @na...@chromium.org, Adding you for a review on this since you are a code owner for this file. Thanks
Hi @khusha...@chromium.org, Adding you for a review on this since you are a code owner for this file. Thanks
| 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. |
| Code-Review | +1 |
{
name: "TranslationAPI",
status: {
"Win": "stable",
"Mac": "stable",
"Linux": "stable",
"ChromeOS": "stable",
"default": "",
},
base_feature_status: "enabled",
copied_from_base_feature_if: "overridden",
},you can remove this entry itself since all usage is being removed from the codebase.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |