| Index: third_party/WebKit/Source/core/frame/UseCounter.h
|
| diff --git a/third_party/WebKit/Source/core/frame/UseCounter.h b/third_party/WebKit/Source/core/frame/UseCounter.h
|
| index f82dbc96e2856370e2ce2c811680247d76e45ef2..a1f7914a62839a6b908e1c5e99c28b6d2e0ecc0f 100644
|
| --- a/third_party/WebKit/Source/core/frame/UseCounter.h
|
| +++ b/third_party/WebKit/Source/core/frame/UseCounter.h
|
| @@ -1341,8 +1341,8 @@ class CORE_EXPORT UseCounter {
|
|
|
| // Add new features immediately above this line. Don't change assigned
|
| // numbers of any item, and don't reuse removed slots.
|
| - // Also, run update_use_counter_feature_enum.py in chromium/src/tools/metrics/histograms/
|
| - // to update the UMA mapping.
|
| + // Also, run update_use_counter_feature_enum.py in
|
| + // chromium/src/tools/metrics/histograms/ to update the UMA mapping.
|
| NumberOfFeatures, // This enum value must be last.
|
| };
|
|
|
| @@ -1399,11 +1399,13 @@ class CORE_EXPORT UseCounter {
|
| unsigned m_muteCount;
|
| Context m_context;
|
|
|
| - // Track what features/properties have been reported to the (non-legacy) histograms.
|
| + // Track what features/properties have been reported to the (non-legacy)
|
| + // histograms.
|
| BitVector m_featuresRecorded;
|
| BitVector m_CSSRecorded;
|
|
|
| - // Encapsulates the work to preserve the old "FeatureObserver" histogram with original semantics
|
| + // Encapsulates the work to preserve the old "FeatureObserver" histogram with
|
| + // original semantics
|
| // TODO(rbyers): remove this - http://crbug.com/597963
|
| class CORE_EXPORT LegacyCounter {
|
| public:
|
| @@ -1414,7 +1416,8 @@ class CORE_EXPORT UseCounter {
|
| void updateMeasurements();
|
|
|
| private:
|
| - // Tracks what features/properties need to be reported to the legacy histograms.
|
| + // Tracks what features/properties need to be reported to the legacy
|
| + // histograms.
|
| BitVector m_featureBits;
|
| BitVector m_CSSBits;
|
| } m_legacyCounter;
|
|
|