| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007, 2008, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2008, 2010 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 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 private: | 58 private: |
| 59 explicit HTMLSourceElement(Document&); | 59 explicit HTMLSourceElement(Document&); |
| 60 | 60 |
| 61 void dispatchPendingEvent(); | 61 void dispatchPendingEvent(); |
| 62 | 62 |
| 63 void didMoveToNewDocument(Document& oldDocument) override; | 63 void didMoveToNewDocument(Document& oldDocument) override; |
| 64 | 64 |
| 65 InsertionNotificationRequest insertedInto(ContainerNode*) override; | 65 InsertionNotificationRequest insertedInto(ContainerNode*) override; |
| 66 void removedFrom(ContainerNode*) override; | 66 void removedFrom(ContainerNode*) override; |
| 67 bool isURLAttribute(const Attribute&) const override; | 67 bool isURLAttribute(const Attribute&) const override; |
| 68 void parseAttribute(const QualifiedName&, | 68 void parseAttribute(const AttributeModificationParams&) override; |
| 69 const AtomicString&, | |
| 70 const AtomicString&) override; | |
| 71 | 69 |
| 72 void notifyMediaQueryChanged(); | 70 void notifyMediaQueryChanged(); |
| 73 void createMediaQueryList(const AtomicString& media); | 71 void createMediaQueryList(const AtomicString& media); |
| 74 | 72 |
| 75 Member<MediaQueryList> m_mediaQueryList; | 73 Member<MediaQueryList> m_mediaQueryList; |
| 76 Member<Listener> m_listener; | 74 Member<Listener> m_listener; |
| 77 TaskHandle m_pendingErrorEvent; | 75 TaskHandle m_pendingErrorEvent; |
| 78 }; | 76 }; |
| 79 | 77 |
| 80 } // namespace blink | 78 } // namespace blink |
| 81 | 79 |
| 82 #endif // HTMLSourceElement_h | 80 #endif // HTMLSourceElement_h |
| OLD | NEW |