| 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/public/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 |
| 11 PrefChangeRegistrar::PrefChangeRegistrar() : service_(NULL) {} | 11 PrefChangeRegistrar::PrefChangeRegistrar() : service_(NULL) {} |
| 12 | 12 |
| 13 PrefChangeRegistrar::~PrefChangeRegistrar() { | 13 PrefChangeRegistrar::~PrefChangeRegistrar() { |
| 14 // If you see an invalid memory access in this destructor, this | 14 // If you see an invalid memory access in this destructor, this |
| 15 // PrefChangeRegistrar might be subscribed to an OffTheRecordProfileImpl that | 15 // PrefChangeRegistrar might be subscribed to an OffTheRecordProfileImpl that |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 } | 82 } |
| 83 | 83 |
| 84 void PrefChangeRegistrar::InvokeUnnamedCallback(const base::Closure& callback, | 84 void PrefChangeRegistrar::InvokeUnnamedCallback(const base::Closure& callback, |
| 85 const std::string& pref_name) { | 85 const std::string& pref_name) { |
| 86 callback.Run(); | 86 callback.Run(); |
| 87 } | 87 } |
| 88 | 88 |
| 89 PrefService* PrefChangeRegistrar::prefs() { | 89 PrefService* PrefChangeRegistrar::prefs() { |
| 90 return service_; | 90 return service_; |
| 91 } | 91 } |
| OLD | NEW |