| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "components/password_manager/core/browser/password_store.h" | 5 #include "components/password_manager/core/browser/password_store.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/debug/dump_without_crashing.h" | 10 #include "base/debug/dump_without_crashing.h" |
| 11 #include "base/location.h" | 11 #include "base/location.h" |
| 12 #include "base/macros.h" |
| 12 #include "base/metrics/histogram_macros.h" | 13 #include "base/metrics/histogram_macros.h" |
| 13 #include "base/stl_util.h" | 14 #include "base/stl_util.h" |
| 14 #include "base/thread_task_runner_handle.h" | 15 #include "base/thread_task_runner_handle.h" |
| 15 #include "components/autofill/core/common/password_form.h" | 16 #include "components/autofill/core/common/password_form.h" |
| 16 #include "components/password_manager/core/browser/affiliated_match_helper.h" | 17 #include "components/password_manager/core/browser/affiliated_match_helper.h" |
| 17 #include "components/password_manager/core/browser/password_manager_util.h" | 18 #include "components/password_manager/core/browser/password_manager_util.h" |
| 18 #include "components/password_manager/core/browser/password_store_consumer.h" | 19 #include "components/password_manager/core/browser/password_store_consumer.h" |
| 19 #include "components/password_manager/core/browser/password_syncable_service.h" | 20 #include "components/password_manager/core/browser/password_syncable_service.h" |
| 20 #include "components/password_manager/core/browser/statistics_table.h" | 21 #include "components/password_manager/core/browser/statistics_table.h" |
| 21 #include "url/origin.h" | 22 #include "url/origin.h" |
| (...skipping 574 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 596 // TODO(ttr314@googlemail.com): Once crbug.com/113973 is done, remove default | 597 // TODO(ttr314@googlemail.com): Once crbug.com/113973 is done, remove default |
| 597 // implementation and mark method as pure virtual. | 598 // implementation and mark method as pure virtual. |
| 598 PasswordStoreChangeList PasswordStore::RemoveLoginsByOriginAndTimeImpl( | 599 PasswordStoreChangeList PasswordStore::RemoveLoginsByOriginAndTimeImpl( |
| 599 const url::Origin& origin, | 600 const url::Origin& origin, |
| 600 base::Time delete_begin, | 601 base::Time delete_begin, |
| 601 base::Time delete_end) { | 602 base::Time delete_end) { |
| 602 return PasswordStoreChangeList(); | 603 return PasswordStoreChangeList(); |
| 603 } | 604 } |
| 604 | 605 |
| 605 } // namespace password_manager | 606 } // namespace password_manager |
| OLD | NEW |