chromium/chrome/browser/sharesheet/share_action/share_action_cache.h

// 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.

#ifndef CHROME_BROWSER_SHARESHEET_SHARE_ACTION_SHARE_ACTION_CACHE_H_
#define CHROME_BROWSER_SHARESHEET_SHARE_ACTION_SHARE_ACTION_CACHE_H_

#include <memory>
#include <string>
#include <vector>

#include "chrome/browser/sharesheet/sharesheet_types.h"
#include "components/services/app_service/public/cpp/intent.h"

class Profile;

namespace gfx {
struct VectorIcon;
}

namespace sharesheet {

class ShareAction;

// The ShareActionCache facilitates communication between ShareActions
// and the SharesheetService.
class ShareActionCache {
 public:
  explicit ShareActionCache(Profile* profile);
  ~ShareActionCache();

  ShareActionCache(const ShareActionCache&) = delete;
  ShareActionCache& operator=(const ShareActionCache&) = delete;

  ShareAction* GetActionFromType(ShareActionType action_type);

  const std::vector<std::unique_ptr<ShareAction>>& GetShareActions();

  bool HasVisibleActions(const apps::IntentPtr& intent,
                         bool contains_google_document);

  // Returns null if |action_type| is not a valid ShareAction.
  const gfx::VectorIcon* GetVectorIconFromType(ShareActionType action_type);

  void AddShareActionForTesting();

 private:
  void AddShareAction(std::unique_ptr<ShareAction> action);

  std::vector<std::unique_ptr<ShareAction>> share_actions_;
};

}  // namespace sharesheet

#endif  // CHROME_BROWSER_SHARESHEET_SHARE_ACTION_SHARE_ACTION_CACHE_H_