| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google 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 12 matching lines...) Expand all Loading... |
| 23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 */ | 27 */ |
| 28 | 28 |
| 29 #ifndef BindingVisitors_h | 29 #ifndef BindingVisitors_h |
| 30 #define BindingVisitors_h | 30 #define BindingVisitors_h |
| 31 | 31 |
| 32 namespace WTF { | 32 namespace WTF { |
| 33 class ArrayBufferView; | |
| 34 class StringImpl; | 33 class StringImpl; |
| 35 } | 34 } |
| 36 | 35 |
| 37 namespace blink { | 36 namespace blink { |
| 38 | 37 |
| 39 class Node; | 38 class Node; |
| 40 | 39 |
| 41 class WrappedNodeVisitor { | 40 class WrappedNodeVisitor { |
| 42 public: | 41 public: |
| 43 virtual void visitNode(Node*) = 0; | 42 virtual void visitNode(Node*) = 0; |
| 44 protected: | 43 protected: |
| 45 virtual ~WrappedNodeVisitor() { } | 44 virtual ~WrappedNodeVisitor() { } |
| 46 }; | 45 }; |
| 47 | 46 |
| 48 class ExternalStringVisitor { | 47 class ExternalStringVisitor { |
| 49 public: | 48 public: |
| 50 virtual void visitJSExternalString(WTF::StringImpl*) = 0; | 49 virtual void visitJSExternalString(WTF::StringImpl*) = 0; |
| 51 protected: | 50 protected: |
| 52 virtual ~ExternalStringVisitor() { } | 51 virtual ~ExternalStringVisitor() { } |
| 53 }; | 52 }; |
| 54 | 53 |
| 55 } // namespace blink | 54 } // namespace blink |
| 56 | 55 |
| 57 #endif // BindingVisitors_h | 56 #endif // BindingVisitors_h |
| OLD | NEW |