// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_UI_SHARING_HUB_SHARING_HUB_BUBBLE_CONTROLLER_H_ #define CHROME_BROWSER_UI_SHARING_HUB_SHARING_HUB_BUBBLE_CONTROLLER_H_ #include "base/callback_list.h" #include "chrome/browser/share/share_attempt.h" #include "chrome/browser/sharing_hub/sharing_hub_model.h" namespace content { class WebContents; } // namespace content namespace sharing_hub { class SharingHubBubbleView; // Interface for the controller component of the sharing dialog bubble. Controls // the Sharing Hub (Windows/Mac/Linux) or the Sharesheet (CrOS) depending on // platform. // Responsible for showing and hiding an associated dialog bubble. class SharingHubBubbleController { … }; } // namespace sharing_hub #endif // CHROME_BROWSER_UI_SHARING_HUB_SHARING_HUB_BUBBLE_CONTROLLER_H_