// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/segmentation_platform/internal/execution/processing/processing_utils.h" #include "base/strings/string_util.h" namespace segmentation_platform::processing { // Process OS version string to return os version number as int. int ProcessOsVersionString(std::string os_version) { … } } // namespace segmentation_platform::processing