chromium/ios/chrome/browser/providers/primes/chromium_primes.mm

// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#import "base/notreached.h"
#import "ios/public/provider/chrome/browser/primes/primes_api.h"

namespace ios {
namespace provider {

bool IsPrimesSupported() {
  // Primes is not used by Chromium
  return false;
}

void PrimesStartLogging() {
  // Primes is not used by Chromium
  NOTREACHED_IN_MIGRATION();
}

void PrimesStopLogging() {
  // Primes is not used by Chromium
  NOTREACHED_IN_MIGRATION();
}

void PrimesAppReady() {
  // Primes is not used by Chromium
  NOTREACHED_IN_MIGRATION();
}

void PrimesTakeMemorySnapshot(NSString* eventName) {
  // Primes is not used by Chromium
  NOTREACHED_IN_MIGRATION();
}

}  // namespace provider
}  // namespace ios