| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/autofill/browser/webdata/autofill_entry.h" | 5 #include "components/autofill/core/browser/webdata/autofill_entry.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <set> | 8 #include <set> |
| 9 | 9 |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| 11 #include "base/strings/utf_string_conversions.h" | 11 #include "base/strings/utf_string_conversions.h" |
| 12 | 12 |
| 13 namespace autofill { | 13 namespace autofill { |
| 14 namespace { | 14 namespace { |
| 15 | 15 |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 | 120 |
| 121 result->push_back(source.front()); | 121 result->push_back(source.front()); |
| 122 result->push_back(source.back()); | 122 result->push_back(source.back()); |
| 123 | 123 |
| 124 DVLOG(1) << "Culling timestamps. Current count is : " << source.size(); | 124 DVLOG(1) << "Culling timestamps. Current count is : " << source.size(); |
| 125 | 125 |
| 126 return true; | 126 return true; |
| 127 } | 127 } |
| 128 | 128 |
| 129 } // namespace autofill | 129 } // namespace autofill |
| OLD | NEW |