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

Unified Diff: third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp

Issue 2277713002: Rename CustomElementsRegistry to CustomElementRegistry (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 4 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
Index: third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp
diff --git a/third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp b/third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp
index c3ec30627a9a655e5b2d209797afe226849fa308..39cd651a3ef4a1919d2c72c2028031269cbfa32c 100644
--- a/third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp
+++ b/third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp
@@ -39,7 +39,7 @@
#include "core/dom/ExecutionContextTask.h"
#include "core/dom/FrameRequestCallback.h"
#include "core/dom/SandboxFlags.h"
-#include "core/dom/custom/CustomElementsRegistry.h"
+#include "core/dom/custom/CustomElementRegistry.h"
#include "core/editing/Editor.h"
#include "core/events/DOMWindowEventQueue.h"
#include "core/events/HashChangeEvent.h"
@@ -1318,21 +1318,21 @@ void LocalDOMWindow::cancelIdleCallback(int id)
document->cancelIdleCallback(id);
}
-CustomElementsRegistry* LocalDOMWindow::customElements(ScriptState* scriptState) const
+CustomElementRegistry* LocalDOMWindow::customElements(ScriptState* scriptState) const
{
if (!scriptState->world().isMainWorld())
return nullptr;
return customElements();
}
-CustomElementsRegistry* LocalDOMWindow::customElements() const
+CustomElementRegistry* LocalDOMWindow::customElements() const
{
if (!m_customElements && m_document)
- m_customElements = CustomElementsRegistry::create(this);
+ m_customElements = CustomElementRegistry::create(this);
return m_customElements;
}
-CustomElementsRegistry* LocalDOMWindow::maybeCustomElements() const
+CustomElementRegistry* LocalDOMWindow::maybeCustomElements() const
{
return m_customElements;
}
« no previous file with comments | « third_party/WebKit/Source/core/frame/LocalDOMWindow.h ('k') | third_party/WebKit/Source/core/frame/RemoteDOMWindow.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698