Commit 1da61cf5 authored by anandc@chromium.org's avatar anandc@chromium.org

Add an #else to #ifdef OFFICIAL_BUILD


BUG=383430

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@276583 0039d316-1c4b-4281-b951-d872f2087c98
parent 9efed282
...@@ -147,11 +147,12 @@ class PrefHashBrowserTest : public InProcessBrowserTest, ...@@ -147,11 +147,12 @@ class PrefHashBrowserTest : public InProcessBrowserTest,
// chrome_pref_service_factory.cc allows unloaded profile seeding on this // chrome_pref_service_factory.cc allows unloaded profile seeding on this
// platform. // platform.
return true; return true;
#endif // defined(OFFICIAL_BUILD) #else
return GetParam() == chrome_prefs::internals:: return GetParam() == chrome_prefs::internals::
kSettingsEnforcementGroupNoEnforcement || kSettingsEnforcementGroupNoEnforcement ||
GetParam() == chrome_prefs::internals:: GetParam() == chrome_prefs::internals::
kSettingsEnforcementGroupEnforceOnload; kSettingsEnforcementGroupEnforceOnload;
#endif // defined(OFFICIAL_BUILD)
} }
}; };
......
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