1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48
   49
   50
   51
   52
   53
   54
   55
   56
   57
   58
   59
   60
   61
   62
   63
   64
   65
   66
   67
   68

content / public / browser / content_index_context.h [blame]

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CONTENT_PUBLIC_BROWSER_CONTENT_INDEX_CONTEXT_H_
#define CONTENT_PUBLIC_BROWSER_CONTENT_INDEX_CONTEXT_H_

#include <optional>
#include <string>
#include <vector>

#include "base/functional/callback_forward.h"
#include "content/common/content_export.h"
#include "content/public/browser/content_index_provider.h"
#include "third_party/blink/public/mojom/content_index/content_index.mojom.h"

class SkBitmap;

namespace url {
class Origin;
}  // namespace url

namespace content {

// Owned by the Storage Partition. This is used by the ContentIndexProvider to
// query auxiliary data for its entries from the right source.
class CONTENT_EXPORT ContentIndexContext {
 public:
  using GetAllEntriesCallback =
      base::OnceCallback<void(blink::mojom::ContentIndexError,
                              std::vector<ContentIndexEntry>)>;
  using GetEntryCallback =
      base::OnceCallback<void(std::optional<ContentIndexEntry>)>;
  using GetIconsCallback = base::OnceCallback<void(std::vector<SkBitmap>)>;

  ContentIndexContext() = default;

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

  virtual ~ContentIndexContext() = default;

  // Returns all available icons for the entry identified by
  // |service_worker_registration_id| and |description_id|.
  // The number of icons and the sizes are chosen by the ContentIndexProvider.
  // Must be called on the UI thread. |callback| must be invoked on the UI
  // the UI thread.
  virtual void GetIcons(int64_t service_worker_registration_id,
                        const std::string& description_id,
                        GetIconsCallback callback) = 0;

  // Must be called on the UI thread.
  virtual void GetAllEntries(GetAllEntriesCallback callback) = 0;

  // Must be called on the UI thread.
  virtual void GetEntry(int64_t service_worker_registration_id,
                        const std::string& description_id,
                        GetEntryCallback callback) = 0;

  // Called when a user deleted an item. Must be called on the UI thread.
  virtual void OnUserDeletedItem(int64_t service_worker_registration_id,
                                 const url::Origin& origin,
                                 const std::string& description_id) = 0;
};

}  // namespace content

#endif  // CONTENT_PUBLIC_BROWSER_CONTENT_INDEX_CONTEXT_H_