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

content / browser / broadcast_channel / broadcast_channel_provider.h [blame]

// Copyright 2016 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_BROWSER_BROADCAST_CHANNEL_BROADCAST_CHANNEL_PROVIDER_H_
#define CONTENT_BROWSER_BROADCAST_CHANNEL_BROADCAST_CHANNEL_PROVIDER_H_

#include <map>

#include "base/memory/raw_ptr.h"
#include "third_party/blink/public/common/storage_key/storage_key.h"
#include "third_party/blink/public/mojom/broadcastchannel/broadcast_channel.mojom.h"

namespace content {

class BroadcastChannelService;

class BroadcastChannelProvider : public blink::mojom::BroadcastChannelProvider {
 public:
  BroadcastChannelProvider(BroadcastChannelService* broadcast_channel_service,
                           const blink::StorageKey& storage_key);

  BroadcastChannelProvider() = delete;
  ~BroadcastChannelProvider() override;

  void ConnectToChannel(
      const std::string& name,
      mojo::PendingAssociatedRemote<blink::mojom::BroadcastChannelClient>
          client,
      mojo::PendingAssociatedReceiver<blink::mojom::BroadcastChannelClient>
          connection) override;

 private:
  const blink::StorageKey storage_key_;
  // Note: We use a raw pointer here because each BroadcastChannelProvider is
  // owned by BroadcastChannelService, so the lifetime of the former should not
  // exceed the lifetime of the latter.
  raw_ptr<BroadcastChannelService> broadcast_channel_service_;
};

}  // namespace content

#endif  // CONTENT_BROWSER_BROADCAST_CHANNEL_BROADCAST_CHANNEL_PROVIDER_H_