| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/sync_driver/sync_prefs.h" | 5 #include "components/sync_driver/sync_prefs.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/message_loop/message_loop.h" | 8 #include "base/message_loop/message_loop.h" |
| 9 #include "base/prefs/pref_notifier_impl.h" | 9 #include "base/prefs/pref_notifier_impl.h" |
| 10 #include "base/prefs/pref_value_store.h" | 10 #include "base/prefs/pref_value_store.h" |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 | 227 |
| 228 sync_prefs.ClearPreferences(); | 228 sync_prefs.ClearPreferences(); |
| 229 | 229 |
| 230 EXPECT_FALSE(sync_prefs.HasSyncSetupCompleted()); | 230 EXPECT_FALSE(sync_prefs.HasSyncSetupCompleted()); |
| 231 EXPECT_EQ(base::Time(), sync_prefs.GetLastSyncedTime()); | 231 EXPECT_EQ(base::Time(), sync_prefs.GetLastSyncedTime()); |
| 232 EXPECT_TRUE(sync_prefs.GetEncryptionBootstrapToken().empty()); | 232 EXPECT_TRUE(sync_prefs.GetEncryptionBootstrapToken().empty()); |
| 233 } | 233 } |
| 234 | 234 |
| 235 } // namespace | 235 } // namespace |
| 236 | 236 |
| 237 } // namespace browser_sync | 237 } // namespace sync_driver |
| OLD | NEW |