
Update file contents without moving files. NOAUTOREVERT=true NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true TBR=darin@chromium.org Bug: 768828 Change-Id: I8a2f4535a49a25f44b43df32f25691c0a2556d28 Reviewed-on: https://chromium-review.googlesource.com/1001152 Commit-Queue: Blink Reformat <blink-reformat@chromium.org> Reviewed-by: Blink Reformat <blink-reformat@chromium.org> Reviewed-by: Kent Tamura <tkent@chromium.org> Cr-Commit-Position: refs/heads/master@{#549060}
31 lines
870 B
C++
31 lines
870 B
C++
// 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 CONTENT_TEST_MOCK_WEBBLOB_REGISTRY_IMPL_H_
|
|
#define CONTENT_TEST_MOCK_WEBBLOB_REGISTRY_IMPL_H_
|
|
|
|
#include <stddef.h>
|
|
|
|
#include "base/macros.h"
|
|
#include "third_party/blink/public/platform/web_blob_registry.h"
|
|
|
|
namespace content {
|
|
|
|
class MockWebBlobRegistryImpl : public blink::WebBlobRegistry {
|
|
public:
|
|
MockWebBlobRegistryImpl();
|
|
~MockWebBlobRegistryImpl() override;
|
|
|
|
void RegisterPublicBlobURL(const blink::WebURL&,
|
|
const blink::WebString& uuid) override;
|
|
void RevokePublicBlobURL(const blink::WebURL&) override;
|
|
|
|
private:
|
|
DISALLOW_COPY_AND_ASSIGN(MockWebBlobRegistryImpl);
|
|
};
|
|
|
|
} // namespace content
|
|
|
|
#endif // CONTENT_TEST_MOCK_WEBBLOB_REGISTRY_IMPL_H_
|