| Index: chrome/browser/browsing_data/browsing_data_remover_impl.cc
|
| diff --git a/chrome/browser/browsing_data/browsing_data_remover_impl.cc b/chrome/browser/browsing_data/browsing_data_remover_impl.cc
|
| index 68de911c55f96e185d6238384b436518978b2b49..dee3c1a01a23c3ea879cf084d30a41cd002739fe 100644
|
| --- a/chrome/browser/browsing_data/browsing_data_remover_impl.cc
|
| +++ b/chrome/browser/browsing_data/browsing_data_remover_impl.cc
|
| @@ -48,18 +48,6 @@ using content::DOMStorageContext;
|
|
|
| namespace {
|
|
|
| -template <typename T>
|
| -void IgnoreArgumentHelper(const base::Closure& callback, T unused_argument) {
|
| - callback.Run();
|
| -}
|
| -
|
| -// Another convenience method to turn a callback without arguments into one that
|
| -// accepts (and ignores) a single argument.
|
| -template <typename T>
|
| -base::Callback<void(T)> IgnoreArgument(const base::Closure& callback) {
|
| - return base::Bind(&IgnoreArgumentHelper<T>, callback);
|
| -}
|
| -
|
| // Returns whether |origin| matches |origin_type_mask| given the special
|
| // storage |policy|; and if |predicate| is not null, then also whether
|
| // it matches |predicate|. If |origin_type_mask| contains embedder-specific
|
|
|