Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(918)

Unified Diff: chrome/browser/prefs/overlay_user_pref_store_unittest.cc

Issue 9015012: Get rid of trivial IncognitoUserPrefStore and PerTabUserPrefStore. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moved overlay prefs registration code to prefs_tab_helper Created 8 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/prefs/overlay_user_pref_store_unittest.cc
diff --git a/chrome/browser/prefs/overlay_user_pref_store_unittest.cc b/chrome/browser/prefs/overlay_user_pref_store_unittest.cc
index f9e36a0d0080fa3e0a117b714c6cf935ac606793..4b312b5c2e374e17a26c6113aae6d581cc65fa71 100644
--- a/chrome/browser/prefs/overlay_user_pref_store_unittest.cc
+++ b/chrome/browser/prefs/overlay_user_pref_store_unittest.cc
@@ -27,8 +27,8 @@ class OverlayUserPrefStoreTest : public testing::Test {
OverlayUserPrefStoreTest()
: underlay_(new TestingPrefStore()),
overlay_(new OverlayUserPrefStore(underlay_.get())) {
- overlay_->RegisterOverlayProperty(overlay_key);
- overlay_->RegisterOverlayProperty(mapped_overlay_key, mapped_underlay_key);
+ overlay_->RegisterOverlayPref(overlay_key);
+ overlay_->RegisterOverlayPref(mapped_overlay_key, mapped_underlay_key);
}
virtual ~OverlayUserPrefStoreTest() {}

Powered by Google App Engine
This is Rietveld 408576698