| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2000 Peter Kelly (pmk@post.com) | 2 * Copyright (C) 2000 Peter Kelly (pmk@post.com) |
| 3 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved. | 3 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 | 21 |
| 22 #ifndef Entity_h | 22 #ifndef Entity_h |
| 23 #define Entity_h | 23 #define Entity_h |
| 24 | 24 |
| 25 #include "core/dom/ContainerNode.h" | 25 #include "core/dom/ContainerNode.h" |
| 26 | 26 |
| 27 namespace WebCore { | 27 namespace WebCore { |
| 28 | 28 |
| 29 class Entity : public ContainerNode { | 29 class Entity : public ContainerNode { |
| 30 private: | 30 private: |
| 31 Entity() : ContainerNode(0) | 31 Entity(); // Left unimplemented on purpose. |
| 32 { | |
| 33 ASSERT_NOT_REACHED(); | |
| 34 ScriptWrappable::init(this); | |
| 35 } | |
| 36 }; | 32 }; |
| 37 | 33 |
| 38 } // namespace WebCore | 34 } // namespace WebCore |
| 39 | 35 |
| 40 #endif | 36 #endif |
| OLD | NEW |