| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/browser/prefs/incognito_user_pref_store.h" | |
| 6 #include "chrome/common/pref_names.h" | |
| 7 | |
| 8 IncognitoUserPrefStore::IncognitoUserPrefStore(PersistentPrefStore* underlay) | |
| 9 : OverlayUserPrefStore(underlay) { | |
| 10 // List of keys that cannot be changed in the user prefs file by the incognito | |
| 11 // profile. All preferences that store information about the browsing history | |
| 12 // or behavior of the user should have this property. | |
| 13 RegisterOverlayProperty(prefs::kBrowserWindowPlacement); | |
| 14 } | |
| OLD | NEW |