Index: third_party/WebKit/Source/core/frame/UseCounter.cpp |
diff --git a/third_party/WebKit/Source/core/frame/UseCounter.cpp b/third_party/WebKit/Source/core/frame/UseCounter.cpp |
index e8526fef78236ac52f0b6bda569dfcb4aabd7818..32e75943cb0424503f67725feea9b62013735250 100644 |
--- a/third_party/WebKit/Source/core/frame/UseCounter.cpp |
+++ b/third_party/WebKit/Source/core/frame/UseCounter.cpp |
@@ -1265,23 +1265,22 @@ EnumerationHistogram& UseCounter::featuresHistogram() const { |
// that's tricky (SVGImage is intentionally isolated, and the Page that |
// created it may not even exist anymore). |
// So instead we just use a dedicated histogram for the SVG case. |
- DEFINE_STATIC_LOCAL(blink::EnumerationHistogram, histogram, |
- ("WebCore.UseCounter_TEST.Features", |
- blink::UseCounter::NumberOfFeatures)); |
+ DEFINE_STATIC_LOCAL( |
+ blink::EnumerationHistogram, histogram, |
+ ("Blink.UseCounter.Features", blink::UseCounter::NumberOfFeatures)); |
DEFINE_STATIC_LOCAL(blink::EnumerationHistogram, svgHistogram, |
- ("WebCore.UseCounter_TEST.SVGImage.Features", |
+ ("Blink.UseCounter.SVGImage.Features", |
blink::UseCounter::NumberOfFeatures)); |
return m_context == SVGImageContext ? svgHistogram : histogram; |
} |
EnumerationHistogram& UseCounter::cssHistogram() const { |
- DEFINE_STATIC_LOCAL( |
- blink::EnumerationHistogram, histogram, |
- ("WebCore.UseCounter_TEST.CSSProperties", kMaximumCSSSampleId)); |
+ DEFINE_STATIC_LOCAL(blink::EnumerationHistogram, histogram, |
+ ("Blink.UseCounter.CSSProperties", kMaximumCSSSampleId)); |
DEFINE_STATIC_LOCAL( |
blink::EnumerationHistogram, svgHistogram, |
- ("WebCore.UseCounter_TEST.SVGImage.CSSProperties", kMaximumCSSSampleId)); |
+ ("Blink.UseCounter.SVGImage.CSSProperties", kMaximumCSSSampleId)); |
return m_context == SVGImageContext ? svgHistogram : histogram; |
} |