#ifndef CONTENT_SHELL_BROWSER_SHELL_CONTENT_INDEX_PROVIDER_H_
#define CONTENT_SHELL_BROWSER_SHELL_CONTENT_INDEX_PROVIDER_H_
#include <map>
#include <string>
#include <vector>
#include "content/public/browser/content_index_provider.h"
#include "ui/gfx/geometry/size.h"
#include "url/origin.h"
namespace content {
class ShellContentIndexProvider : public ContentIndexProvider {
public:
ShellContentIndexProvider();
ShellContentIndexProvider(const ShellContentIndexProvider&) = delete;
ShellContentIndexProvider& operator=(const ShellContentIndexProvider&) =
delete;
~ShellContentIndexProvider() override;
std::vector<gfx::Size> GetIconSizes(
blink::mojom::ContentCategory category) override;
void OnContentAdded(ContentIndexEntry entry) override;
void OnContentDeleted(int64_t service_worker_registration_id,
const url::Origin& origin,
const std::string& description_id) override;
std::pair<int64_t, url::Origin> GetRegistrationDataFromId(
const std::string& id);
void set_icon_sizes(std::vector<gfx::Size> icon_sizes) {
icon_sizes_ = std::move(icon_sizes);
}
private:
std::map<std::string, std::pair<int64_t, url::Origin>> entries_;
std::vector<gfx::Size> icon_sizes_;
};
}
#endif