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

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

Issue 156703006: Cleanup: Remove unneeded browser_thread.h includes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 10 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) 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 "chrome/browser/sync/sync_prefs.h" 5 #include "chrome/browser/sync/sync_prefs.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/prefs/pref_member.h" 9 #include "base/prefs/pref_member.h"
10 #include "base/prefs/pref_service.h" 10 #include "base/prefs/pref_service.h"
11 #include "base/strings/string_number_conversions.h" 11 #include "base/strings/string_number_conversions.h"
12 #include "base/values.h" 12 #include "base/values.h"
13 #include "build/build_config.h" 13 #include "build/build_config.h"
14 #include "chrome/browser/chrome_notification_types.h" 14 #include "chrome/browser/chrome_notification_types.h"
15 #include "chrome/browser/profiles/profile_io_data.h" 15 #include "chrome/browser/profiles/profile_io_data.h"
16 #include "chrome/browser/sync/profile_sync_service.h" 16 #include "chrome/browser/sync/profile_sync_service.h"
17 #include "chrome/common/chrome_switches.h" 17 #include "chrome/common/chrome_switches.h"
18 #include "chrome/common/pref_names.h" 18 #include "chrome/common/pref_names.h"
19 #include "components/user_prefs/pref_registry_syncable.h" 19 #include "components/user_prefs/pref_registry_syncable.h"
20 #include "content/public/browser/browser_thread.h"
21 #include "content/public/browser/notification_details.h" 20 #include "content/public/browser/notification_details.h"
22 #include "content/public/browser/notification_source.h" 21 #include "content/public/browser/notification_source.h"
23 22
24 namespace browser_sync { 23 namespace browser_sync {
25 24
26 SyncPrefObserver::~SyncPrefObserver() {} 25 SyncPrefObserver::~SyncPrefObserver() {}
27 26
28 SyncPrefs::SyncPrefs(PrefService* pref_service) 27 SyncPrefs::SyncPrefs(PrefService* pref_service)
29 : pref_service_(pref_service) { 28 : pref_service_(pref_service) {
30 DCHECK(pref_service); 29 DCHECK(pref_service);
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after
479 for (PrefGroupsMap::const_iterator i = pref_groups_.begin(); 478 for (PrefGroupsMap::const_iterator i = pref_groups_.begin();
480 i != pref_groups_.end(); ++i) { 479 i != pref_groups_.end(); ++i) {
481 if (types.Has(i->first)) 480 if (types.Has(i->first))
482 types_with_groups.PutAll(i->second); 481 types_with_groups.PutAll(i->second);
483 } 482 }
484 types_with_groups.RetainAll(registered_types); 483 types_with_groups.RetainAll(registered_types);
485 return types_with_groups; 484 return types_with_groups;
486 } 485 }
487 486
488 } // namespace browser_sync 487 } // namespace browser_sync
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698