blob: 13dbac5e2aa7ba17c44881d21b58a30a1e071ea8 (
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
64
65
|
// 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.
#include "content/test/mock_webblob_registry_impl.h"
#include "third_party/WebKit/public/platform/WebBlobData.h"
#include "third_party/WebKit/public/platform/WebString.h"
#include "third_party/WebKit/public/platform/WebURL.h"
using blink::WebBlobData;
using blink::WebString;
using blink::WebURL;
namespace content {
MockWebBlobRegistryImpl::MockWebBlobRegistryImpl() {
}
MockWebBlobRegistryImpl::~MockWebBlobRegistryImpl() {
}
void MockWebBlobRegistryImpl::registerBlobData(const WebString& uuid,
const WebBlobData& data) {
}
void MockWebBlobRegistryImpl::addBlobDataRef(const WebString& uuid) {
}
void MockWebBlobRegistryImpl::removeBlobDataRef(const WebString& uuid) {
}
void MockWebBlobRegistryImpl::registerPublicBlobURL(const WebURL& url,
const WebString& uuid) {
}
void MockWebBlobRegistryImpl::revokePublicBlobURL(const WebURL& url) {
}
void MockWebBlobRegistryImpl::registerStreamURL(const WebURL& url,
const WebString& content_type) {
}
void MockWebBlobRegistryImpl::registerStreamURL(const WebURL& url,
const blink::WebURL& src_url) {
}
void MockWebBlobRegistryImpl::addDataToStream(const WebURL& url,
const char* data,
size_t length) {
}
void MockWebBlobRegistryImpl::flushStream(const WebURL& url) {
}
void MockWebBlobRegistryImpl::finalizeStream(const WebURL& url) {
}
void MockWebBlobRegistryImpl::abortStream(const WebURL& url) {
}
void MockWebBlobRegistryImpl::unregisterStreamURL(const WebURL& url) {
}
} // namespace content
|