diff options
author | zork@chromium.org <zork@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-12 05:41:39 +0000 |
---|---|---|
committer | zork@chromium.org <zork@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-12 05:41:39 +0000 |
commit | ac579882736d975f12036fa718f4080aa41e5e14 (patch) | |
tree | 36900f1103b8a1a594cfef82f19820293ec5cc7d /base | |
parent | a6413746c7dc93abcac5573dad08aa6a07826e6e (diff) | |
download | chromium_src-ac579882736d975f12036fa718f4080aa41e5e14.zip chromium_src-ac579882736d975f12036fa718f4080aa41e5e14.tar.gz chromium_src-ac579882736d975f12036fa718f4080aa41e5e14.tar.bz2 |
Revert 44234 - Add notifications to allow desktop notification permissions to be synced.
Fix a bug where sites can be added to allow and deny lists multiple times.
BUG=none
TEST=Open two browsers with separate profiles. Request permission for notifications on a site on one. Check that the permissions are the same on the other browser.
Review URL: http://codereview.chromium.org/1578023
TBR=zork@chromium.org
Review URL: http://codereview.chromium.org/1607012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@44235 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/values.cc | 10 | ||||
-rw-r--r-- | base/values.h | 4 |
2 files changed, 0 insertions, 14 deletions
diff --git a/base/values.cc b/base/values.cc index feff299..f214ead 100644 --- a/base/values.cc +++ b/base/values.cc @@ -832,16 +832,6 @@ void ListValue::Append(Value* in_value) { list_.push_back(in_value); } -bool ListValue::AppendIfNotPresent(Value* in_value) { - DCHECK(in_value); - for (ValueVector::iterator i(list_.begin()); i != list_.end(); ++i) { - if ((*i)->Equals(in_value)) - return false; - } - list_.push_back(in_value); - return true; -} - bool ListValue::Insert(size_t index, Value* in_value) { DCHECK(in_value); if (index > list_.size()) diff --git a/base/values.h b/base/values.h index 248fc1d..6c66345 100644 --- a/base/values.h +++ b/base/values.h @@ -401,10 +401,6 @@ class ListValue : public Value { // Appends a Value to the end of the list. void Append(Value* in_value); - // Appends a Value if it's not already present. - // Returns true if successful, or false if the value was already present. - bool AppendIfNotPresent(Value* in_value); - // Insert a Value at index. // Returns true if successful, or false if the index was out of range. bool Insert(size_t index, Value* in_value); |