// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.chromium.chrome.browser.notifications.chime;
/** Delegate Chime notification SDK functionalities. */
public class ChimeDelegate {
/** Initializes Chime SDK. */
public void initialize() {}
/** Starts a Chime session. */
public void startSession() {}
}