OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #ifndef COMPONENTS_AUTOFILL_BROWSER_WALLET_FORM_FIELD_ERROR_H_ | 5 #ifndef COMPONENTS_AUTOFILL_BROWSER_WALLET_FORM_FIELD_ERROR_H_ |
6 #define COMPONENTS_AUTOFILL_BROWSER_WALLET_FORM_FIELD_ERROR_H_ | 6 #define COMPONENTS_AUTOFILL_BROWSER_WALLET_FORM_FIELD_ERROR_H_ |
7 | 7 |
8 #include "base/strings/string16.h" | 8 #include "base/strings/string16.h" |
9 #include "components/autofill/browser/field_types.h" | 9 #include "components/autofill/core/browser/field_types.h" |
10 | 10 |
11 namespace base { | 11 namespace base { |
12 class DictionaryValue; | 12 class DictionaryValue; |
13 } | 13 } |
14 | 14 |
15 namespace autofill { | 15 namespace autofill { |
16 namespace wallet { | 16 namespace wallet { |
17 | 17 |
18 // Class for representing a single Wallet server side validation error. | 18 // Class for representing a single Wallet server side validation error. |
19 class FormFieldError { | 19 class FormFieldError { |
(...skipping 59 matching lines...) Loading... |
79 // The location of the error as defined by the Wallet server. | 79 // The location of the error as defined by the Wallet server. |
80 Location location_; | 80 Location location_; |
81 | 81 |
82 // This class is intentionally copyable and assignable. | 82 // This class is intentionally copyable and assignable. |
83 }; | 83 }; |
84 | 84 |
85 } // namespace wallet | 85 } // namespace wallet |
86 } // namespace autofill | 86 } // namespace autofill |
87 | 87 |
88 #endif // COMPONENTS_AUTOFILL_BROWSER_WALLET_FORM_FIELD_ERROR_H_ | 88 #endif // COMPONENTS_AUTOFILL_BROWSER_WALLET_FORM_FIELD_ERROR_H_ |
OLD | NEW |