mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-25 06:46:09 +03:00
19 lines
575 B
Plaintext
19 lines
575 B
Plaintext
|
// Copyright 2018 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.
|
||
|
|
||
|
module blink.mojom;
|
||
|
|
||
|
import "third_party/blink/public/mojom/blob/blob.mojom";
|
||
|
|
||
|
// Struct wrapping a Blob interface pointer.
|
||
|
// TODO(mek): Once https://crbug.com/696107 is implemented all usage of this
|
||
|
// struct can be replaced with a simple Blob interface pointer with handle
|
||
|
// properties for the other attributes.
|
||
|
struct SerializedBlob {
|
||
|
string uuid;
|
||
|
string content_type;
|
||
|
uint64 size;
|
||
|
Blob blob;
|
||
|
};
|