blob: 3869741a7c74ac9043c1c036d79532a1b75f97d2 [file] [log] [blame]
// Copyright 2020 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.
abstract class AnalyticsProvider {
bool get isGtagsEnabled;
bool get shouldPrompt;
bool get isEnabled;
void setUpAnalytics();
void setAllowAnalytics();
void setDontAllowAnalytics();
}