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

Unified Diff: Source/core/dom/EventTarget.cpp

Issue 14070021: Rename 'UseCounter::observe' to 'UseCounter::count'. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebaseline. Created 7 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
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/html/HTMLDataListElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/EventTarget.cpp
diff --git a/Source/core/dom/EventTarget.cpp b/Source/core/dom/EventTarget.cpp
index c8c2d40299daecf876276a48d2d168c69799a6ee..8190effd275771b5631701407e1d8f5dfcc34181 100644
--- a/Source/core/dom/EventTarget.cpp
+++ b/Source/core/dom/EventTarget.cpp
@@ -212,11 +212,11 @@ bool EventTarget::fireEventListeners(Event* event)
if (document->domWindow()) {
if (listenerPrefixedVector)
if (listenerUnprefixedVector)
- UseCounter::observe(document->domWindow(), UseCounter::PrefixedAndUnprefixedTransitionEndEvent);
+ UseCounter::count(document->domWindow(), UseCounter::PrefixedAndUnprefixedTransitionEndEvent);
else
- UseCounter::observe(document->domWindow(), UseCounter::PrefixedTransitionEndEvent);
+ UseCounter::count(document->domWindow(), UseCounter::PrefixedTransitionEndEvent);
else if (listenerUnprefixedVector)
- UseCounter::observe(document->domWindow(), UseCounter::UnprefixedTransitionEndEvent);
+ UseCounter::count(document->domWindow(), UseCounter::UnprefixedTransitionEndEvent);
}
}
}
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/html/HTMLDataListElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698