summaryrefslogtreecommitdiff
path: root/chromium/components/subresource_filter/tools/ruleset_converter/ruleset_format.cc
blob: 0b09335a988a9734edf93aa98b7b315e8288ef25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/subresource_filter/tools/ruleset_converter/ruleset_format.h"

#include "base/strings/string_number_conversions.h"

namespace subresource_filter {

RulesetFormat ParseFlag(const std::string& text) {
  if (text == "filter-list")
    return RulesetFormat::kFilterList;
  if (text == "proto")
    return RulesetFormat::kProto;
  if (text == "unindexed-ruleset")
    return RulesetFormat::kUnindexedRuleset;
  return RulesetFormat::kUndefined;
}

}  // namespace subresource_filter