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

Unified Diff: third_party/WebKit/Source/core/dom/custom/CustomElementRegistry.h

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/dom/custom/CustomElementRegistry.h
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementsRegistry.h b/third_party/WebKit/Source/core/dom/custom/CustomElementRegistry.h
similarity index 85%
rename from third_party/WebKit/Source/core/dom/custom/CustomElementsRegistry.h
rename to third_party/WebKit/Source/core/dom/custom/CustomElementRegistry.h
index ecb207450cf916b18a21ff3d43def17807226747..338600944ff3b2f60806c750a00f21392d367ed8 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementsRegistry.h
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElementRegistry.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CustomElementsRegistry_h
-#define CustomElementsRegistry_h
+#ifndef CustomElementRegistry_h
+#define CustomElementRegistry_h
#include "base/gtest_prod_util.h"
#include "bindings/core/v8/ScriptPromise.h"
@@ -29,15 +29,15 @@ class ScriptState;
class ScriptValue;
class V0CustomElementRegistrationContext;
-class CORE_EXPORT CustomElementsRegistry final
- : public GarbageCollectedFinalized<CustomElementsRegistry>
+class CORE_EXPORT CustomElementRegistry final
+ : public GarbageCollectedFinalized<CustomElementRegistry>
, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
- WTF_MAKE_NONCOPYABLE(CustomElementsRegistry);
+ WTF_MAKE_NONCOPYABLE(CustomElementRegistry);
public:
- static CustomElementsRegistry* create(const LocalDOMWindow*);
+ static CustomElementRegistry* create(const LocalDOMWindow*);
- virtual ~CustomElementsRegistry() = default;
+ virtual ~CustomElementRegistry() = default;
void define(
ScriptState*,
@@ -73,9 +73,9 @@ public:
DECLARE_TRACE();
private:
- friend class CustomElementsRegistryTest;
+ friend class CustomElementRegistryTest;
- CustomElementsRegistry(const LocalDOMWindow*);
+ CustomElementRegistry(const LocalDOMWindow*);
bool v0NameIsDefined(const AtomicString& name);
@@ -108,4 +108,4 @@ private:
} // namespace blink
-#endif // CustomElementsRegistry_h
+#endif // CustomElementRegistry_h

Powered by Google App Engine
This is Rietveld 408576698