blob: 0f4216b55df434f45cc3172c84f4bdc8296a4aea [file] [log] [blame]
// Copyright 2019 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 CHROME_BROWSER_SHARING_SHARING_DIALOG_H_
#define CHROME_BROWSER_SHARING_SHARING_DIALOG_H_
// The cross-platform UI interface which displays the sharing dialog.
// This object is responsible for its own lifetime.
class SharingDialog {
public:
// Called to close the dialog and prevent future callbacks into the
// controller.
virtual void Hide() = 0;
};
#endif // CHROME_BROWSER_SHARING_SHARING_DIALOG_H_