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 COMPONENTS_AUTOFILL_BROWSER_AUTOCHECKOUT_PAGE_META_DATA_H_ |
6 #define CHROME_BROWSER_AUTOFILL_AUTOCHECKOUT_PAGE_META_DATA_H_ | 6 #define COMPONENTS_AUTOFILL_BROWSER_AUTOCHECKOUT_PAGE_META_DATA_H_ |
7 | 7 |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "components/autofill/common/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(); |
(...skipping 22 matching lines...) Expand all Loading... |
39 // The proceed element of the multipage Autofill flow. Can be null if the | 39 // The proceed element of the multipage Autofill flow. Can be null if the |
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 // COMPONENTS_AUTOFILL_BROWSER_AUTOCHECKOUT_PAGE_META_DATA_H_ |
OLD | NEW |