| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 */ | 27 */ |
| 28 | 28 |
| 29 #ifndef Console_h | 29 #ifndef Console_h |
| 30 #define Console_h | 30 #define Console_h |
| 31 | 31 |
| 32 #include "core/frame/ConsoleBase.h" | 32 #include "core/frame/ConsoleBase.h" |
| 33 #include "core/frame/DOMWindowProperty.h" | 33 #include "core/frame/DOMWindowProperty.h" |
| 34 #include "platform/Supplementable.h" | 34 #include "platform/Supplementable.h" |
| 35 #include "platform/heap/Handle.h" | 35 #include "platform/heap/Handle.h" |
| 36 #include "wtf/Forward.h" | 36 #include "wtf/Forward.h" |
| 37 #include "wtf/PassRefPtr.h" | |
| 38 #include "wtf/RefCounted.h" | |
| 39 | 37 |
| 40 namespace blink { | 38 namespace blink { |
| 41 | 39 |
| 42 class LocalFrame; | 40 class LocalFrame; |
| 43 | 41 |
| 44 class Console final : public ConsoleBase, public DOMWindowProperty, public Suppl
ementable<Console> { | 42 class Console final : public ConsoleBase, public DOMWindowProperty, public Suppl
ementable<Console> { |
| 45 USING_GARBAGE_COLLECTED_MIXIN(Console); | 43 USING_GARBAGE_COLLECTED_MIXIN(Console); |
| 46 DEFINE_WRAPPERTYPEINFO(); | 44 DEFINE_WRAPPERTYPEINFO(); |
| 47 public: | 45 public: |
| 48 static Console* create(LocalFrame* frame) | 46 static Console* create(LocalFrame* frame) |
| 49 { | 47 { |
| 50 return new Console(frame); | 48 return new Console(frame); |
| 51 } | 49 } |
| 52 ~Console() override; | 50 ~Console() override; |
| 53 | 51 |
| 54 DECLARE_VIRTUAL_TRACE(); | 52 DECLARE_VIRTUAL_TRACE(); |
| 55 | 53 |
| 56 protected: | 54 protected: |
| 57 ExecutionContext* context() override; | 55 ExecutionContext* context() override; |
| 58 void reportMessageToConsole(ConsoleMessage*) override; | 56 void reportMessageToConsole(ConsoleMessage*) override; |
| 59 | 57 |
| 60 private: | 58 private: |
| 61 explicit Console(LocalFrame*); | 59 explicit Console(LocalFrame*); |
| 62 }; | 60 }; |
| 63 | 61 |
| 64 } // namespace blink | 62 } // namespace blink |
| 65 | 63 |
| 66 #endif // Console_h | 64 #endif // Console_h |
| OLD | NEW |