blob: 86af271f5b7b4957e4d177ea0a0beae8c063919a [file] [log] [blame]
// 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.
#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_BINDINGS_CUSTOM_WRAPPABLE_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_BINDINGS_CUSTOM_WRAPPABLE_H_
#include "base/macros.h"
#include "third_party/blink/renderer/platform/bindings/name_client.h"
#include "third_party/blink/renderer/platform/heap/handle.h"
namespace blink {
// See the comment on CustomWrappableAdaptor.
class PLATFORM_EXPORT CustomWrappable
: public GarbageCollected<CustomWrappable>,
public NameClient {
public:
virtual ~CustomWrappable() = default;
virtual void Trace(Visitor*) const {}
const char* NameInHeapSnapshot() const override { return "CustomWrappable"; }
protected:
CustomWrappable() = default;
private:
DISALLOW_COPY_AND_ASSIGN(CustomWrappable);
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_BINDINGS_CUSTOM_WRAPPABLE_H_