Commit 0afe6315 authored by scottmg@chromium.org's avatar scottmg@chromium.org

Don't check OFFICIAL_BUILD for 'Chrome' decision in breakpad

Should just be GOOGLE_CHROME_BUILD, not related to optimization level.

R=cpu@chromium.org
BUG=383902

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@276920 0039d316-1c4b-4281-b951-d872f2087c98
parent dbe81cbd
......@@ -331,7 +331,7 @@ bool ChromeBreakpadClient::IsRunningUnattended() {
}
bool ChromeBreakpadClient::GetCollectStatsConsent() {
#if defined(GOOGLE_CHROME_BUILD) && defined(OFFICIAL_BUILD)
#if defined(GOOGLE_CHROME_BUILD)
bool is_official_chrome_build = true;
#else
bool is_official_chrome_build = false;
......
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