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

Side by Side Diff: chrome/browser/sync/profile_sync_service_preference_unittest.cc

Issue 7342047: Cleanup base/stl_util (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removed unneeded include + rebase Created 9 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 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 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 <map> 5 #include <map>
6 #include <string> 6 #include <string>
7 7
8 #include "base/json/json_reader.h" 8 #include "base/json/json_reader.h"
9 #include "base/stl_util-inl.h" 9 #include "base/stl_util.h"
10 #include "base/string_piece.h" 10 #include "base/string_piece.h"
11 #include "base/task.h" 11 #include "base/task.h"
12 #include "base/tracked.h" 12 #include "base/tracked.h"
13 #include "chrome/browser/prefs/pref_model_associator.h" 13 #include "chrome/browser/prefs/pref_model_associator.h"
14 #include "chrome/browser/prefs/scoped_user_pref_update.h" 14 #include "chrome/browser/prefs/scoped_user_pref_update.h"
15 #include "chrome/browser/sync/abstract_profile_sync_service_test.h" 15 #include "chrome/browser/sync/abstract_profile_sync_service_test.h"
16 #include "chrome/browser/sync/api/sync_data.h" 16 #include "chrome/browser/sync/api/sync_data.h"
17 #include "chrome/browser/sync/engine/syncapi.h" 17 #include "chrome/browser/sync/engine/syncapi.h"
18 #include "chrome/browser/sync/glue/generic_change_processor.h" 18 #include "chrome/browser/sync/glue/generic_change_processor.h"
19 #include "chrome/browser/sync/glue/preference_data_type_controller.h" 19 #include "chrome/browser/sync/glue/preference_data_type_controller.h"
(...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after
531 531
532 // The pref value should still be the one dictated by policy. 532 // The pref value should still be the one dictated by policy.
533 EXPECT_TRUE(managed_value->Equals(&GetPreferenceValue(prefs::kHomePage))); 533 EXPECT_TRUE(managed_value->Equals(&GetPreferenceValue(prefs::kHomePage)));
534 534
535 // Switch kHomePage back to unmanaged. 535 // Switch kHomePage back to unmanaged.
536 profile_->GetTestingPrefService()->RemoveManagedPref(prefs::kHomePage); 536 profile_->GetTestingPrefService()->RemoveManagedPref(prefs::kHomePage);
537 537
538 // Sync value should be picked up. 538 // Sync value should be picked up.
539 EXPECT_TRUE(sync_value->Equals(&GetPreferenceValue(prefs::kHomePage))); 539 EXPECT_TRUE(sync_value->Equals(&GetPreferenceValue(prefs::kHomePage)));
540 } 540 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698