diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-25 17:15:15 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-25 17:15:15 +0000 |
commit | 39f8389fea86381271c2966ca17f947ec4e8dcb6 (patch) | |
tree | 7dec7884e83f6b589f9923e8109e26aabe0b4abe /chrome/browser/prefs/pref_notifier_impl_unittest.cc | |
parent | dda229fda6e0171d2d40b4f73160e5263589f3cd (diff) | |
download | chromium_src-39f8389fea86381271c2966ca17f947ec4e8dcb6.zip chromium_src-39f8389fea86381271c2966ca17f947ec4e8dcb6.tar.gz chromium_src-39f8389fea86381271c2966ca17f947ec4e8dcb6.tar.bz2 |
Delete a few unused functions.
BUG=none
TEST=Compiles.
Review URL: http://codereview.chromium.org/6880164
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@82884 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/prefs/pref_notifier_impl_unittest.cc')
-rw-r--r-- | chrome/browser/prefs/pref_notifier_impl_unittest.cc | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/chrome/browser/prefs/pref_notifier_impl_unittest.cc b/chrome/browser/prefs/pref_notifier_impl_unittest.cc index c601c33..aaea66f 100644 --- a/chrome/browser/prefs/pref_notifier_impl_unittest.cc +++ b/chrome/browser/prefs/pref_notifier_impl_unittest.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 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. @@ -24,11 +24,6 @@ namespace { const char kChangedPref[] = "changed_pref"; const char kUnchangedPref[] = "unchanged_pref"; -bool DetailsAreChangedPref(const Details<std::string>& details) { - std::string* string_in = Details<std::string>(details).ptr(); - return strcmp(string_in->c_str(), kChangedPref) == 0; -} - // Test PrefNotifier that allows tracking of observers and notifications. class MockPrefNotifier : public PrefNotifierImpl { public: |