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

Unified Diff: third_party/WebKit/Source/core/dom/CharacterData.cpp

Issue 2835223003: Use kCamelCase in Document::ListenerType enum (Closed)
Patch Set: renamed Created 3 years, 8 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/CharacterData.cpp
diff --git a/third_party/WebKit/Source/core/dom/CharacterData.cpp b/third_party/WebKit/Source/core/dom/CharacterData.cpp
index 1d832392fea9d7b816adf84757dcdfacd7a2dc74..13c7c5d01feea5d566a335f85f2878cfee79542a 100644
--- a/third_party/WebKit/Source/core/dom/CharacterData.cpp
+++ b/third_party/WebKit/Source/core/dom/CharacterData.cpp
@@ -213,7 +213,7 @@ void CharacterData::DidModifyData(const String& old_data, UpdateSource source) {
// Spec: https://html.spec.whatwg.org/multipage/syntax.html#insert-a-character
if (source != kUpdateFromParser && !IsInShadowTree()) {
if (GetDocument().HasListenerType(
- Document::DOMCHARACTERDATAMODIFIED_LISTENER))
+ Document::kDOMCharacterDataModifiedListener))
DispatchScopedEvent(
MutationEvent::Create(EventTypeNames::DOMCharacterDataModified, true,
nullptr, old_data, data_));
« no previous file with comments | « third_party/WebKit/Source/core/animation/css/CSSAnimations.cpp ('k') | third_party/WebKit/Source/core/dom/ContainerNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698