| Index: chrome/browser/prefs/value_map_pref_store.cc
|
| ===================================================================
|
| --- chrome/browser/prefs/value_map_pref_store.cc (revision 118876)
|
| +++ chrome/browser/prefs/value_map_pref_store.cc (working copy)
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| @@ -26,6 +26,10 @@
|
| observers_.RemoveObserver(observer);
|
| }
|
|
|
| +size_t ValueMapPrefStore::NumberOfObservers() const {
|
| + return observers_.size();
|
| +}
|
| +
|
| void ValueMapPrefStore::SetValue(const std::string& key, Value* value) {
|
| if (prefs_.SetValue(key, value))
|
| FOR_EACH_OBSERVER(Observer, observers_, OnPrefValueChanged(key));
|
|
|
| Property changes on: chrome/browser/prefs/value_map_pref_store.cc
|
| ___________________________________________________________________
|
| Added: svn:eol-style
|
| + LF
|
|
|
|
|