blob: e4ac46ced58a03f8c7bc44dbf41074e05a0d9203 [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.
#ifndef COMPONENTS_EXO_TOAST_SURFACE_MANAGER_H_
#define COMPONENTS_EXO_TOAST_SURFACE_MANAGER_H_
namespace exo {
class ToastSurface;
class ToastSurfaceManager {
public:
virtual ~ToastSurfaceManager() = default;
// Adds an ToastSurface to the manager.
virtual void AddSurface(ToastSurface* surface) = 0;
// Removes an ToastSurface from the manager.
virtual void RemoveSurface(ToastSurface* surface) = 0;
};
} // namespace exo
#endif // COMPONENTS_EXO_TOAST_SURFACE_MANAGER_H_