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

Unified Diff: Source/WebCore/page/Page.h

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/page/Page.h
diff --git a/Source/WebCore/page/Page.h b/Source/WebCore/page/Page.h
index fc1862e2d03ce0be239c2b7f19a7da25026ed520..9d3620165e7429f2fbffcb7db0958822ad3d1a8f 100644
--- a/Source/WebCore/page/Page.h
+++ b/Source/WebCore/page/Page.h
@@ -21,7 +21,7 @@
#ifndef Page_h
#define Page_h
-#include "FeatureObserver.h"
+#include "UseCounter.h"
#include "FindOptions.h"
#include "FrameLoaderTypes.h"
#include "LayoutMilestones.h"
@@ -191,7 +191,7 @@ public:
ProgressTracker* progress() const { return m_progress.get(); }
BackForwardController* backForward() const { return m_backForwardController.get(); }
- FeatureObserver* featureObserver() { return &m_featureObserver; }
+ UseCounter* useCounter() { return &m_UseCounter; }
enum ViewMode {
ViewModeInvalid,
@@ -378,7 +378,7 @@ private:
PlugInClient* m_plugInClient;
ValidationMessageClient* m_validationMessageClient;
- FeatureObserver m_featureObserver;
+ UseCounter m_UseCounter;
int m_subframeCount;
String m_groupName;

Powered by Google App Engine
This is Rietveld 408576698