predictor_config.cc 421 B

1234567891011121314
  1. // Copyright 2017 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "components/assist_ranker/predictor_config.h"
  5. namespace assist_ranker {
  6. const base::flat_set<std::string>* GetEmptyAllowlist() {
  7. static auto* allowlist = new base::flat_set<std::string>();
  8. return allowlist;
  9. }
  10. } // namespace assist_ranker