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

Unified Diff: Source/WebCore/html/HTMLDataListElement.cpp

Issue 14301003: Rename FeatureObserver to UseCounter to make clear that all it stores are usage counts. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Now with 20% more awesome 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
Index: Source/WebCore/html/HTMLDataListElement.cpp
diff --git a/Source/WebCore/html/HTMLDataListElement.cpp b/Source/WebCore/html/HTMLDataListElement.cpp
index 7c99b9f6526ee0649c8d02555f93c443c4e550de..5bc8a18b3b5a392cc1e4f5a16177498343fd7f99 100644
--- a/Source/WebCore/html/HTMLDataListElement.cpp
+++ b/Source/WebCore/html/HTMLDataListElement.cpp
@@ -33,7 +33,7 @@
#if ENABLE(DATALIST_ELEMENT)
#include "HTMLDataListElement.h"
-#include "FeatureObserver.h"
+#include "UseCounter.h"
#include "HTMLNames.h"
#include "IdTargetObserverRegistry.h"
@@ -47,7 +47,7 @@ inline HTMLDataListElement::HTMLDataListElement(const QualifiedName& tagName, Do
PassRefPtr<HTMLDataListElement> HTMLDataListElement::create(const QualifiedName& tagName, Document* document)
{
- FeatureObserver::observe(document, FeatureObserver::DataListElement);
+ UseCounter::observe(document, UseCounter::DataListElement);
return adoptRef(new HTMLDataListElement(tagName, document));
}

Powered by Google App Engine
This is Rietveld 408576698