| 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 "base/prefs/pref_change_registrar.h" | 5 #include "base/prefs/pref_change_registrar.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "base/prefs/pref_service.h" | 9 #include "base/prefs/pref_service.h" |
| 10 | 10 |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 callback.Run(); | 85 callback.Run(); |
| 86 } | 86 } |
| 87 | 87 |
| 88 PrefService* PrefChangeRegistrar::prefs() { | 88 PrefService* PrefChangeRegistrar::prefs() { |
| 89 return service_; | 89 return service_; |
| 90 } | 90 } |
| 91 | 91 |
| 92 const PrefService* PrefChangeRegistrar::prefs() const { | 92 const PrefService* PrefChangeRegistrar::prefs() const { |
| 93 return service_; | 93 return service_; |
| 94 } | 94 } |
| OLD | NEW |