diff options
author | munjal@chromium.org <munjal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-05 23:20:29 +0000 |
---|---|---|
committer | munjal@chromium.org <munjal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-05 23:20:29 +0000 |
commit | bb95ef9e93adfba1f5ab46de4ae9d523f12ca31c (patch) | |
tree | 5916529ffa051b8b17bb007710ea23b0ab1b80fb /chrome/browser/profile.cc | |
parent | 80dc5f272b75cddfbb43dc78653cd8ec6a858c54 (diff) | |
download | chromium_src-bb95ef9e93adfba1f5ab46de4ae9d523f12ca31c.zip chromium_src-bb95ef9e93adfba1f5ab46de4ae9d523f12ca31c.tar.gz chromium_src-bb95ef9e93adfba1f5ab46de4ae9d523f12ca31c.tar.bz2 |
Add a command-line disable-p13n and use that to disable
p13n related features.
Review URL: http://codereview.chromium.org/39029
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11050 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/profile.cc')
-rw-r--r-- | chrome/browser/profile.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/chrome/browser/profile.cc b/chrome/browser/profile.cc index 3edd32d..9289c2a 100644 --- a/chrome/browser/profile.cc +++ b/chrome/browser/profile.cc @@ -862,6 +862,7 @@ void ProfileImpl::StopCreateSessionServiceTimer() { #ifdef CHROME_PERSONALIZATION ProfilePersonalization* ProfileImpl::GetProfilePersonalization() { + DCHECK(!Personalization::IsP13NDisabled()); if (!personalization_.get()) personalization_.reset( Personalization::CreateProfilePersonalization(this)); |