OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/glue/preference_change_processor.h" | 5 #include "chrome/browser/sync/glue/preference_change_processor.h" |
6 | 6 |
7 #include <set> | 7 #include <set> |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/auto_reset.h" | 10 #include "base/auto_reset.h" |
11 #include "base/json/json_reader.h" | 11 #include "base/json/json_reader.h" |
12 #include "base/utf_string_conversions.h" | 12 #include "base/utf_string_conversions.h" |
13 #include "chrome/browser/browser_thread.h" | 13 #include "chrome/browser/browser_thread.h" |
14 #include "chrome/browser/profiles/profile.h" | 14 #include "chrome/browser/profiles/profile.h" |
15 #include "chrome/browser/sync/glue/preference_model_associator.h" | 15 #include "chrome/browser/sync/glue/preference_model_associator.h" |
16 #include "chrome/browser/sync/profile_sync_service.h" | 16 #include "chrome/browser/sync/profile_sync_service.h" |
17 #include "chrome/browser/sync/protocol/preference_specifics.pb.h" | 17 #include "chrome/browser/sync/protocol/preference_specifics.pb.h" |
18 #include "chrome/common/json_value_serializer.h" | 18 #include "chrome/common/json_value_serializer.h" |
19 #include "chrome/common/notification_service.h" | 19 #include "chrome/common/notification_details.h" |
| 20 #include "chrome/common/notification_source.h" |
20 #include "chrome/common/pref_names.h" | 21 #include "chrome/common/pref_names.h" |
21 | 22 |
22 namespace browser_sync { | 23 namespace browser_sync { |
23 | 24 |
24 PreferenceChangeProcessor::PreferenceChangeProcessor( | 25 PreferenceChangeProcessor::PreferenceChangeProcessor( |
25 PreferenceModelAssociator* model_associator, | 26 PreferenceModelAssociator* model_associator, |
26 UnrecoverableErrorHandler* error_handler) | 27 UnrecoverableErrorHandler* error_handler) |
27 : ChangeProcessor(error_handler), | 28 : ChangeProcessor(error_handler), |
28 pref_service_(NULL), | 29 pref_service_(NULL), |
29 model_associator_(model_associator), | 30 model_associator_(model_associator), |
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 void PreferenceChangeProcessor::StopObserving() { | 219 void PreferenceChangeProcessor::StopObserving() { |
219 DCHECK(pref_service_); | 220 DCHECK(pref_service_); |
220 for (std::set<std::string>::const_iterator it = | 221 for (std::set<std::string>::const_iterator it = |
221 model_associator_->synced_preferences().begin(); | 222 model_associator_->synced_preferences().begin(); |
222 it != model_associator_->synced_preferences().end(); ++it) { | 223 it != model_associator_->synced_preferences().end(); ++it) { |
223 registrar_.Remove((*it).c_str(), this); | 224 registrar_.Remove((*it).c_str(), this); |
224 } | 225 } |
225 } | 226 } |
226 | 227 |
227 } // namespace browser_sync | 228 } // namespace browser_sync |
OLD | NEW |