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; |
56 | 57 |
57 #if !defined(NDEBUG) | 58 #if !defined(NDEBUG) |
58 virtual void show(unsigned indent) OVERRIDE; | 59 virtual void show(unsigned indent) OVERRIDE; |
59 #endif | 60 #endif |
60 | 61 |
61 RefPtr<CustomElementRegistrationContext> m_context; | 62 RefPtr<CustomElementRegistrationContext> m_context; |
62 RefPtr<Element> m_element; | 63 RefPtr<Element> m_element; |
63 CustomElementDescriptor m_descriptor; | 64 CustomElementDescriptor m_descriptor; |
64 }; | 65 }; |
65 | 66 |
66 } | 67 } |
67 | 68 |
68 #endif // CustomElementMicrotaskResolutionStep_h | 69 #endif // CustomElementMicrotaskResolutionStep_h |
OLD | NEW |