| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 class CustomElementRegistrationContext; | 43 class CustomElementRegistrationContext; |
| 44 class Element; | 44 class Element; |
| 45 | 45 |
| 46 class CustomElementMicrotaskResolutionStep : public CustomElementMicrotaskStep { | 46 class CustomElementMicrotaskResolutionStep : public CustomElementMicrotaskStep { |
| 47 WTF_MAKE_NONCOPYABLE(CustomElementMicrotaskResolutionStep); | 47 WTF_MAKE_NONCOPYABLE(CustomElementMicrotaskResolutionStep); |
| 48 public: | 48 public: |
| 49 static PassOwnPtr<CustomElementMicrotaskResolutionStep> create(PassRefPtr<Cu
stomElementRegistrationContext>, PassRefPtr<Element>, const CustomElementDescrip
tor&); | 49 static PassOwnPtr<CustomElementMicrotaskResolutionStep> create(PassRefPtr<Cu
stomElementRegistrationContext>, PassRefPtr<Element>, const CustomElementDescrip
tor&); |
| 50 | 50 |
| 51 virtual ~CustomElementMicrotaskResolutionStep(); | 51 virtual ~CustomElementMicrotaskResolutionStep(); |
| 52 | 52 |
| 53 virtual void trace(Visitor*) override; | |
| 54 | |
| 55 private: | 53 private: |
| 56 CustomElementMicrotaskResolutionStep(PassRefPtr<CustomElementRegistrationCon
text>, PassRefPtr<Element>, const CustomElementDescriptor&); | 54 CustomElementMicrotaskResolutionStep(PassRefPtr<CustomElementRegistrationCon
text>, PassRefPtr<Element>, const CustomElementDescriptor&); |
| 57 | 55 |
| 58 virtual Result process() override; | 56 virtual Result process() override; |
| 59 | 57 |
| 60 RefPtr<CustomElementRegistrationContext> m_context; | 58 RefPtr<CustomElementRegistrationContext> m_context; |
| 61 RefPtr<Element> m_element; | 59 RefPtr<Element> m_element; |
| 62 CustomElementDescriptor m_descriptor; | 60 CustomElementDescriptor m_descriptor; |
| 63 }; | 61 }; |
| 64 | 62 |
| 65 } | 63 } |
| 66 | 64 |
| 67 #endif // CustomElementMicrotaskResolutionStep_h | 65 #endif // CustomElementMicrotaskResolutionStep_h |
| OLD | NEW |