| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 CHROME_BROWSER_AUTOFILL_AUTOCHECKOUT_PAGE_META_DATA_H_ | 5 #ifndef CHROME_BROWSER_AUTOFILL_AUTOCHECKOUT_PAGE_META_DATA_H_ |
| 6 #define CHROME_BROWSER_AUTOFILL_AUTOCHECKOUT_PAGE_META_DATA_H_ | 6 #define CHROME_BROWSER_AUTOFILL_AUTOCHECKOUT_PAGE_META_DATA_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "chrome/common/autofill/web_element_descriptor.h" | 9 #include "components/autofill/common/web_element_descriptor.h" |
| 10 | 10 |
| 11 namespace autofill { | 11 namespace autofill { |
| 12 | 12 |
| 13 // Container for multipage Autocheckout data. | 13 // Container for multipage Autocheckout data. |
| 14 struct AutocheckoutPageMetaData { | 14 struct AutocheckoutPageMetaData { |
| 15 AutocheckoutPageMetaData(); | 15 AutocheckoutPageMetaData(); |
| 16 ~AutocheckoutPageMetaData(); | 16 ~AutocheckoutPageMetaData(); |
| 17 | 17 |
| 18 // Returns true if the Autofill server says that the current page is start of | 18 // Returns true if the Autofill server says that the current page is start of |
| 19 // a multipage Autofill flow. | 19 // a multipage Autofill flow. |
| (...skipping 20 matching lines...) Expand all Loading... |
| 40 // current page is the last page of a flow or isn't a member of a flow. | 40 // current page is the last page of a flow or isn't a member of a flow. |
| 41 scoped_ptr<WebElementDescriptor> proceed_element_descriptor; | 41 scoped_ptr<WebElementDescriptor> proceed_element_descriptor; |
| 42 | 42 |
| 43 private: | 43 private: |
| 44 DISALLOW_COPY_AND_ASSIGN(AutocheckoutPageMetaData); | 44 DISALLOW_COPY_AND_ASSIGN(AutocheckoutPageMetaData); |
| 45 }; | 45 }; |
| 46 | 46 |
| 47 } // namespace autofill | 47 } // namespace autofill |
| 48 | 48 |
| 49 #endif // CHROME_BROWSER_AUTOFILL_AUTOCHECKOUT_PAGE_META_DATA_H_ | 49 #endif // CHROME_BROWSER_AUTOFILL_AUTOCHECKOUT_PAGE_META_DATA_H_ |
| OLD | NEW |