Commit fa94b2e0 authored by miu@chromium.org's avatar miu@chromium.org

Fix build error which occurs due to an incorrectly referenced member variable...

Fix build error which occurs due to an incorrectly referenced member variable in the MetricsStateManager class.

BUG=368413
R=asvitkine@chromium.org, miu@chromium.org, miu

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268296 0039d316-1c4b-4281-b951-d872f2087c98
parent cbd620bd
......@@ -82,7 +82,7 @@ bool MetricsStateManager::IsMetricsReportingEnabled() {
chromeos::CrosSettings::Get()->GetBoolean(chromeos::kStatsReportingPref,
&enabled);
#else
enabled = local_state->GetBoolean(prefs::kMetricsReportingEnabled);
enabled = local_state_->GetBoolean(prefs::kMetricsReportingEnabled);
#endif // #if defined(OS_CHROMEOS)
#endif // defined(GOOGLE_CHROME_BUILD)
return enabled;
......
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