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

Unified Diff: sky/engine/core/dom/DocumentInit.h

Issue 946083003: Rename Sky's custom2 to custom (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/engine/core/dom/Document.cpp ('k') | sky/engine/core/dom/DocumentInit.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/dom/DocumentInit.h
diff --git a/sky/engine/core/dom/DocumentInit.h b/sky/engine/core/dom/DocumentInit.h
index 6518f77e8a5a1d6ba575f3f7a2515f82d3b6add4..15d7af1967391998c353e211b217f8bee903116a 100644
--- a/sky/engine/core/dom/DocumentInit.h
+++ b/sky/engine/core/dom/DocumentInit.h
@@ -39,7 +39,7 @@ namespace blink {
class Document;
class HTMLImportsController;
class LocalFrame;
-class NewCustomElementRegistry;
+class CustomElementRegistry;
class Settings;
class DocumentInit final {
@@ -61,10 +61,10 @@ public:
LocalFrame* ownerFrame() const;
Settings* settings() const;
- DocumentInit& withElementRegistry(NewCustomElementRegistry&);
+ DocumentInit& withElementRegistry(CustomElementRegistry&);
WeakPtr<Document> contextDocument() const;
- NewCustomElementRegistry* elementRegistry() const {
+ CustomElementRegistry* elementRegistry() const {
return m_elementRegistry.get();
}
@@ -79,7 +79,7 @@ private:
RefPtr<Document> m_owner;
WeakPtr<Document> m_contextDocument;
RawPtr<HTMLImportsController> m_importsController;
- RefPtr<NewCustomElementRegistry> m_elementRegistry;
+ RefPtr<CustomElementRegistry> m_elementRegistry;
};
} // namespace blink
« no previous file with comments | « sky/engine/core/dom/Document.cpp ('k') | sky/engine/core/dom/DocumentInit.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698