Commit b2faf29e authored by nyquist's avatar nyquist Committed by Commit bot

Fix typo in histogram name.

The CL https://codereview.chromium.org/943823002/ introduced a new
histogram for whether web pages are assumed to be mobile friendly.

However, there was a typo in recording the histogram name.

This fixes the recording part to match the histogram.

BUG=462721

Review URL: https://codereview.chromium.org/965883002

Cr-Commit-Position: refs/heads/master@{#318532}
parent e97726dd
...@@ -1360,7 +1360,7 @@ public class Tab implements ViewGroup.OnHierarchyChangeListener, ...@@ -1360,7 +1360,7 @@ public class Tab implements ViewGroup.OnHierarchyChangeListener,
updateFullscreenEnabledState(); updateFullscreenEnabledState();
if (!isNativePage()) { if (!isNativePage()) {
RecordHistogram.recordBooleanHistogram( RecordHistogram.recordBooleanHistogram(
"Navigation.MobileOptimized", mContentViewCore.getIsMobileOptimizedHint()); "Navigation.IsMobileOptimized", mContentViewCore.getIsMobileOptimizedHint());
} }
for (TabObserver observer : mObservers) observer.onPageLoadFinished(this); for (TabObserver observer : mObservers) observer.onPageLoadFinished(this);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment