| Index: third_party/WebKit/Source/core/dom/custom/V0CustomElementScheduler.h
|
| diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementScheduler.h b/third_party/WebKit/Source/core/dom/custom/V0CustomElementScheduler.h
|
| similarity index 62%
|
| rename from third_party/WebKit/Source/core/dom/custom/CustomElementScheduler.h
|
| rename to third_party/WebKit/Source/core/dom/custom/V0CustomElementScheduler.h
|
| index 81ae372db94e1d48003acec0dddfc2ff5fe2571c..8cc2bc6e3fee1e6160d0e3ffd4e52f30dffc389a 100644
|
| --- a/third_party/WebKit/Source/core/dom/custom/CustomElementScheduler.h
|
| +++ b/third_party/WebKit/Source/core/dom/custom/V0CustomElementScheduler.h
|
| @@ -28,41 +28,41 @@
|
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| */
|
|
|
| -#ifndef CustomElementScheduler_h
|
| -#define CustomElementScheduler_h
|
| +#ifndef V0CustomElementScheduler_h
|
| +#define V0CustomElementScheduler_h
|
|
|
| -#include "core/dom/custom/CustomElementCallbackQueue.h"
|
| -#include "core/dom/custom/CustomElementLifecycleCallbacks.h"
|
| +#include "core/dom/custom/V0CustomElementCallbackQueue.h"
|
| +#include "core/dom/custom/V0CustomElementLifecycleCallbacks.h"
|
| #include "platform/heap/Handle.h"
|
| #include "wtf/HashMap.h"
|
| #include "wtf/text/AtomicString.h"
|
|
|
| namespace blink {
|
|
|
| -class CustomElementDescriptor;
|
| -class CustomElementMicrotaskImportStep;
|
| -class CustomElementMicrotaskStep;
|
| -class CustomElementRegistrationContext;
|
| +class V0CustomElementDescriptor;
|
| +class V0CustomElementMicrotaskImportStep;
|
| +class V0CustomElementMicrotaskStep;
|
| +class V0CustomElementRegistrationContext;
|
| class HTMLImportChild;
|
|
|
| -class CustomElementScheduler final : public GarbageCollected<CustomElementScheduler> {
|
| +class V0CustomElementScheduler final : public GarbageCollected<V0CustomElementScheduler> {
|
| public:
|
|
|
| - static void scheduleCallback(CustomElementLifecycleCallbacks*, Element*, CustomElementLifecycleCallbacks::CallbackType);
|
| - static void scheduleAttributeChangedCallback(CustomElementLifecycleCallbacks*, Element*, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue);
|
| + static void scheduleCallback(V0CustomElementLifecycleCallbacks*, Element*, V0CustomElementLifecycleCallbacks::CallbackType);
|
| + static void scheduleAttributeChangedCallback(V0CustomElementLifecycleCallbacks*, Element*, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue);
|
|
|
| - static void resolveOrScheduleResolution(CustomElementRegistrationContext*, Element*, const CustomElementDescriptor&);
|
| - static CustomElementMicrotaskImportStep* scheduleImport(HTMLImportChild*);
|
| + static void resolveOrScheduleResolution(V0CustomElementRegistrationContext*, Element*, const V0CustomElementDescriptor&);
|
| + static V0CustomElementMicrotaskImportStep* scheduleImport(HTMLImportChild*);
|
|
|
| static void microtaskDispatcherDidFinish();
|
| static void callbackDispatcherDidFinish();
|
|
|
| private:
|
| - CustomElementScheduler() { }
|
| + V0CustomElementScheduler() { }
|
|
|
| - static void enqueueMicrotaskStep(Document&, CustomElementMicrotaskStep*, bool importIsSync = true);
|
| + static void enqueueMicrotaskStep(Document&, V0CustomElementMicrotaskStep*, bool importIsSync = true);
|
| };
|
|
|
| } // namespace blink
|
|
|
| -#endif // CustomElementScheduler_h
|
| +#endif // V0CustomElementScheduler_h
|
|
|