| 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 <cstddef> | 5 #include <cstddef> |
| 6 #include <string> | 6 #include <string> |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 const AddressData&, | 135 const AddressData&, |
| 136 const FieldProblemMap&) { | 136 const FieldProblemMap&) { |
| 137 assert(success); | 137 assert(success); |
| 138 } | 138 } |
| 139 | 139 |
| 140 // Stub constructor for use by MockAddressValidator. | 140 // Stub constructor for use by MockAddressValidator. |
| 141 PreloadAddressValidator::PreloadAddressValidator() { | 141 PreloadAddressValidator::PreloadAddressValidator() { |
| 142 } | 142 } |
| 143 | 143 |
| 144 } // namespace autofill | 144 } // namespace autofill |
| OLD | NEW |