| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2008 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2013 Google Inc. All rights reserved. | 3 * Copyright (C) 2013 Google 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 virtual void DispatchErrorEvent() = 0; | 44 virtual void DispatchErrorEvent() = 0; |
| 45 | 45 |
| 46 virtual bool AsyncAttributeValue() const = 0; | 46 virtual bool AsyncAttributeValue() const = 0; |
| 47 virtual String CharsetAttributeValue() const = 0; | 47 virtual String CharsetAttributeValue() const = 0; |
| 48 virtual String CrossOriginAttributeValue() const = 0; | 48 virtual String CrossOriginAttributeValue() const = 0; |
| 49 virtual bool DeferAttributeValue() const = 0; | 49 virtual bool DeferAttributeValue() const = 0; |
| 50 virtual String EventAttributeValue() const = 0; | 50 virtual String EventAttributeValue() const = 0; |
| 51 virtual String ForAttributeValue() const = 0; | 51 virtual String ForAttributeValue() const = 0; |
| 52 virtual String IntegrityAttributeValue() const = 0; | 52 virtual String IntegrityAttributeValue() const = 0; |
| 53 virtual String LanguageAttributeValue() const = 0; | 53 virtual String LanguageAttributeValue() const = 0; |
| 54 virtual bool NomoduleAttributeValue() const = 0; |
| 54 virtual String SourceAttributeValue() const = 0; | 55 virtual String SourceAttributeValue() const = 0; |
| 55 virtual String TypeAttributeValue() const = 0; | 56 virtual String TypeAttributeValue() const = 0; |
| 56 | 57 |
| 57 virtual String TextFromChildren() = 0; | 58 virtual String TextFromChildren() = 0; |
| 58 virtual String TextContent() const = 0; | 59 virtual String TextContent() const = 0; |
| 59 virtual bool HasSourceAttribute() const = 0; | 60 virtual bool HasSourceAttribute() const = 0; |
| 60 virtual bool IsConnected() const = 0; | 61 virtual bool IsConnected() const = 0; |
| 61 virtual bool HasChildren() const = 0; | 62 virtual bool HasChildren() const = 0; |
| 62 virtual bool IsNonceableElement() const = 0; | 63 virtual bool IsNonceableElement() const = 0; |
| 63 virtual AtomicString InitiatorName() const = 0; | 64 virtual AtomicString InitiatorName() const = 0; |
| (...skipping 19 matching lines...) Expand all Loading... |
| 83 | 84 |
| 84 Member<ScriptLoader> loader_; | 85 Member<ScriptLoader> loader_; |
| 85 | 86 |
| 86 private: | 87 private: |
| 87 AtomicString nonce_; | 88 AtomicString nonce_; |
| 88 }; | 89 }; |
| 89 | 90 |
| 90 } // namespace blink | 91 } // namespace blink |
| 91 | 92 |
| 92 #endif | 93 #endif |
| OLD | NEW |