Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(32)

Side by Side Diff: Source/core/dom/custom/CustomElementRegistrationContext.h

Issue 106903007: Let unresolved custom element go through CustomElementCallbackQueue. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 53
54 ~CustomElementRegistrationContext() { } 54 ~CustomElementRegistrationContext() { }
55 55
56 // Definitions 56 // Definitions
57 void registerElement(Document*, CustomElementConstructorBuilder*, const Atom icString& type, CustomElement::NameSet validNames, ExceptionState&); 57 void registerElement(Document*, CustomElementConstructorBuilder*, const Atom icString& type, CustomElement::NameSet validNames, ExceptionState&);
58 58
59 PassRefPtr<Element> createCustomTagElement(Document&, const QualifiedName&); 59 PassRefPtr<Element> createCustomTagElement(Document&, const QualifiedName&);
60 static void setIsAttributeAndTypeExtension(Element*, const AtomicString& typ e); 60 static void setIsAttributeAndTypeExtension(Element*, const AtomicString& typ e);
61 static void setTypeExtension(Element*, const AtomicString& type); 61 static void setTypeExtension(Element*, const AtomicString& type);
62 62
63 // Late resolution attempt from invocation object.
64 void resolvePoppedElement(Element*, const CustomElementDescriptor&);
65
63 protected: 66 protected:
64 CustomElementRegistrationContext() { } 67 CustomElementRegistrationContext() { }
65 68
66 // Instance creation 69 // Instance creation
67 void didGiveTypeExtension(Element*, const AtomicString& type); 70 void didGiveTypeExtension(Element*, const AtomicString& type);
68 71
69 private: 72 private:
70 void resolve(Element*, const AtomicString& typeExtension); 73 void resolveNewElement(Element*, const AtomicString& typeExtension);
71 void didResolveElement(CustomElementDefinition*, Element*); 74 void didResolveElement(CustomElementDefinition*, Element*);
72 void didCreateUnresolvedElement(const CustomElementDescriptor&, Element*); 75 void didCreateUnresolvedElement(const CustomElementDescriptor&, Element*);
76 void didFailResolution(const CustomElementDescriptor&, Element*);
73 77
74 CustomElementRegistry m_registry; 78 CustomElementRegistry m_registry;
75 79
76 // Element creation 80 // Element creation
77 CustomElementUpgradeCandidateMap m_candidates; 81 CustomElementUpgradeCandidateMap m_candidates;
78 }; 82 };
79 83
80 } 84 }
81 85
82 #endif // CustomElementRegistrationContext_h 86 #endif // CustomElementRegistrationContext_h
83 87
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698