| 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_CONTENT_BROWSER_AUTOCHECKOUT_PAGE_META_DATA_H_ | 5 #ifndef COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOCHECKOUT_PAGE_META_DATA_H_ |
| 6 #define COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOCHECKOUT_PAGE_META_DATA_H_ | 6 #define COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOCHECKOUT_PAGE_META_DATA_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "components/autofill/shared/web_element_descriptor.h" | 11 #include "components/autofill/common/web_element_descriptor.h" |
| 12 | 12 |
| 13 namespace autofill { | 13 namespace autofill { |
| 14 | 14 |
| 15 // Container for multipage Autocheckout data. | 15 // Container for multipage Autocheckout data. |
| 16 struct AutocheckoutPageMetaData { | 16 struct AutocheckoutPageMetaData { |
| 17 AutocheckoutPageMetaData(); | 17 AutocheckoutPageMetaData(); |
| 18 ~AutocheckoutPageMetaData(); | 18 ~AutocheckoutPageMetaData(); |
| 19 | 19 |
| 20 // Returns true if the Autofill server says that the current page is start of | 20 // Returns true if the Autofill server says that the current page is start of |
| 21 // a multipage Autofill flow. | 21 // a multipage Autofill flow. |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 // |click_elements_after_form_fill|. | 57 // |click_elements_after_form_fill|. |
| 58 WebElementDescriptor proceed_element_descriptor; | 58 WebElementDescriptor proceed_element_descriptor; |
| 59 | 59 |
| 60 private: | 60 private: |
| 61 DISALLOW_COPY_AND_ASSIGN(AutocheckoutPageMetaData); | 61 DISALLOW_COPY_AND_ASSIGN(AutocheckoutPageMetaData); |
| 62 }; | 62 }; |
| 63 | 63 |
| 64 } // namespace autofill | 64 } // namespace autofill |
| 65 | 65 |
| 66 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOCHECKOUT_PAGE_META_DATA_H_ | 66 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOCHECKOUT_PAGE_META_DATA_H_ |
| OLD | NEW |