summaryrefslogtreecommitdiffstats
path: root/extensions/browser/blob_holder.h
blob: efaed9280742fdee7c9c00596f54d7a12dbe661b (plain)
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
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef EXTENSIONS_BROWSER_BLOB_HOLDER_H_
#define EXTENSIONS_BROWSER_BLOB_HOLDER_H_

#include <map>
#include <string>
#include <vector>

#include "base/macros.h"
#include "base/memory/linked_ptr.h"
#include "base/memory/scoped_ptr.h"
#include "base/supports_user_data.h"

namespace content {
class BlobHandle;
class RenderProcessHost;
}

namespace extensions {

class ExtensionMessageFilter;

// Used for holding onto Blobs created into the browser process until a
// renderer takes over ownership. This class operates on the UI thread.
class BlobHolder : public base::SupportsUserData::Data {
 public:
  // Will create the BlobHolder if it doesn't already exist.
  static BlobHolder* FromRenderProcessHost(
      content::RenderProcessHost* render_process_host);

  ~BlobHolder() override;

  // Causes BlobHolder to take ownership of |blob|.
  void HoldBlobReference(scoped_ptr<content::BlobHandle> blob);

 private:
  typedef std::multimap<std::string, linked_ptr<content::BlobHandle> >
      BlobHandleMultimap;

  explicit BlobHolder(content::RenderProcessHost* render_process_host);

  // BlobHolder will drop a blob handle for each element in blob_uuids.
  // If caller wishes to drop multiple references to the same blob,
  // |blob_uuids| may contain duplicate UUIDs.
  void DropBlobs(const std::vector<std::string>& blob_uuids);
  friend class ExtensionMessageFilter;

  bool ContainsBlobHandle(content::BlobHandle* handle) const;

  // A reference to the owner of this class.
  content::RenderProcessHost* render_process_host_;

  BlobHandleMultimap held_blobs_;

  DISALLOW_COPY_AND_ASSIGN(BlobHolder);
};

}  // namespace extensions

#endif  // EXTENSIONS_BROWSER_BLOB_HOLDER_H_