| Index: Source/core/frame/Console.h
|
| diff --git a/Source/core/frame/Console.h b/Source/core/frame/Console.h
|
| index e42c953c7b3fc45cf875faea722b8dbe1833a3c4..5424dcb79d1ae933a1828165fa1d30469bfbdf12 100644
|
| --- a/Source/core/frame/Console.h
|
| +++ b/Source/core/frame/Console.h
|
| @@ -41,13 +41,13 @@ namespace blink {
|
|
|
| class LocalFrame;
|
|
|
| -class Console final : public ConsoleBase, public DOMWindowProperty, public WillBeHeapSupplementable<Console> {
|
| - WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(Console);
|
| +class Console final : public ConsoleBase, public DOMWindowProperty, public HeapSupplementable<Console> {
|
| + USING_GARBAGE_COLLECTED_MIXIN(Console);
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static PassRefPtrWillBeRawPtr<Console> create(LocalFrame* frame)
|
| + static Console* create(LocalFrame* frame)
|
| {
|
| - return adoptRefWillBeNoop(new Console(frame));
|
| + return new Console(frame);
|
| }
|
| virtual ~Console();
|
|
|
|
|