| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 WTF_MAKE_NONCOPYABLE(CustomElementMicrotaskResolutionStep); | 46 WTF_MAKE_NONCOPYABLE(CustomElementMicrotaskResolutionStep); |
| 47 public: | 47 public: |
| 48 static PassOwnPtr<CustomElementMicrotaskResolutionStep> create(PassRefPtr<Cu
stomElementRegistrationContext>, PassRefPtr<Element>, const CustomElementDescrip
tor&); | 48 static PassOwnPtr<CustomElementMicrotaskResolutionStep> create(PassRefPtr<Cu
stomElementRegistrationContext>, PassRefPtr<Element>, const CustomElementDescrip
tor&); |
| 49 | 49 |
| 50 virtual ~CustomElementMicrotaskResolutionStep(); | 50 virtual ~CustomElementMicrotaskResolutionStep(); |
| 51 | 51 |
| 52 private: | 52 private: |
| 53 CustomElementMicrotaskResolutionStep(PassRefPtr<CustomElementRegistrationCon
text>, PassRefPtr<Element>, const CustomElementDescriptor&); | 53 CustomElementMicrotaskResolutionStep(PassRefPtr<CustomElementRegistrationCon
text>, PassRefPtr<Element>, const CustomElementDescriptor&); |
| 54 | 54 |
| 55 virtual Result process() OVERRIDE; | 55 virtual Result process() OVERRIDE; |
| 56 virtual bool needsProcessOrStop() const OVERRIDE; | |
| 57 | 56 |
| 58 #if !defined(NDEBUG) | 57 #if !defined(NDEBUG) |
| 59 virtual void show(unsigned indent) OVERRIDE; | 58 virtual void show(unsigned indent) OVERRIDE; |
| 60 #endif | 59 #endif |
| 61 | 60 |
| 62 RefPtr<CustomElementRegistrationContext> m_context; | 61 RefPtr<CustomElementRegistrationContext> m_context; |
| 63 RefPtr<Element> m_element; | 62 RefPtr<Element> m_element; |
| 64 CustomElementDescriptor m_descriptor; | 63 CustomElementDescriptor m_descriptor; |
| 65 }; | 64 }; |
| 66 | 65 |
| 67 } | 66 } |
| 68 | 67 |
| 69 #endif // CustomElementMicrotaskResolutionStep_h | 68 #endif // CustomElementMicrotaskResolutionStep_h |
| OLD | NEW |